-- MySQL dump 10.16  Distrib 10.2.14-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: evergr67_db731853389
-- ------------------------------------------------------
-- Server version	10.2.14-MariaDB-log

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `aCPMymRScommentmeta`
--

DROP TABLE IF EXISTS `aCPMymRScommentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `aCPMymRScommentmeta` (
  `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 DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `aCPMymRScommentmeta`
--

LOCK TABLES `aCPMymRScommentmeta` WRITE;
/*!40000 ALTER TABLE `aCPMymRScommentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `aCPMymRScommentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `aCPMymRScomments`
--

DROP TABLE IF EXISTS `aCPMymRScomments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `aCPMymRScomments` (
  `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=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `aCPMymRScomments`
--

LOCK TABLES `aCPMymRScomments` WRITE;
/*!40000 ALTER TABLE `aCPMymRScomments` DISABLE KEYS */;
/*!40000 ALTER TABLE `aCPMymRScomments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `aCPMymRSlinks`
--

DROP TABLE IF EXISTS `aCPMymRSlinks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `aCPMymRSlinks` (
  `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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `aCPMymRSlinks`
--

LOCK TABLES `aCPMymRSlinks` WRITE;
/*!40000 ALTER TABLE `aCPMymRSlinks` DISABLE KEYS */;
/*!40000 ALTER TABLE `aCPMymRSlinks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `aCPMymRSoptions`
--

DROP TABLE IF EXISTS `aCPMymRSoptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `aCPMymRSoptions` (
  `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=MyISAM AUTO_INCREMENT=4287 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `aCPMymRSoptions`
--

LOCK TABLES `aCPMymRSoptions` WRITE;
/*!40000 ALTER TABLE `aCPMymRSoptions` DISABLE KEYS */;
INSERT INTO `aCPMymRSoptions` VALUES (1,'siteurl','https://evergreenwellness.com','yes'),(2,'home','https://evergreenwellness.com','yes'),(3,'blogname','','yes'),(4,'blogdescription','May you have a good health and longevity ... like the Evergreen','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','qzgau@yahoo.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:88:{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:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";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:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=21&cpage=$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: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]\";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:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:6:{i:0;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1;s:23:\"elementor/elementor.php\";i:2;s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";i:3;s:27:\"ocean-extra/ocean-extra.php\";i:4;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";i:5;s:27:\"updraftplus/updraftplus.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:2:{i:0;s:105:\"/homepages/1/d638981310/htdocs/clickandbuilds/Evergreen284905/wp-content/themes/nikko-portfolio/style.css\";i:1;s:0:\"\";}','no'),(40,'template','oceanwp','yes'),(41,'stylesheet','oceanwp','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','38590','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(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'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:1:{s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";a:2:{i:0;s:15:\"GADWP_Uninstall\";i:1;s:9:\"uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','21','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'aCPMymRSuser_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'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(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'),(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'),(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'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"sidebar\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:14:\"search_sidebar\";a:0:{}s:10:\"footer-one\";a:0:{}s:10:\"footer-two\";a:0:{}s:12:\"footer-three\";a:0:{}s:11:\"footer-four\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(108,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'cron','a:5:{i:1533499594;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1533509366;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:1533509422;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1533509905;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'),(4274,'_transient_timeout_plugin_slugs','1533583238','no'),(117,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1522533777;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(134,'can_compress_scripts','1','no'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(437,'theme_mods_meditation','a:2:{s:13:\"page_sidebars\";N;s:18:\"custom_css_post_id\";i:-1;}','yes'),(442,'theme_mods_mh-magazine-lite','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:8:\"main_nav\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1522802140;s:4:\"data\";a:14:{s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"sidebar\";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:6:\"home-1\";a:0:{}s:6:\"home-2\";a:0:{}s:6:\"home-3\";a:0:{}s:6:\"home-4\";a:0:{}s:6:\"home-5\";a:0:{}s:6:\"home-6\";a:0:{}s:7:\"posts-1\";a:0:{}s:7:\"posts-2\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}}}}','yes'),(460,'theme_mods_placid','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1522802431;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"top-area\";a:0:{}}}}','yes'),(461,'widget_author-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(462,'widget_placid-social-icons','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(140,'recently_activated','a:0:{}','yes'),(4278,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1533506957','no'),(141,'elementor_version','2.0.4','yes'),(144,'_elementor_installed_time','1522191143','yes'),(145,'elementor_remote_info_library','a:2:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:433:{i:0;a:14:{s:2:\"id\";s:4:\"5525\";s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443532\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"28\";s:11:\"trend_index\";s:2:\"17\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:1;a:14:{s:2:\"id\";s:4:\"5533\";s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520443534\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"58\";s:11:\"trend_index\";s:2:\"39\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:2;a:14:{s:2:\"id\";s:4:\"5575\";s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443543\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"40\";s:11:\"trend_index\";s:2:\"18\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:3;a:14:{s:2:\"id\";s:4:\"5615\";s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"53\";s:11:\"trend_index\";s:2:\"38\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:4;a:14:{s:2:\"id\";s:4:\"5624\";s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443553\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"113\";s:11:\"trend_index\";s:3:\"108\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:5;a:14:{s:2:\"id\";s:4:\"5684\";s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"88\";s:11:\"trend_index\";s:3:\"100\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:6;a:14:{s:2:\"id\";s:4:\"5693\";s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"232\";s:11:\"trend_index\";s:3:\"247\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:7;a:14:{s:2:\"id\";s:4:\"5703\";s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"55\";s:11:\"trend_index\";s:2:\"44\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:8;a:14:{s:2:\"id\";s:4:\"5711\";s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443571\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"236\";s:11:\"trend_index\";s:3:\"189\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:9;a:14:{s:2:\"id\";s:4:\"5719\";s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"131\";s:11:\"trend_index\";s:3:\"126\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:10;a:14:{s:2:\"id\";s:4:\"5729\";s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"319\";s:11:\"trend_index\";s:3:\"298\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:11;a:14:{s:2:\"id\";s:4:\"5737\";s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443576\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"183\";s:11:\"trend_index\";s:3:\"178\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:12;a:14:{s:2:\"id\";s:4:\"5746\";s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"204\";s:11:\"trend_index\";s:3:\"194\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:13;a:14:{s:2:\"id\";s:4:\"5755\";s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"100\";s:11:\"trend_index\";s:2:\"79\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:14;a:14:{s:2:\"id\";s:4:\"5764\";s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443582\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"313\";s:11:\"trend_index\";s:3:\"282\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:15;a:14:{s:2:\"id\";s:4:\"5773\";s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";s:10:\"1520443584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"49\";s:11:\"trend_index\";s:2:\"29\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:16;a:14:{s:2:\"id\";s:4:\"5783\";s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";s:10:\"1520443586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"316\";s:11:\"trend_index\";s:3:\"307\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:17;a:14:{s:2:\"id\";s:4:\"5792\";s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";s:10:\"1520443588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"231\";s:11:\"trend_index\";s:3:\"187\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:18;a:14:{s:2:\"id\";s:4:\"5801\";s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";s:10:\"1520443589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"36\";s:11:\"trend_index\";s:2:\"22\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:19;a:14:{s:2:\"id\";s:4:\"5811\";s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";s:10:\"1520443591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"108\";s:11:\"trend_index\";s:3:\"102\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:20;a:14:{s:2:\"id\";s:4:\"5820\";s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"206\";s:11:\"trend_index\";s:3:\"205\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:21;a:14:{s:2:\"id\";s:4:\"5828\";s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443595\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"305\";s:11:\"trend_index\";s:3:\"227\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:22;a:14:{s:2:\"id\";s:4:\"5836\";s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"121\";s:11:\"trend_index\";s:3:\"103\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:23;a:14:{s:2:\"id\";s:4:\"5844\";s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"287\";s:11:\"trend_index\";s:3:\"280\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:24;a:14:{s:2:\"id\";s:4:\"5852\";s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";s:10:\"1520443600\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"399\";s:11:\"trend_index\";s:3:\"355\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:25;a:14:{s:2:\"id\";s:4:\"5947\";s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443621\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"340\";s:11:\"trend_index\";s:3:\"393\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:26;a:14:{s:2:\"id\";s:4:\"5956\";s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443623\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"397\";s:11:\"trend_index\";s:3:\"417\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:27;a:14:{s:2:\"id\";s:4:\"5963\";s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443626\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"77\";s:11:\"trend_index\";s:2:\"91\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:28;a:14:{s:2:\"id\";s:4:\"5974\";s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443629\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"74\";s:11:\"trend_index\";s:2:\"71\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:29;a:14:{s:2:\"id\";s:4:\"5983\";s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443630\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"255\";s:11:\"trend_index\";s:3:\"292\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:30;a:14:{s:2:\"id\";s:4:\"5991\";s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443632\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"127\";s:11:\"trend_index\";s:3:\"122\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:31;a:14:{s:2:\"id\";s:4:\"5999\";s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520443634\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"94\";s:11:\"trend_index\";s:2:\"83\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:32;a:14:{s:2:\"id\";s:4:\"6008\";s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"79\";s:11:\"trend_index\";s:3:\"112\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:33;a:14:{s:2:\"id\";s:4:\"6027\";s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";s:10:\"1520443639\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"62\";s:11:\"trend_index\";s:2:\"50\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:34;a:14:{s:2:\"id\";s:4:\"6036\";s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";s:10:\"1520443641\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"101\";s:11:\"trend_index\";s:2:\"99\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:35;a:14:{s:2:\"id\";s:4:\"6044\";s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443643\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"87\";s:11:\"trend_index\";s:3:\"105\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:36;a:14:{s:2:\"id\";s:4:\"6053\";s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443645\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"179\";s:11:\"trend_index\";s:3:\"135\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:37;a:14:{s:2:\"id\";s:4:\"6063\";s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443647\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"164\";s:11:\"trend_index\";s:3:\"183\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:38;a:14:{s:2:\"id\";s:4:\"6071\";s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443649\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"172\";s:11:\"trend_index\";s:3:\"146\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:39;a:14:{s:2:\"id\";s:4:\"6079\";s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443651\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"294\";s:11:\"trend_index\";s:3:\"311\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:40;a:14:{s:2:\"id\";s:4:\"6089\";s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443653\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"199\";s:11:\"trend_index\";s:3:\"216\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:41;a:14:{s:2:\"id\";s:4:\"6097\";s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443655\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"275\";s:11:\"trend_index\";s:3:\"236\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:42;a:14:{s:2:\"id\";s:4:\"6106\";s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443657\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"331\";s:11:\"trend_index\";s:3:\"206\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:43;a:14:{s:2:\"id\";s:4:\"6114\";s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"357\";s:11:\"trend_index\";s:3:\"338\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:44;a:14:{s:2:\"id\";s:4:\"6122\";s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";s:10:\"1520443661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"57\";s:11:\"trend_index\";s:2:\"52\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:45;a:14:{s:2:\"id\";s:4:\"6135\";s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443663\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"93\";s:11:\"trend_index\";s:2:\"88\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:46;a:14:{s:2:\"id\";s:4:\"6144\";s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520443664\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"178\";s:11:\"trend_index\";s:3:\"123\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:47;a:14:{s:2:\"id\";s:4:\"6152\";s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443666\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"247\";s:11:\"trend_index\";s:3:\"270\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:48;a:14:{s:2:\"id\";s:4:\"6162\";s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443668\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"318\";s:11:\"trend_index\";s:3:\"363\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:49;a:14:{s:2:\"id\";s:4:\"6170\";s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443670\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"326\";s:11:\"trend_index\";s:3:\"289\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:50;a:14:{s:2:\"id\";s:4:\"6178\";s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443676\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"353\";s:11:\"trend_index\";s:3:\"406\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:51;a:14:{s:2:\"id\";s:4:\"6186\";s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443678\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"386\";s:11:\"trend_index\";s:3:\"349\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:52;a:14:{s:2:\"id\";s:4:\"6196\";s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443680\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"111\";s:11:\"trend_index\";s:3:\"137\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:53;a:14:{s:2:\"id\";s:4:\"6204\";s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"223\";s:11:\"trend_index\";s:3:\"191\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:54;a:14:{s:2:\"id\";s:4:\"6212\";s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"95\";s:11:\"trend_index\";s:2:\"77\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:55;a:14:{s:2:\"id\";s:4:\"6220\";s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"98\";s:11:\"trend_index\";s:3:\"115\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:56;a:14:{s:2:\"id\";s:4:\"6230\";s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443687\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"342\";s:11:\"trend_index\";s:3:\"394\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:57;a:14:{s:2:\"id\";s:4:\"6239\";s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"51\";s:11:\"trend_index\";s:2:\"31\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:58;a:14:{s:2:\"id\";s:4:\"6249\";s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"75\";s:11:\"trend_index\";s:2:\"69\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:59;a:14:{s:2:\"id\";s:4:\"6258\";s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"356\";s:11:\"trend_index\";s:3:\"364\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:60;a:14:{s:2:\"id\";s:4:\"6266\";s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"60\";s:11:\"trend_index\";s:2:\"41\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:61;a:14:{s:2:\"id\";s:4:\"6274\";s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443698\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"104\";s:11:\"trend_index\";s:3:\"147\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:62;a:14:{s:2:\"id\";s:4:\"6017\";s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";s:10:\"1520520331\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"158\";s:11:\"trend_index\";s:3:\"153\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:63;a:14:{s:2:\"id\";s:4:\"4826\";s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520544\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"288\";s:11:\"trend_index\";s:3:\"212\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:64;a:14:{s:2:\"id\";s:4:\"4835\";s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520546\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"360\";s:11:\"trend_index\";s:3:\"360\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:65;a:14:{s:2:\"id\";s:4:\"4843\";s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520548\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"366\";s:11:\"trend_index\";s:3:\"346\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:66;a:14:{s:2:\"id\";s:4:\"4854\";s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520520549\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"411\";s:11:\"trend_index\";s:3:\"382\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:67;a:14:{s:2:\"id\";s:4:\"4863\";s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520520551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"282\";s:11:\"trend_index\";s:3:\"291\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:68;a:14:{s:2:\"id\";s:4:\"4871\";s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520520552\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"265\";s:11:\"trend_index\";s:3:\"225\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:69;a:14:{s:2:\"id\";s:4:\"4880\";s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";s:10:\"1520520554\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"358\";s:11:\"trend_index\";s:3:\"332\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:70;a:14:{s:2:\"id\";s:4:\"4889\";s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";s:10:\"1520520556\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"387\";s:11:\"trend_index\";s:3:\"425\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:71;a:14:{s:2:\"id\";s:4:\"4897\";s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520520557\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"107\";s:11:\"trend_index\";s:2:\"87\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:72;a:14:{s:2:\"id\";s:4:\"4905\";s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520559\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"134\";s:11:\"trend_index\";s:3:\"127\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:73;a:14:{s:2:\"id\";s:4:\"4913\";s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520561\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"268\";s:11:\"trend_index\";s:3:\"264\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:74;a:14:{s:2:\"id\";s:4:\"4921\";s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520520562\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"249\";s:11:\"trend_index\";s:3:\"170\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:75;a:14:{s:2:\"id\";s:4:\"4929\";s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520564\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"67\";s:11:\"trend_index\";s:2:\"51\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:76;a:14:{s:2:\"id\";s:4:\"4939\";s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"105\";s:11:\"trend_index\";s:2:\"96\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:77;a:14:{s:2:\"id\";s:4:\"4947\";s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"202\";s:11:\"trend_index\";s:3:\"157\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:78;a:14:{s:2:\"id\";s:4:\"4955\";s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520520569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"320\";s:11:\"trend_index\";s:3:\"252\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:79;a:14:{s:2:\"id\";s:4:\"4963\";s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520570\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"363\";s:11:\"trend_index\";s:3:\"329\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:80;a:14:{s:2:\"id\";s:4:\"4971\";s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520520572\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"417\";s:11:\"trend_index\";s:3:\"386\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:81;a:14:{s:2:\"id\";s:4:\"4979\";s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"398\";s:11:\"trend_index\";s:3:\"335\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:82;a:14:{s:2:\"id\";s:4:\"4987\";s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";s:10:\"1520520575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"167\";s:11:\"trend_index\";s:3:\"118\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:83;a:14:{s:2:\"id\";s:4:\"4995\";s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520520577\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"348\";s:11:\"trend_index\";s:3:\"353\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:84;a:14:{s:2:\"id\";s:4:\"5007\";s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"66\";s:11:\"trend_index\";s:2:\"53\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:85;a:14:{s:2:\"id\";s:4:\"5019\";s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"173\";s:11:\"trend_index\";s:3:\"171\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:86;a:14:{s:2:\"id\";s:4:\"5027\";s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520581\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"322\";s:11:\"trend_index\";s:3:\"244\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:87;a:14:{s:2:\"id\";s:4:\"5037\";s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520520583\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"273\";s:11:\"trend_index\";s:3:\"326\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:88;a:14:{s:2:\"id\";s:4:\"5057\";s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520520586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"253\";s:11:\"trend_index\";s:3:\"215\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:89;a:14:{s:2:\"id\";s:4:\"5071\";s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520520588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"277\";s:11:\"trend_index\";s:3:\"330\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:90;a:14:{s:2:\"id\";s:4:\"5082\";s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520520589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"376\";s:11:\"trend_index\";s:3:\"410\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:91;a:14:{s:2:\"id\";s:4:\"5090\";s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"240\";s:11:\"trend_index\";s:3:\"239\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:92;a:14:{s:2:\"id\";s:4:\"5098\";s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"176\";s:11:\"trend_index\";s:3:\"192\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:93;a:14:{s:2:\"id\";s:4:\"5107\";s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520520594\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"350\";s:11:\"trend_index\";s:3:\"413\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:94;a:14:{s:2:\"id\";s:4:\"5115\";s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520596\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"47\";s:11:\"trend_index\";s:2:\"34\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:95;a:14:{s:2:\"id\";s:4:\"5125\";s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"254\";s:11:\"trend_index\";s:3:\"284\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:96;a:14:{s:2:\"id\";s:4:\"5133\";s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"189\";s:11:\"trend_index\";s:3:\"200\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:97;a:14:{s:2:\"id\";s:4:\"5141\";s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520601\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"140\";s:11:\"trend_index\";s:3:\"164\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:98;a:14:{s:2:\"id\";s:4:\"5149\";s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520602\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"132\";s:11:\"trend_index\";s:3:\"136\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:99;a:14:{s:2:\"id\";s:4:\"5542\";s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"166\";s:11:\"trend_index\";s:3:\"185\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:100;a:14:{s:2:\"id\";s:4:\"5550\";s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520682\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"300\";s:11:\"trend_index\";s:3:\"276\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:101;a:14:{s:2:\"id\";s:4:\"5558\";s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"124\";s:11:\"trend_index\";s:3:\"132\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:102;a:14:{s:2:\"id\";s:4:\"5567\";s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520520685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"181\";s:11:\"trend_index\";s:3:\"129\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:103;a:14:{s:2:\"id\";s:4:\"5583\";s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520520689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"258\";s:11:\"trend_index\";s:3:\"172\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:104;a:14:{s:2:\"id\";s:4:\"5591\";s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520520691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"110\";s:11:\"trend_index\";s:3:\"116\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:105;a:14:{s:2:\"id\";s:4:\"5599\";s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520520693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"274\";s:11:\"trend_index\";s:3:\"125\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:106;a:14:{s:2:\"id\";s:4:\"5607\";s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520520695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"163\";s:11:\"trend_index\";s:3:\"142\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:107;a:14:{s:2:\"id\";s:4:\"5634\";s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520699\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"180\";s:11:\"trend_index\";s:3:\"166\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:108;a:14:{s:2:\"id\";s:4:\"5642\";s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520520701\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"251\";s:11:\"trend_index\";s:3:\"257\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:109;a:14:{s:2:\"id\";s:4:\"5650\";s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520702\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"123\";s:11:\"trend_index\";s:3:\"114\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:110;a:14:{s:2:\"id\";s:4:\"5658\";s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520520704\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"239\";s:11:\"trend_index\";s:3:\"210\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:111;a:14:{s:2:\"id\";s:4:\"5667\";s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520705\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"135\";s:11:\"trend_index\";s:2:\"89\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:112;a:14:{s:2:\"id\";s:4:\"5675\";s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520707\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"355\";s:11:\"trend_index\";s:3:\"395\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:113;a:14:{s:2:\"id\";s:4:\"5860\";s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520746\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"141\";s:11:\"trend_index\";s:2:\"70\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:114;a:14:{s:2:\"id\";s:4:\"5869\";s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520747\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"296\";s:11:\"trend_index\";s:3:\"198\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:115;a:14:{s:2:\"id\";s:4:\"5877\";s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520749\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"391\";s:11:\"trend_index\";s:3:\"381\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:116;a:14:{s:2:\"id\";s:4:\"5885\";s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520520751\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"324\";s:11:\"trend_index\";s:3:\"288\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:117;a:14:{s:2:\"id\";s:4:\"5893\";s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520520752\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"257\";s:11:\"trend_index\";s:3:\"188\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:118;a:14:{s:2:\"id\";s:4:\"5904\";s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";s:10:\"1520520754\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"372\";s:11:\"trend_index\";s:3:\"316\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:119;a:14:{s:2:\"id\";s:4:\"5912\";s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";s:10:\"1520520755\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"419\";s:11:\"trend_index\";s:3:\"424\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:120;a:14:{s:2:\"id\";s:4:\"5921\";s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";s:10:\"1520520757\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"266\";s:11:\"trend_index\";s:3:\"299\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:121;a:14:{s:2:\"id\";s:4:\"5930\";s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";s:10:\"1520520758\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"73\";s:11:\"trend_index\";s:2:\"66\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:122;a:14:{s:2:\"id\";s:4:\"5939\";s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";s:10:\"1520520760\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"196\";s:11:\"trend_index\";s:3:\"180\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:123;a:14:{s:2:\"id\";s:4:\"7596\";s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";s:10:\"1521546999\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"50\";s:11:\"trend_index\";s:2:\"45\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:124;a:14:{s:2:\"id\";s:4:\"7615\";s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1521547237\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"44\";s:11:\"trend_index\";s:2:\"27\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:125;a:14:{s:2:\"id\";s:4:\"7627\";s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";s:10:\"1521547332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"129\";s:11:\"trend_index\";s:3:\"113\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:126;a:14:{s:2:\"id\";s:4:\"7638\";s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";s:10:\"1521547502\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"119\";s:11:\"trend_index\";s:3:\"133\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:127;a:14:{s:2:\"id\";s:4:\"7663\";s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2.png\";s:12:\"tmpl_created\";s:10:\"1521547761\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"single\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"83\";s:11:\"trend_index\";s:3:\"283\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:128;a:14:{s:2:\"id\";s:4:\"7650\";s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1.png\";s:12:\"tmpl_created\";s:10:\"1521557736\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"single\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"92\";s:11:\"trend_index\";s:3:\"240\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:129;a:14:{s:2:\"id\";s:4:\"7686\";s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";s:10:\"1521558047\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"61\";s:11:\"trend_index\";s:3:\"155\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:130;a:14:{s:2:\"id\";s:4:\"4676\";s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";s:10:\"1522014215\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"195\";s:11:\"trend_index\";s:3:\"150\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:131;a:14:{s:2:\"id\";s:4:\"7997\";s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1524582343\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"157\";s:11:\"trend_index\";s:2:\"92\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:132;a:14:{s:2:\"id\";s:4:\"7982\";s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1524582468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"321\";s:11:\"trend_index\";s:3:\"271\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:133;a:14:{s:2:\"id\";s:4:\"7959\";s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1524582605\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"250\";s:11:\"trend_index\";s:3:\"213\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:134;a:14:{s:2:\"id\";s:4:\"7950\";s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1524582631\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"301\";s:11:\"trend_index\";s:3:\"269\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:135;a:14:{s:2:\"id\";s:4:\"7937\";s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1524582665\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"279\";s:11:\"trend_index\";s:3:\"241\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:136;a:14:{s:2:\"id\";s:4:\"7927\";s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1524582691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"235\";s:11:\"trend_index\";s:3:\"218\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:137;a:14:{s:2:\"id\";s:4:\"7917\";s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1524582788\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"147\";s:11:\"trend_index\";s:3:\"111\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:138;a:14:{s:2:\"id\";s:4:\"7904\";s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1524582814\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"286\";s:11:\"trend_index\";s:3:\"177\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:139;a:14:{s:2:\"id\";s:4:\"7837\";s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";s:10:\"1524582852\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"396\";s:11:\"trend_index\";s:3:\"305\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:140;a:14:{s:2:\"id\";s:4:\"7852\";s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";s:10:\"1524582875\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"290\";s:11:\"trend_index\";s:3:\"144\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:141;a:14:{s:2:\"id\";s:4:\"7862\";s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";s:10:\"1524582903\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"186\";s:11:\"trend_index\";s:3:\"130\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:142;a:14:{s:2:\"id\";s:4:\"7871\";s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";s:10:\"1524582927\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"151\";s:11:\"trend_index\";s:2:\"82\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:143;a:14:{s:2:\"id\";s:4:\"7884\";s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";s:10:\"1524582944\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"37\";s:11:\"trend_index\";s:2:\"12\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:144;a:14:{s:2:\"id\";s:4:\"7892\";s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1524583015\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"187\";s:11:\"trend_index\";s:3:\"160\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:145;a:14:{s:2:\"id\";s:4:\"4212\";s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443248\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"137\";s:11:\"trend_index\";s:3:\"131\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:146;a:14:{s:2:\"id\";s:4:\"7825\";s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";s:10:\"1524583273\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"97\";s:11:\"trend_index\";s:2:\"49\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:147;a:14:{s:2:\"id\";s:4:\"4227\";s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443250\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"327\";s:11:\"trend_index\";s:3:\"340\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:148;a:14:{s:2:\"id\";s:4:\"7812\";s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";s:10:\"1524583298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"125\";s:11:\"trend_index\";s:3:\"104\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:149;a:14:{s:2:\"id\";s:4:\"4235\";s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443251\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"311\";s:11:\"trend_index\";s:3:\"211\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:150;a:14:{s:2:\"id\";s:4:\"7724\";s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1524583367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"65\";s:11:\"trend_index\";s:2:\"47\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:151;a:14:{s:2:\"id\";s:4:\"4244\";s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443253\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"381\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:152;a:14:{s:2:\"id\";s:4:\"7734\";s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1524583436\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"63\";s:11:\"trend_index\";s:2:\"37\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:153;a:14:{s:2:\"id\";s:4:\"4252\";s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443255\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"64\";s:11:\"trend_index\";s:2:\"61\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:154;a:14:{s:2:\"id\";s:4:\"7771\";s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1524583540\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"126\";s:11:\"trend_index\";s:2:\"86\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:155;a:14:{s:2:\"id\";s:4:\"4260\";s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443257\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"217\";s:11:\"trend_index\";s:3:\"197\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:156;a:14:{s:2:\"id\";s:4:\"7787\";s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1524583598\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"161\";s:11:\"trend_index\";s:2:\"73\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:157;a:14:{s:2:\"id\";s:4:\"4268\";s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443259\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"152\";s:11:\"trend_index\";s:3:\"222\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:158;a:14:{s:2:\"id\";s:4:\"7801\";s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1524583659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"86\";s:11:\"trend_index\";s:2:\"68\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:159;a:14:{s:2:\"id\";s:4:\"4276\";s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443261\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"328\";s:11:\"trend_index\";s:3:\"287\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:160;a:14:{s:2:\"id\";s:4:\"7754\";s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1524583712\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"39\";s:11:\"trend_index\";s:2:\"25\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:161;a:14:{s:2:\"id\";s:4:\"4284\";s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443263\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"80\";s:11:\"trend_index\";s:2:\"72\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:162;a:14:{s:2:\"id\";s:4:\"7713\";s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1524584780\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"70\";s:11:\"trend_index\";s:2:\"35\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:163;a:14:{s:2:\"id\";s:4:\"4293\";s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443265\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"292\";s:11:\"trend_index\";s:3:\"255\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:164;a:14:{s:2:\"id\";s:4:\"7744\";s:5:\"title\";s:8:\"header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1524584784\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"103\";s:11:\"trend_index\";s:2:\"62\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:165;a:14:{s:2:\"id\";s:4:\"4302\";s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443266\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"85\";s:11:\"trend_index\";s:2:\"78\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:166;a:14:{s:2:\"id\";s:4:\"8489\";s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/05/single_post_2_full.jpg\";s:12:\"tmpl_created\";s:10:\"1526227514\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/single-post-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"56\";s:11:\"trend_index\";s:2:\"20\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:167;a:14:{s:2:\"id\";s:4:\"4313\";s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443268\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"143\";s:11:\"trend_index\";s:3:\"143\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:168;a:14:{s:2:\"id\";s:4:\"8523\";s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";s:10:\"1526415291\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"370\";s:11:\"trend_index\";s:3:\"358\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:169;a:14:{s:2:\"id\";s:4:\"4324\";s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443270\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"308\";s:11:\"trend_index\";s:3:\"320\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:170;a:14:{s:2:\"id\";s:4:\"8524\";s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";s:10:\"1526415337\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"341\";s:11:\"trend_index\";s:3:\"286\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:171;a:14:{s:2:\"id\";s:4:\"4332\";s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443272\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"142\";s:11:\"trend_index\";s:3:\"128\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:172;a:14:{s:2:\"id\";s:4:\"8525\";s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";s:10:\"1526415374\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"401\";s:11:\"trend_index\";s:3:\"361\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:173;a:14:{s:2:\"id\";s:4:\"4341\";s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520443274\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"145\";s:11:\"trend_index\";s:3:\"169\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:174;a:14:{s:2:\"id\";s:4:\"8513\";s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";s:10:\"1526415417\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"379\";s:11:\"trend_index\";s:3:\"427\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:175;a:14:{s:2:\"id\";s:4:\"4349\";s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";s:10:\"1520443275\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"310\";s:11:\"trend_index\";s:3:\"377\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:176;a:14:{s:2:\"id\";s:4:\"8512\";s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";s:10:\"1526415449\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"410\";s:11:\"trend_index\";s:3:\"336\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:177;a:14:{s:2:\"id\";s:4:\"4357\";s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";s:10:\"1520443277\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"59\";s:11:\"trend_index\";s:2:\"46\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:178;a:14:{s:2:\"id\";s:4:\"8526\";s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";s:10:\"1526415474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"415\";s:11:\"trend_index\";s:3:\"421\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:179;a:14:{s:2:\"id\";s:4:\"4368\";s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";s:10:\"1520443279\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"81\";s:11:\"trend_index\";s:2:\"60\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:180;a:14:{s:2:\"id\";s:4:\"8505\";s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";s:10:\"1526415501\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"421\";s:11:\"trend_index\";s:3:\"385\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:181;a:14:{s:2:\"id\";s:4:\"4376\";s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520443281\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"144\";s:11:\"trend_index\";s:3:\"158\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:182;a:14:{s:2:\"id\";s:4:\"8511\";s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";s:10:\"1526415528\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"362\";s:11:\"trend_index\";s:3:\"372\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:183;a:14:{s:2:\"id\";s:4:\"4391\";s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";s:10:\"1520443283\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"146\";s:11:\"trend_index\";s:3:\"184\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:184;a:14:{s:2:\"id\";s:4:\"8514\";s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";s:10:\"1526415558\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"393\";s:11:\"trend_index\";s:3:\"414\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:185;a:14:{s:2:\"id\";s:4:\"4400\";s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";s:10:\"1520443285\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"260\";s:11:\"trend_index\";s:3:\"226\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:186;a:14:{s:2:\"id\";s:4:\"8676\";s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1527682423\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"382\";s:11:\"trend_index\";s:3:\"312\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:187;a:14:{s:2:\"id\";s:4:\"4411\";s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443287\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"102\";s:11:\"trend_index\";s:3:\"110\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:188;a:14:{s:2:\"id\";s:4:\"8678\";s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1527682780\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"280\";s:11:\"trend_index\";s:2:\"97\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:189;a:14:{s:2:\"id\";s:4:\"4420\";s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443289\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"169\";s:11:\"trend_index\";s:3:\"238\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:190;a:14:{s:2:\"id\";s:4:\"8679\";s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1527682847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"332\";s:11:\"trend_index\";s:3:\"237\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:191;a:14:{s:2:\"id\";s:4:\"4428\";s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443291\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"99\";s:11:\"trend_index\";s:2:\"98\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:192;a:14:{s:2:\"id\";s:4:\"8680\";s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1527682896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"412\";s:11:\"trend_index\";s:3:\"319\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:193;a:14:{s:2:\"id\";s:4:\"4436\";s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443293\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"175\";s:11:\"trend_index\";s:3:\"230\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:194;a:14:{s:2:\"id\";s:4:\"8681\";s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1527682969\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"352\";s:11:\"trend_index\";s:3:\"352\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:195;a:14:{s:2:\"id\";s:4:\"4444\";s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443295\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"109\";s:11:\"trend_index\";s:2:\"74\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:196;a:14:{s:2:\"id\";s:4:\"8682\";s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1527683026\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"413\";s:11:\"trend_index\";s:3:\"411\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:197;a:14:{s:2:\"id\";s:4:\"4452\";s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443296\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"177\";s:11:\"trend_index\";s:3:\"134\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:198;a:14:{s:2:\"id\";s:4:\"8703\";s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1527683072\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"388\";s:11:\"trend_index\";s:3:\"265\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:199;a:14:{s:2:\"id\";s:4:\"4460\";s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"136\";s:11:\"trend_index\";s:3:\"119\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:200;a:14:{s:2:\"id\";s:4:\"8961\";s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1528639909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"214\";s:11:\"trend_index\";s:2:\"64\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:201;a:14:{s:2:\"id\";s:4:\"4468\";s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"160\";s:11:\"trend_index\";s:3:\"173\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:202;a:14:{s:2:\"id\";s:4:\"8969\";s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1528700014\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"339\";s:11:\"trend_index\";s:3:\"199\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:203;a:14:{s:2:\"id\";s:4:\"4476\";s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443303\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"272\";s:11:\"trend_index\";s:3:\"251\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:204;a:14:{s:2:\"id\";s:4:\"8973\";s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1528700205\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"317\";s:11:\"trend_index\";s:3:\"141\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:205;a:14:{s:2:\"id\";s:4:\"4484\";s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443305\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"336\";s:11:\"trend_index\";s:3:\"383\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:206;a:14:{s:2:\"id\";s:4:\"8977\";s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1528700326\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"402\";s:11:\"trend_index\";s:3:\"250\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:207;a:14:{s:2:\"id\";s:4:\"4492\";s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443307\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"69\";s:11:\"trend_index\";s:2:\"48\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:208;a:14:{s:2:\"id\";s:4:\"8981\";s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1528700484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"377\";s:11:\"trend_index\";s:3:\"254\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:209;a:14:{s:2:\"id\";s:4:\"4500\";s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443308\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"384\";s:11:\"trend_index\";s:3:\"370\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:210;a:14:{s:2:\"id\";s:4:\"8985\";s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1528700612\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"346\";s:11:\"trend_index\";s:3:\"174\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:211;a:14:{s:2:\"id\";s:4:\"4509\";s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443310\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"427\";s:11:\"trend_index\";s:3:\"426\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:212;a:14:{s:2:\"id\";s:4:\"8989\";s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1528701063\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"335\";s:11:\"trend_index\";s:3:\"161\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:213;a:14:{s:2:\"id\";s:4:\"4521\";s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443312\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"329\";s:11:\"trend_index\";s:3:\"279\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:214;a:14:{s:2:\"id\";s:4:\"8996\";s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1528701290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"315\";s:11:\"trend_index\";s:3:\"207\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:215;a:14:{s:2:\"id\";s:4:\"4529\";s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443314\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"416\";s:11:\"trend_index\";s:3:\"390\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:216;a:14:{s:2:\"id\";s:4:\"9001\";s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1528701433\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"351\";s:11:\"trend_index\";s:3:\"193\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:217;a:14:{s:2:\"id\";s:4:\"4537\";s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443315\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"409\";s:11:\"trend_index\";s:3:\"416\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:218;a:14:{s:2:\"id\";s:4:\"9119\";s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";s:10:\"1532428138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"420\";s:11:\"trend_index\";s:3:\"219\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:219;a:14:{s:2:\"id\";s:4:\"4545\";s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"424\";s:11:\"trend_index\";s:3:\"343\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:220;a:14:{s:2:\"id\";s:4:\"9127\";s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";s:10:\"1532428699\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"200\";s:11:\"trend_index\";s:1:\"8\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:221;a:14:{s:2:\"id\";s:4:\"4553\";s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"392\";s:11:\"trend_index\";s:3:\"379\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:222;a:14:{s:2:\"id\";s:4:\"4562\";s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443322\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"422\";s:11:\"trend_index\";s:3:\"420\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:223;a:14:{s:2:\"id\";s:4:\"4572\";s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443324\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"312\";s:11:\"trend_index\";s:3:\"327\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:224;a:14:{s:2:\"id\";s:4:\"9174\";s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";s:10:\"1532950125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"425\";s:11:\"trend_index\";s:3:\"120\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:225;a:14:{s:2:\"id\";s:4:\"4580\";s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443326\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"404\";s:11:\"trend_index\";s:3:\"366\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:226;a:14:{s:2:\"id\";s:4:\"9178\";s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350.png\";s:12:\"tmpl_created\";s:10:\"1532951997\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"431\";s:11:\"trend_index\";s:3:\"145\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:227;a:14:{s:2:\"id\";s:4:\"4589\";s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443327\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"423\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:228;a:14:{s:2:\"id\";s:4:\"9180\";s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";s:10:\"1532952302\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"429\";s:11:\"trend_index\";s:3:\"235\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:229;a:14:{s:2:\"id\";s:4:\"4597\";s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443330\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"414\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:230;a:14:{s:2:\"id\";s:4:\"9182\";s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";s:10:\"1532952606\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"433\";s:11:\"trend_index\";s:3:\"274\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:231;a:14:{s:2:\"id\";s:4:\"4605\";s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"426\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:232;a:14:{s:2:\"id\";s:4:\"9239\";s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";s:10:\"1532953482\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"430\";s:11:\"trend_index\";s:3:\"256\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:233;a:14:{s:2:\"id\";s:4:\"4613\";s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443334\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"400\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:234;a:14:{s:2:\"id\";s:4:\"9247\";s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";s:10:\"1532953793\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"428\";s:11:\"trend_index\";s:3:\"151\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:235;a:14:{s:2:\"id\";s:4:\"9254\";s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";s:10:\"1532954032\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"432\";s:11:\"trend_index\";s:3:\"278\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:236;a:14:{s:2:\"id\";s:4:\"4690\";s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443348\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"259\";s:11:\"trend_index\";s:3:\"190\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:237;a:14:{s:2:\"id\";s:4:\"4698\";s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443350\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"367\";s:11:\"trend_index\";s:3:\"337\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:238;a:14:{s:2:\"id\";s:4:\"4706\";s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443352\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"155\";s:11:\"trend_index\";s:3:\"140\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:239;a:14:{s:2:\"id\";s:4:\"4718\";s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443354\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"188\";s:11:\"trend_index\";s:3:\"195\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:240;a:14:{s:2:\"id\";s:4:\"4727\";s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443356\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"347\";s:11:\"trend_index\";s:3:\"242\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:241;a:14:{s:2:\"id\";s:4:\"4736\";s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443358\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"156\";s:11:\"trend_index\";s:2:\"81\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:242;a:14:{s:2:\"id\";s:4:\"4746\";s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443360\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"267\";s:11:\"trend_index\";s:3:\"156\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:243;a:14:{s:2:\"id\";s:4:\"4759\";s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443362\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"281\";s:11:\"trend_index\";s:3:\"214\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:244;a:14:{s:2:\"id\";s:4:\"4770\";s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443364\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"334\";s:11:\"trend_index\";s:3:\"313\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:245;a:14:{s:2:\"id\";s:4:\"4781\";s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"238\";s:11:\"trend_index\";s:3:\"203\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:246;a:14:{s:2:\"id\";s:4:\"4793\";s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"224\";s:11:\"trend_index\";s:3:\"159\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:247;a:14:{s:2:\"id\";s:4:\"4801\";s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520443369\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"323\";s:11:\"trend_index\";s:3:\"228\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:248;a:14:{s:2:\"id\";s:4:\"4809\";s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443371\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"276\";s:11:\"trend_index\";s:3:\"217\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:249;a:14:{s:2:\"id\";s:4:\"4818\";s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443373\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"378\";s:11:\"trend_index\";s:3:\"322\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:250;a:14:{s:2:\"id\";s:4:\"5045\";s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443423\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"405\";s:11:\"trend_index\";s:3:\"403\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:251;a:14:{s:2:\"id\";s:4:\"5157\";s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443448\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"349\";s:11:\"trend_index\";s:3:\"294\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:252;a:14:{s:2:\"id\";s:4:\"5165\";s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"403\";s:11:\"trend_index\";s:3:\"367\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:253;a:14:{s:2:\"id\";s:4:\"5173\";s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"293\";s:11:\"trend_index\";s:3:\"371\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:254;a:14:{s:2:\"id\";s:4:\"5181\";s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443454\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"374\";s:11:\"trend_index\";s:3:\"351\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:255;a:14:{s:2:\"id\";s:4:\"5189\";s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443456\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"365\";s:11:\"trend_index\";s:3:\"374\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:256;a:14:{s:2:\"id\";s:4:\"5198\";s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443458\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"394\";s:11:\"trend_index\";s:3:\"391\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:257;a:14:{s:2:\"id\";s:4:\"5206\";s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443459\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"406\";s:11:\"trend_index\";s:3:\"376\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:258;a:14:{s:2:\"id\";s:4:\"5214\";s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443462\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"219\";s:11:\"trend_index\";s:3:\"149\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:259;a:14:{s:2:\"id\";s:4:\"5222\";s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443464\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"371\";s:11:\"trend_index\";s:3:\"347\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:260;a:14:{s:2:\"id\";s:4:\"5230\";s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443466\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"333\";s:11:\"trend_index\";s:3:\"308\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:261;a:14:{s:2:\"id\";s:4:\"5238\";s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"408\";s:11:\"trend_index\";s:3:\"422\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:262;a:14:{s:2:\"id\";s:4:\"5249\";s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443470\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"383\";s:11:\"trend_index\";s:3:\"384\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:263;a:14:{s:2:\"id\";s:4:\"5257\";s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443472\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"368\";s:11:\"trend_index\";s:3:\"387\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:264;a:14:{s:2:\"id\";s:4:\"5266\";s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"133\";s:11:\"trend_index\";s:3:\"152\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:265;a:14:{s:2:\"id\";s:4:\"5275\";s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443476\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"330\";s:11:\"trend_index\";s:3:\"321\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:266;a:14:{s:2:\"id\";s:4:\"5283\";s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443478\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"307\";s:11:\"trend_index\";s:3:\"209\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:267;a:14:{s:2:\"id\";s:4:\"5290\";s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443480\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"395\";s:11:\"trend_index\";s:3:\"415\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:268;a:14:{s:2:\"id\";s:4:\"5298\";s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443482\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"373\";s:11:\"trend_index\";s:3:\"359\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:269;a:14:{s:2:\"id\";s:4:\"5306\";s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"418\";s:11:\"trend_index\";s:3:\"419\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:270;a:14:{s:2:\"id\";s:4:\"5315\";s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";s:10:\"1520443486\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"385\";s:11:\"trend_index\";s:3:\"380\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:271;a:14:{s:2:\"id\";s:4:\"5324\";s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";s:10:\"1520443488\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"390\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:272;a:14:{s:2:\"id\";s:4:\"5333\";s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443489\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"252\";s:11:\"trend_index\";s:3:\"249\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:273;a:14:{s:2:\"id\";s:4:\"5341\";s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443491\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"407\";s:11:\"trend_index\";s:3:\"423\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:274;a:14:{s:2:\"id\";s:4:\"5349\";s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443493\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"243\";s:11:\"trend_index\";s:3:\"204\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:275;a:14:{s:2:\"id\";s:4:\"5357\";s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443495\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"304\";s:11:\"trend_index\";s:3:\"297\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:276;a:14:{s:2:\"id\";s:4:\"5368\";s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443497\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"248\";s:11:\"trend_index\";s:3:\"139\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:277;a:14:{s:2:\"id\";s:4:\"5381\";s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443499\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"210\";s:11:\"trend_index\";s:3:\"154\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:278;a:14:{s:2:\"id\";s:4:\"5389\";s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443501\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"361\";s:11:\"trend_index\";s:3:\"263\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:279;a:14:{s:2:\"id\";s:4:\"5397\";s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443503\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"139\";s:11:\"trend_index\";s:2:\"85\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:280;a:14:{s:2:\"id\";s:4:\"5405\";s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443505\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"228\";s:11:\"trend_index\";s:3:\"182\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:281;a:14:{s:2:\"id\";s:4:\"5413\";s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"138\";s:11:\"trend_index\";s:2:\"90\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:282;a:14:{s:2:\"id\";s:4:\"5421\";s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443509\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"256\";s:11:\"trend_index\";s:3:\"223\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:283;a:14:{s:2:\"id\";s:4:\"5429\";s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443510\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"117\";s:11:\"trend_index\";s:3:\"106\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:284;a:14:{s:2:\"id\";s:4:\"5438\";s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443512\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"237\";s:11:\"trend_index\";s:3:\"202\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:285;a:14:{s:2:\"id\";s:4:\"5447\";s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443514\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"78\";s:11:\"trend_index\";s:2:\"55\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:286;a:14:{s:2:\"id\";s:4:\"5455\";s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443516\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"130\";s:11:\"trend_index\";s:3:\"148\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:287;a:14:{s:2:\"id\";s:4:\"5464\";s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443518\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"233\";s:11:\"trend_index\";s:3:\"162\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:288;a:14:{s:2:\"id\";s:4:\"5472\";s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443520\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"208\";s:11:\"trend_index\";s:3:\"208\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:289;a:14:{s:2:\"id\";s:4:\"5480\";s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";s:10:\"1520443522\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"359\";s:11:\"trend_index\";s:3:\"302\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:290;a:14:{s:2:\"id\";s:4:\"5488\";s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443524\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"298\";s:11:\"trend_index\";s:3:\"267\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:291;a:14:{s:2:\"id\";s:4:\"5496\";s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";s:10:\"1520443526\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"389\";s:11:\"trend_index\";s:3:\"396\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:292;a:14:{s:2:\"id\";s:4:\"5504\";s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443528\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"91\";s:11:\"trend_index\";s:2:\"67\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:293;a:14:{s:2:\"id\";s:4:\"5515\";s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443530\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"262\";s:11:\"trend_index\";s:3:\"233\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:294;a:14:{s:2:\"id\";s:4:\"9139\";s:5:\"title\";s:25:\"Homepage &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";s:10:\"1532949924\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:167:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"marketing campaign\",\"marketing landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:2:\"14\";s:16:\"popularity_index\";s:2:\"72\";s:11:\"trend_index\";s:1:\"2\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:295;a:14:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:20:\"Homepage &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0004.png\";s:12:\"tmpl_created\";s:10:\"1470829868\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/homepage-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"App\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"15\";s:16:\"popularity_index\";s:1:\"1\";s:11:\"trend_index\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:296;a:14:{s:2:\"id\";s:4:\"2402\";s:5:\"title\";s:32:\"Homepage &#8211; Interior Design\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2017/09/Interior.png\";s:12:\"tmpl_created\";s:10:\"1506441447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:193:\"[\"Architecture\",\"building\",\"business\",\"Creative\",\"exterior design\",\"furniture design\",\"Gallery\",\"garden design\",\"house\",\"interior design\",\"landscape design\",\"multipurpose\",\"portfolio\",\"studio\"]\";s:10:\"menu_order\";s:2:\"16\";s:16:\"popularity_index\";s:2:\"42\";s:11:\"trend_index\";s:2:\"40\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:297;a:14:{s:2:\"id\";s:3:\"777\";s:5:\"title\";s:28:\"Homepage &#8211; Coffee Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/01/rest-home.jpg\";s:12:\"tmpl_created\";s:10:\"1485273092\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/homepage-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:41:\"[\"Coffee\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"17\";s:16:\"popularity_index\";s:2:\"46\";s:11:\"trend_index\";s:3:\"101\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:298;a:14:{s:2:\"id\";s:4:\"2404\";s:5:\"title\";s:24:\"Homepage &#8211; Product\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/09/product.png\";s:12:\"tmpl_created\";s:10:\"1506441452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:103:\"[\"business\",\"colorful\",\"ecommerce\",\"flat\",\"mobile\",\"modern\",\"responsive\",\"retina\",\"Shop\",\"woocommerce\"]\";s:10:\"menu_order\";s:2:\"18\";s:16:\"popularity_index\";s:2:\"54\";s:11:\"trend_index\";s:3:\"121\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:299;a:14:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:25:\"Homepage &#8211; Law firm\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0024.png\";s:12:\"tmpl_created\";s:10:\"1477388365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-law-firm/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Firm\",\"Homepage\",\"Law\"]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:1:\"7\";s:11:\"trend_index\";s:1:\"7\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:300;a:14:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:27:\"Homepage &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0016.png\";s:12:\"tmpl_created\";s:10:\"1470829872\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Homepage\",\"Restaurant\"]\";s:10:\"menu_order\";s:2:\"20\";s:16:\"popularity_index\";s:1:\"2\";s:11:\"trend_index\";s:1:\"4\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:301;a:14:{s:2:\"id\";s:4:\"3451\";s:5:\"title\";s:39:\"Homepage &#8211; Goodness meal services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/11/goodness-featured-image.png\";s:12:\"tmpl_created\";s:10:\"1512054116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/homepage-goodness-meal-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"21\";s:16:\"popularity_index\";s:2:\"89\";s:11:\"trend_index\";s:3:\"201\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:302;a:14:{s:2:\"id\";s:4:\"2152\";s:5:\"title\";s:26:\"Homepage &#8211; Cake Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-home.png\";s:12:\"tmpl_created\";s:10:\"1499774132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/homepage-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Cake\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"22\";s:16:\"popularity_index\";s:3:\"150\";s:11:\"trend_index\";s:3:\"261\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:303;a:14:{s:2:\"id\";s:4:\"1068\";s:5:\"title\";s:27:\"Homepage &#8211; Copywriter\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/copywriter.png\";s:12:\"tmpl_created\";s:10:\"1488805928\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-copywriter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Copywriter\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"23\";s:16:\"popularity_index\";s:2:\"68\";s:11:\"trend_index\";s:3:\"117\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:304;a:14:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:23:\"Homepage &#8211; Agency\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0019.png\";s:12:\"tmpl_created\";s:10:\"1470826567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/homepage-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"24\";s:16:\"popularity_index\";s:1:\"3\";s:11:\"trend_index\";s:1:\"6\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:305;a:14:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:22:\"Homepage &#8211; Study\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0022.png\";s:12:\"tmpl_created\";s:10:\"1477388340\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/homepage-study/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Education\",\"Homepage\",\"Study\"]\";s:10:\"menu_order\";s:2:\"25\";s:16:\"popularity_index\";s:1:\"5\";s:11:\"trend_index\";s:1:\"3\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:306;a:14:{s:2:\"id\";s:4:\"2813\";s:5:\"title\";s:32:\"Homepage &#8211; Creative Agency\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/11/Creative-Agency-–-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1509615049\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-creative-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"26\";s:16:\"popularity_index\";s:2:\"48\";s:11:\"trend_index\";s:2:\"58\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:307;a:14:{s:2:\"id\";s:3:\"728\";s:5:\"title\";s:33:\"Homepage &#8211; Delivery Company\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/01/delivery-company-home-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485269993\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/homepage-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Delivery\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"27\";s:16:\"popularity_index\";s:2:\"82\";s:11:\"trend_index\";s:3:\"167\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:308;a:14:{s:2:\"id\";s:4:\"2403\";s:5:\"title\";s:29:\"Homepage &#8211; Luxury Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/09/Hotel.png\";s:12:\"tmpl_created\";s:10:\"1506441428\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/homepage-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"28\";s:16:\"popularity_index\";s:3:\"112\";s:11:\"trend_index\";s:3:\"186\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:309;a:14:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:24:\"Homepage &#8211; Fitness\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0023.png\";s:12:\"tmpl_created\";s:10:\"1477388808\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Fitness\",\"Gym\",\"Health\",\"Homepage\",\"Sport\"]\";s:10:\"menu_order\";s:2:\"29\";s:16:\"popularity_index\";s:1:\"6\";s:11:\"trend_index\";s:2:\"15\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:310;a:14:{s:2:\"id\";s:4:\"1903\";s:5:\"title\";s:20:\"One Page &#8211; Spa\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/06/spa.png\";s:12:\"tmpl_created\";s:10:\"1496822325\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/one-page-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:132:\"[\"beauty\",\"care\",\"girly\",\"hair\",\"Health\",\"hospitality\",\"massage\",\"medical\",\"parlor\",\"physiotherapy\",\"salon\",\"spa\",\"wellness\",\"yoga\"]\";s:10:\"menu_order\";s:2:\"30\";s:16:\"popularity_index\";s:2:\"71\";s:11:\"trend_index\";s:2:\"93\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:311;a:14:{s:2:\"id\";s:4:\"2123\";s:5:\"title\";s:33:\"One Page &#8211; Architect Office\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/06/architect.png\";s:12:\"tmpl_created\";s:10:\"1499772989\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/one-page-architect-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"31\";s:16:\"popularity_index\";s:1:\"8\";s:11:\"trend_index\";s:1:\"9\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:312;a:14:{s:2:\"id\";s:4:\"1888\";s:5:\"title\";s:32:\"One Page &#8211; Creative Meetup\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2017/06/creative-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/one-page-creative-meetup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"32\";s:16:\"popularity_index\";s:2:\"90\";s:11:\"trend_index\";s:3:\"224\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:313;a:14:{s:2:\"id\";s:4:\"1880\";s:5:\"title\";s:24:\"One Page &#8211; Wedding\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/06/wedding.png\";s:12:\"tmpl_created\";s:10:\"1496822317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/one-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"bride\",\"ceremony\",\"cute\",\"event\",\"fancy\",\"girly\",\"groom\",\"guestbook\",\"marriage\"]\";s:10:\"menu_order\";s:2:\"33\";s:16:\"popularity_index\";s:3:\"264\";s:11:\"trend_index\";s:3:\"325\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:314;a:14:{s:2:\"id\";s:4:\"1891\";s:5:\"title\";s:35:\"One Page &#8211; Textile Convention\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/06/textile-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822323\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/one-page-textile-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"34\";s:16:\"popularity_index\";s:3:\"216\";s:11:\"trend_index\";s:3:\"273\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:315;a:14:{s:2:\"id\";s:4:\"1885\";s:5:\"title\";s:29:\"One Page &#8211; Yacht Rental\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/06/yacht-home.png\";s:12:\"tmpl_created\";s:10:\"1496822321\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/one-page-yacht-rental/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"35\";s:16:\"popularity_index\";s:2:\"76\";s:11:\"trend_index\";s:3:\"124\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:316;a:14:{s:2:\"id\";s:4:\"2723\";s:5:\"title\";s:34:\"Portfolio &#8211; Graphic Designer\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/11/Graphic-Designer-–-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509633883\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-graphic-designer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"36\";s:16:\"popularity_index\";s:2:\"84\";s:11:\"trend_index\";s:2:\"94\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:317;a:14:{s:2:\"id\";s:4:\"2145\";s:5:\"title\";s:30:\"About &#8211; Delivery Company\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-about.png\";s:12:\"tmpl_created\";s:10:\"1499774125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/about-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:10:\"[\"moving\"]\";s:10:\"menu_order\";s:2:\"37\";s:16:\"popularity_index\";s:3:\"171\";s:11:\"trend_index\";s:3:\"275\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:318;a:14:{s:2:\"id\";s:4:\"2155\";s:5:\"title\";s:23:\"About &#8211; Cake Shop\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-about.png\";s:12:\"tmpl_created\";s:10:\"1499774130\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/about-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Food\"]\";s:10:\"menu_order\";s:2:\"38\";s:16:\"popularity_index\";s:3:\"242\";s:11:\"trend_index\";s:3:\"281\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:319;a:14:{s:2:\"id\";s:4:\"1085\";s:5:\"title\";s:21:\"About &#8211; Startup\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/03/Startup.png\";s:12:\"tmpl_created\";s:10:\"1488810874\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/about-startup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"About\",\"Startup\"]\";s:10:\"menu_order\";s:2:\"39\";s:16:\"popularity_index\";s:1:\"4\";s:11:\"trend_index\";s:1:\"5\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:320;a:14:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:22:\"About &#8211; Personal\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0010.png\";s:12:\"tmpl_created\";s:10:\"1470820447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-personal/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"About\",\"Personal\"]\";s:10:\"menu_order\";s:2:\"40\";s:16:\"popularity_index\";s:2:\"15\";s:11:\"trend_index\";s:2:\"19\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:321;a:14:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:16:\"About &#8211; CV\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0018.png\";s:12:\"tmpl_created\";s:10:\"1470829785\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:98:\"https://library.elementor.com/about-cv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"creative portfolio\",\"Personal\",\"portfolio\",\"professional\",\"resume\",\"vcard\"]\";s:10:\"menu_order\";s:2:\"41\";s:16:\"popularity_index\";s:2:\"21\";s:11:\"trend_index\";s:2:\"42\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:322;a:14:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:25:\"About &#8211; Art Gallery\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0009.png\";s:12:\"tmpl_created\";s:10:\"1470820463\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/about-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"About\",\"Art\",\"Gallery\"]\";s:10:\"menu_order\";s:2:\"42\";s:16:\"popularity_index\";s:2:\"11\";s:11:\"trend_index\";s:2:\"16\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:323;a:14:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:26:\"About &#8211; Architecture\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0008.png\";s:12:\"tmpl_created\";s:10:\"1470829766\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/about-architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"About\",\"Architecture\"]\";s:10:\"menu_order\";s:2:\"43\";s:16:\"popularity_index\";s:2:\"13\";s:11:\"trend_index\";s:2:\"13\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:324;a:14:{s:2:\"id\";s:4:\"2802\";s:5:\"title\";s:38:\"Portfolio &#8211; Fashion Photographer\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2017/11/Fashion-photographer-–-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509615440\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/portfolio-fashion-photographer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"44\";s:16:\"popularity_index\";s:3:\"114\";s:11:\"trend_index\";s:3:\"176\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:325;a:14:{s:2:\"id\";s:4:\"2828\";s:5:\"title\";s:35:\"Landing Page &#8211; Law Convention\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/landing-page-law-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"Convention\",\"Landing Page\",\"Law\"]\";s:10:\"menu_order\";s:2:\"45\";s:16:\"popularity_index\";s:3:\"198\";s:11:\"trend_index\";s:3:\"341\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:326;a:14:{s:2:\"id\";s:4:\"1461\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";s:10:\"1494352121\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:127:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"marketing\",\"product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";s:2:\"46\";s:16:\"popularity_index\";s:3:\"165\";s:11:\"trend_index\";s:3:\"328\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:327;a:14:{s:2:\"id\";s:4:\"1460\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";s:10:\"1494352124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"47\";s:16:\"popularity_index\";s:3:\"162\";s:11:\"trend_index\";s:3:\"290\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:328;a:14:{s:2:\"id\";s:4:\"1459\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";s:10:\"1494352125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"48\";s:16:\"popularity_index\";s:3:\"115\";s:11:\"trend_index\";s:3:\"245\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:329;a:14:{s:2:\"id\";s:4:\"1052\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";s:10:\"1488810873\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-mobile-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"49\";s:16:\"popularity_index\";s:2:\"19\";s:11:\"trend_index\";s:2:\"21\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:330;a:14:{s:2:\"id\";s:4:\"1503\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";s:10:\"1494352113\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"50\";s:16:\"popularity_index\";s:3:\"120\";s:11:\"trend_index\";s:3:\"165\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:331;a:14:{s:2:\"id\";s:4:\"1504\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";s:10:\"1494352112\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"51\";s:16:\"popularity_index\";s:3:\"128\";s:11:\"trend_index\";s:3:\"175\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:332;a:14:{s:2:\"id\";s:4:\"1505\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";s:10:\"1494352110\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"52\";s:16:\"popularity_index\";s:3:\"212\";s:11:\"trend_index\";s:3:\"258\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:333;a:14:{s:2:\"id\";s:3:\"726\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485270062\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"53\";s:16:\"popularity_index\";s:3:\"230\";s:11:\"trend_index\";s:3:\"373\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:334;a:14:{s:2:\"id\";s:4:\"1613\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 2\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"54\";s:16:\"popularity_index\";s:3:\"261\";s:11:\"trend_index\";s:3:\"317\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:335;a:14:{s:2:\"id\";s:4:\"1612\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 3\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"55\";s:16:\"popularity_index\";s:3:\"271\";s:11:\"trend_index\";s:3:\"295\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:336;a:14:{s:2:\"id\";s:4:\"1614\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 4\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352131\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"56\";s:16:\"popularity_index\";s:3:\"182\";s:11:\"trend_index\";s:3:\"334\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:337;a:14:{s:2:\"id\";s:3:\"906\";s:5:\"title\";s:29:\"Landing Page &#8211;  Coacher\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";s:10:\"1494352066\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-coacher/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"57\";s:16:\"popularity_index\";s:2:\"96\";s:11:\"trend_index\";s:3:\"181\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:338;a:14:{s:2:\"id\";s:3:\"955\";s:5:\"title\";s:31:\"Landing Page &#8211; Law Office\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";s:10:\"1494352069\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-law-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:31:\"[\"Landing Page\",\"Law\",\"Office\"]\";s:10:\"menu_order\";s:2:\"58\";s:16:\"popularity_index\";s:3:\"106\";s:11:\"trend_index\";s:3:\"285\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:339;a:14:{s:2:\"id\";s:3:\"879\";s:5:\"title\";s:41:\"Landing Page &#8211; Financial Consultant\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";s:10:\"1494352064\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/landing-page-financial-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"59\";s:16:\"popularity_index\";s:3:\"116\";s:11:\"trend_index\";s:3:\"168\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:340;a:14:{s:2:\"id\";s:3:\"926\";s:5:\"title\";s:33:\"Landing Page &#8211; Private Chef\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";s:10:\"1494352068\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-private-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"60\";s:16:\"popularity_index\";s:3:\"213\";s:11:\"trend_index\";s:3:\"304\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:341;a:14:{s:2:\"id\";s:3:\"855\";s:5:\"title\";s:37:\"Landing Page &#8211; Personal Trainer\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";s:10:\"1494352061\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/landing-page-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"61\";s:16:\"popularity_index\";s:3:\"192\";s:11:\"trend_index\";s:3:\"277\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:342;a:14:{s:2:\"id\";s:3:\"974\";s:5:\"title\";s:28:\"Landing Page &#8211; Stylist\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";s:10:\"1494352071\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"cosmetics\",\"fashion\",\"girly\",\"hairdresser\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";s:2:\"62\";s:16:\"popularity_index\";s:3:\"229\";s:11:\"trend_index\";s:3:\"306\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:343;a:14:{s:2:\"id\";s:4:\"1032\";s:5:\"title\";s:27:\"Landing Page &#8211; Agency\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";s:10:\"1488810866\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"63\";s:16:\"popularity_index\";s:3:\"190\";s:11:\"trend_index\";s:3:\"248\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:344;a:14:{s:2:\"id\";s:4:\"1634\";s:5:\"title\";s:33:\"Landing Page &#8211; Chiropractor\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";s:10:\"1494352119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-chiropractor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"64\";s:16:\"popularity_index\";s:3:\"194\";s:11:\"trend_index\";s:3:\"179\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:345;a:14:{s:2:\"id\";s:3:\"730\";s:5:\"title\";s:24:\"Landing Page &#8211; App\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485273430\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/landing-page-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"65\";s:16:\"popularity_index\";s:3:\"174\";s:11:\"trend_index\";s:3:\"262\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:346;a:14:{s:2:\"id\";s:3:\"643\";s:5:\"title\";s:29:\"Landing Page &#8211; Festival\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";s:10:\"1481549290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"66\";s:16:\"popularity_index\";s:3:\"191\";s:11:\"trend_index\";s:3:\"315\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:347;a:14:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:29:\"Landing Page &#8211; Vacation\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";s:10:\"1477388357\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-vacation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"67\";s:16:\"popularity_index\";s:2:\"22\";s:11:\"trend_index\";s:2:\"26\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:348;a:14:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:28:\"Landing Page &#8211; Wedding\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";s:10:\"1477388484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"68\";s:16:\"popularity_index\";s:2:\"32\";s:11:\"trend_index\";s:2:\"65\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:349;a:14:{s:2:\"id\";s:4:\"1187\";s:5:\"title\";s:32:\"Landing Page &#8211; Photography\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";s:10:\"1490707385\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"69\";s:16:\"popularity_index\";s:2:\"24\";s:11:\"trend_index\";s:2:\"59\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:350;a:14:{s:2:\"id\";s:3:\"641\";s:5:\"title\";s:28:\"Landing Page &#8211; Fashion\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1481549264\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"70\";s:16:\"popularity_index\";s:3:\"118\";s:11:\"trend_index\";s:3:\"253\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:351;a:14:{s:2:\"id\";s:3:\"189\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";s:10:\"1470820715\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-tourism/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"71\";s:16:\"popularity_index\";s:1:\"9\";s:11:\"trend_index\";s:2:\"11\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:352;a:14:{s:2:\"id\";s:4:\"1547\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";s:10:\"1494352115\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"72\";s:16:\"popularity_index\";s:3:\"184\";s:11:\"trend_index\";s:3:\"220\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:353;a:14:{s:2:\"id\";s:4:\"1546\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";s:10:\"1494352116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"73\";s:16:\"popularity_index\";s:3:\"269\";s:11:\"trend_index\";s:3:\"389\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:354;a:14:{s:2:\"id\";s:4:\"1545\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";s:10:\"1494352118\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"74\";s:16:\"popularity_index\";s:3:\"221\";s:11:\"trend_index\";s:3:\"260\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:355;a:14:{s:2:\"id\";s:4:\"2714\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 5\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631782\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"75\";s:16:\"popularity_index\";s:3:\"241\";s:11:\"trend_index\";s:3:\"365\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:356;a:14:{s:2:\"id\";s:4:\"1190\";s:5:\"title\";s:26:\"Landing Page &#8211; Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";s:10:\"1490707391\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/landing-page-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"76\";s:16:\"popularity_index\";s:2:\"20\";s:11:\"trend_index\";s:2:\"28\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:357;a:14:{s:2:\"id\";s:3:\"195\";s:5:\"title\";s:28:\"Landing Page &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";s:10:\"1470820765\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"77\";s:16:\"popularity_index\";s:2:\"23\";s:11:\"trend_index\";s:2:\"36\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:358;a:14:{s:2:\"id\";s:3:\"197\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";s:10:\"1470825711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"78\";s:16:\"popularity_index\";s:2:\"41\";s:11:\"trend_index\";s:3:\"196\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:359;a:14:{s:2:\"id\";s:4:\"1193\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";s:10:\"1490707422\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"79\";s:16:\"popularity_index\";s:2:\"29\";s:11:\"trend_index\";s:2:\"80\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:360;a:14:{s:2:\"id\";s:4:\"1415\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";s:10:\"1494352106\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"80\";s:16:\"popularity_index\";s:3:\"211\";s:11:\"trend_index\";s:3:\"345\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:361;a:14:{s:2:\"id\";s:4:\"1414\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 4\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";s:10:\"1494352107\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"81\";s:16:\"popularity_index\";s:3:\"325\";s:11:\"trend_index\";s:3:\"342\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:362;a:14:{s:2:\"id\";s:4:\"1413\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 5\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";s:10:\"1494352109\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:134:\"[\"Agent\",\"business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"listing\",\"modern\",\"real estate\",\"realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";s:2:\"82\";s:16:\"popularity_index\";s:3:\"285\";s:11:\"trend_index\";s:3:\"163\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:363;a:14:{s:2:\"id\";s:4:\"1573\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";s:10:\"1494352133\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"83\";s:16:\"popularity_index\";s:3:\"309\";s:11:\"trend_index\";s:3:\"404\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:364;a:14:{s:2:\"id\";s:4:\"1572\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";s:10:\"1494352134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"84\";s:16:\"popularity_index\";s:3:\"337\";s:11:\"trend_index\";s:3:\"400\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:365;a:14:{s:2:\"id\";s:4:\"1570\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";s:10:\"1494352136\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"85\";s:16:\"popularity_index\";s:3:\"375\";s:11:\"trend_index\";s:3:\"418\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:366;a:14:{s:2:\"id\";s:4:\"1571\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";s:10:\"1494352138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"86\";s:16:\"popularity_index\";s:3:\"338\";s:11:\"trend_index\";s:3:\"398\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:367;a:14:{s:2:\"id\";s:3:\"192\";s:5:\"title\";s:28:\"Landing Page &#8211; Webinar\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";s:10:\"1470820734\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"87\";s:16:\"popularity_index\";s:2:\"34\";s:11:\"trend_index\";s:2:\"84\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:368;a:14:{s:2:\"id\";s:4:\"2141\";s:5:\"title\";s:32:\"Contact &#8211; Delivery Company\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774122\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/contact-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"88\";s:16:\"popularity_index\";s:3:\"170\";s:11:\"trend_index\";s:3:\"296\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:369;a:14:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Contact &#8211; Modern\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0013.png\";s:12:\"tmpl_created\";s:10:\"1470829828\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/contact-modern/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"89\";s:16:\"popularity_index\";s:2:\"25\";s:11:\"trend_index\";s:2:\"63\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:370;a:14:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:26:\"Contact &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0011.png\";s:12:\"tmpl_created\";s:10:\"1470829796\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/contact-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"90\";s:16:\"popularity_index\";s:2:\"45\";s:11:\"trend_index\";s:3:\"109\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:371;a:14:{s:2:\"id\";s:4:\"2150\";s:5:\"title\";s:25:\"Contact &#8211; Cake Shop\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"91\";s:16:\"popularity_index\";s:2:\"38\";s:11:\"trend_index\";s:2:\"43\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:372;a:14:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:21:\"Contact &#8211; Hotel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0002.png\";s:12:\"tmpl_created\";s:10:\"1470820471\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/contact-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"92\";s:16:\"popularity_index\";s:2:\"43\";s:11:\"trend_index\";s:2:\"75\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:373;a:14:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:25:\"Contact &#8211; Corporate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0012.png\";s:12:\"tmpl_created\";s:10:\"1470248619\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-corporate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"93\";s:16:\"popularity_index\";s:2:\"10\";s:11:\"trend_index\";s:2:\"10\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:374;a:14:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:23:\"Services &#8211; Moving\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0017.png\";s:12:\"tmpl_created\";s:10:\"1470829889\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/services-moving/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"94\";s:16:\"popularity_index\";s:2:\"17\";s:11:\"trend_index\";s:2:\"23\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:375;a:14:{s:2:\"id\";s:3:\"625\";s:5:\"title\";s:31:\"Services &#8211; Cake Shop Menu\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2016/12/cake-shop-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549196\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/services-cake-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"95\";s:16:\"popularity_index\";s:3:\"302\";s:11:\"trend_index\";s:3:\"401\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:376;a:14:{s:2:\"id\";s:3:\"187\";s:5:\"title\";s:20:\"Services &#8211; Fun\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0001.png\";s:12:\"tmpl_created\";s:10:\"1470829892\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/services-fun/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"96\";s:16:\"popularity_index\";s:2:\"27\";s:11:\"trend_index\";s:2:\"56\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:377;a:14:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:27:\"Services &#8211; Consulting\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0014.png\";s:12:\"tmpl_created\";s:10:\"1470829865\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/services-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"97\";s:16:\"popularity_index\";s:2:\"14\";s:11:\"trend_index\";s:2:\"24\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:378;a:14:{s:2:\"id\";s:3:\"647\";s:5:\"title\";s:33:\"Services &#8211; Coffee Shop Menu\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2016/12/restaurant-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549320\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-coffee-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"98\";s:16:\"popularity_index\";s:3:\"263\";s:11:\"trend_index\";s:3:\"409\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:379;a:14:{s:2:\"id\";s:4:\"2138\";s:5:\"title\";s:33:\"Services &#8211; Delivery Company\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-services.png\";s:12:\"tmpl_created\";s:10:\"1499774119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"99\";s:16:\"popularity_index\";s:3:\"246\";s:11:\"trend_index\";s:3:\"314\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:380;a:14:{s:2:\"id\";s:3:\"823\";s:5:\"title\";s:19:\"Pricing &#8211; App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-app.jpg\";s:12:\"tmpl_created\";s:10:\"1485272966\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/pricing-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"100\";s:16:\"popularity_index\";s:3:\"185\";s:11:\"trend_index\";s:3:\"293\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:381;a:14:{s:2:\"id\";s:3:\"824\";s:5:\"title\";s:24:\"Pricing &#8211; Software\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-software.png\";s:12:\"tmpl_created\";s:10:\"1485272900\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/pricing-software-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"101\";s:16:\"popularity_index\";s:3:\"203\";s:11:\"trend_index\";s:3:\"331\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:382;a:14:{s:2:\"id\";s:3:\"825\";s:5:\"title\";s:24:\"Product &#8211; Speakers\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/01/product-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485272513\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/product-speakers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"102\";s:16:\"popularity_index\";s:3:\"220\";s:11:\"trend_index\";s:3:\"369\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:383;a:14:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:21:\"Product &#8211; Clean\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0020.png\";s:12:\"tmpl_created\";s:10:\"1470829876\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/product-clean/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"fast\",\"minimal\",\"minimalistic\",\"seo\",\"simple\"]\";s:10:\"menu_order\";s:3:\"103\";s:16:\"popularity_index\";s:2:\"31\";s:11:\"trend_index\";s:3:\"107\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:384;a:14:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:19:\"Product &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0003.png\";s:12:\"tmpl_created\";s:10:\"1470829879\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/product-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"104\";s:16:\"popularity_index\";s:2:\"18\";s:11:\"trend_index\";s:2:\"33\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:385;a:14:{s:2:\"id\";s:3:\"751\";s:5:\"title\";s:25:\"Homepage &#8211; Interior\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-home.png\";s:12:\"tmpl_created\";s:10:\"1485269743\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"105\";s:16:\"popularity_index\";s:3:\"159\";s:11:\"trend_index\";s:3:\"303\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:386;a:14:{s:2:\"id\";s:3:\"753\";s:5:\"title\";s:22:\"About &#8211; Interior\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-About.png\";s:12:\"tmpl_created\";s:10:\"1485269710\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"106\";s:16:\"popularity_index\";s:3:\"197\";s:11:\"trend_index\";s:3:\"344\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:387;a:14:{s:2:\"id\";s:3:\"754\";s:5:\"title\";s:25:\"Services &#8211; Interior\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-Services.png\";s:12:\"tmpl_created\";s:10:\"1485269691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/services-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"107\";s:16:\"popularity_index\";s:3:\"226\";s:11:\"trend_index\";s:3:\"399\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:388;a:14:{s:2:\"id\";s:3:\"752\";s:5:\"title\";s:24:\"Contact &#8211; Interior\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-contact.png\";s:12:\"tmpl_created\";s:10:\"1485269737\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/contact-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"108\";s:16:\"popularity_index\";s:3:\"201\";s:11:\"trend_index\";s:3:\"268\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:389;a:14:{s:2:\"id\";s:4:\"1075\";s:5:\"title\";s:19:\"Shop &#8211; Sweets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Sweets.png\";s:12:\"tmpl_created\";s:10:\"1488810871\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/shop-sweets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:154:\"[\"bakery\",\"beverage\",\"business\",\"cafe\",\"candy bar\",\"catering\",\"delivery service\",\"Food\",\"online shop\",\"pastry\",\"Restaurant\",\"store\",\"sweet shop\",\"sweets\"]\";s:10:\"menu_order\";s:3:\"109\";s:16:\"popularity_index\";s:2:\"30\";s:11:\"trend_index\";s:2:\"76\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:390;a:14:{s:2:\"id\";s:4:\"1051\";s:5:\"title\";s:24:\"Blog Post &#8211; Launch\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/post-cloud.png\";s:12:\"tmpl_created\";s:10:\"1488810869\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blog-post-launch/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:210:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"launch\",\"marketing campaign\",\"marketing landing page\",\"marketing template landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:3:\"110\";s:16:\"popularity_index\";s:2:\"16\";s:11:\"trend_index\";s:2:\"14\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:391;a:14:{s:2:\"id\";s:4:\"1245\";s:5:\"title\";s:13:\"Coming Soon 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-1.png\";s:12:\"tmpl_created\";s:10:\"1491207184\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"111\";s:16:\"popularity_index\";s:3:\"148\";s:11:\"trend_index\";s:3:\"243\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:392;a:14:{s:2:\"id\";s:4:\"1247\";s:5:\"title\";s:13:\"Coming Soon 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-2.png\";s:12:\"tmpl_created\";s:10:\"1491207138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"112\";s:16:\"popularity_index\";s:2:\"26\";s:11:\"trend_index\";s:2:\"32\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:393;a:14:{s:2:\"id\";s:4:\"1248\";s:5:\"title\";s:13:\"Coming Soon 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-3.png\";s:12:\"tmpl_created\";s:10:\"1491207050\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"113\";s:16:\"popularity_index\";s:3:\"245\";s:11:\"trend_index\";s:3:\"309\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:394;a:14:{s:2:\"id\";s:4:\"1249\";s:5:\"title\";s:13:\"Coming Soon 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-4.png\";s:12:\"tmpl_created\";s:10:\"1491207380\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"114\";s:16:\"popularity_index\";s:3:\"299\";s:11:\"trend_index\";s:3:\"405\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:395;a:14:{s:2:\"id\";s:4:\"1250\";s:5:\"title\";s:13:\"Coming Soon 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-5.png\";s:12:\"tmpl_created\";s:10:\"1491207450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"115\";s:16:\"popularity_index\";s:2:\"33\";s:11:\"trend_index\";s:2:\"54\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:396;a:14:{s:2:\"id\";s:4:\"1260\";s:5:\"title\";s:13:\"Coming Soon 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-6.png\";s:12:\"tmpl_created\";s:10:\"1491207507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"116\";s:16:\"popularity_index\";s:3:\"297\";s:11:\"trend_index\";s:3:\"350\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:397;a:14:{s:2:\"id\";s:4:\"1261\";s:5:\"title\";s:13:\"Coming Soon 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/04/Coming-Soon-7.png\";s:12:\"tmpl_created\";s:10:\"1491207584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"117\";s:16:\"popularity_index\";s:2:\"35\";s:11:\"trend_index\";s:2:\"95\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:398;a:14:{s:2:\"id\";s:4:\"1272\";s:5:\"title\";s:13:\"Coming Soon 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-8.png\";s:12:\"tmpl_created\";s:10:\"1491207674\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"118\";s:16:\"popularity_index\";s:3:\"149\";s:11:\"trend_index\";s:3:\"300\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:399;a:14:{s:2:\"id\";s:4:\"1279\";s:5:\"title\";s:13:\"Coming Soon 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-9.png\";s:12:\"tmpl_created\";s:10:\"1491207756\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"119\";s:16:\"popularity_index\";s:2:\"52\";s:11:\"trend_index\";s:3:\"229\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:400;a:14:{s:2:\"id\";s:4:\"1745\";s:5:\"title\";s:14:\"Coming Soon 10\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-002.png\";s:12:\"tmpl_created\";s:10:\"1494849745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/coming-soon-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"120\";s:16:\"popularity_index\";s:3:\"154\";s:11:\"trend_index\";s:3:\"354\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:401;a:14:{s:2:\"id\";s:4:\"1742\";s:5:\"title\";s:12:\"Login Page 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-003.png\";s:12:\"tmpl_created\";s:10:\"1494849744\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/login-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"121\";s:16:\"popularity_index\";s:3:\"270\";s:11:\"trend_index\";s:3:\"375\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:402;a:14:{s:2:\"id\";s:4:\"1748\";s:5:\"title\";s:12:\"Login Page 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-001.png\";s:12:\"tmpl_created\";s:10:\"1494849742\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/login-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"122\";s:16:\"popularity_index\";s:3:\"153\";s:11:\"trend_index\";s:3:\"323\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:403;a:14:{s:2:\"id\";s:4:\"3963\";s:5:\"title\";s:32:\"Restaurant Site &#8211; Homepage\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/01/R.HomepageThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284821\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/restaurant-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"123\";s:16:\"popularity_index\";s:3:\"168\";s:11:\"trend_index\";s:3:\"310\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:404;a:14:{s:2:\"id\";s:4:\"3969\";s:5:\"title\";s:28:\"Restaurant Site &#8211; Menu\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/01/R.MenuThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284829\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/restaurant-site-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"124\";s:16:\"popularity_index\";s:3:\"314\";s:11:\"trend_index\";s:3:\"408\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:405;a:14:{s:2:\"id\";s:4:\"3966\";s:5:\"title\";s:29:\"Restaurant Site &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/01/R.AboutThumb.png.png\";s:12:\"tmpl_created\";s:10:\"1516284839\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/restaurant-site-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"125\";s:16:\"popularity_index\";s:3:\"215\";s:11:\"trend_index\";s:2:\"57\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:406;a:14:{s:2:\"id\";s:4:\"3972\";s:5:\"title\";s:31:\"Restaurant Site &#8211; Contact\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/01/R.ContactThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/restaurant-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"126\";s:16:\"popularity_index\";s:3:\"278\";s:11:\"trend_index\";s:3:\"333\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:407;a:14:{s:2:\"id\";s:4:\"2080\";s:5:\"title\";s:27:\"Ski Resort &#8211; Homepage\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508161124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"127\";s:16:\"popularity_index\";s:3:\"205\";s:11:\"trend_index\";s:3:\"318\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:408;a:14:{s:2:\"id\";s:4:\"2088\";s:5:\"title\";s:24:\"Ski Resort &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-About.png\";s:12:\"tmpl_created\";s:10:\"1508161129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/ski-resort-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"128\";s:16:\"popularity_index\";s:3:\"306\";s:11:\"trend_index\";s:3:\"339\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:409;a:14:{s:2:\"id\";s:4:\"2085\";s:5:\"title\";s:27:\"Ski Resort &#8211; Services\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Services.png\";s:12:\"tmpl_created\";s:10:\"1508161134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"129\";s:16:\"popularity_index\";s:3:\"354\";s:11:\"trend_index\";s:3:\"388\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:410;a:14:{s:2:\"id\";s:4:\"2462\";s:5:\"title\";s:23:\"Architect &#8211; About\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/architect-–-about.png\";s:12:\"tmpl_created\";s:10:\"1508243317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/architect-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"130\";s:16:\"popularity_index\";s:3:\"244\";s:11:\"trend_index\";s:3:\"272\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:411;a:14:{s:2:\"id\";s:4:\"2362\";s:5:\"title\";s:26:\"Architect &#8211; Projects\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2017/10/Architect-Projects.png\";s:12:\"tmpl_created\";s:10:\"1508243335\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/architect-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"131\";s:16:\"popularity_index\";s:3:\"295\";s:11:\"trend_index\";s:3:\"357\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:412;a:14:{s:2:\"id\";s:3:\"614\";s:5:\"title\";s:25:\"Architect &#8211; Contact\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2016/12/architect-contact.jpg\";s:12:\"tmpl_created\";s:10:\"1481549169\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/architect-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"132\";s:16:\"popularity_index\";s:3:\"122\";s:11:\"trend_index\";s:3:\"232\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:413;a:14:{s:2:\"id\";s:4:\"2126\";s:5:\"title\";s:37:\"Construction Company &#8211; Homepage\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508325849\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-company-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"133\";s:16:\"popularity_index\";s:3:\"193\";s:11:\"trend_index\";s:3:\"231\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:414;a:14:{s:2:\"id\";s:4:\"2129\";s:5:\"title\";s:34:\"Construction Company &#8211; About\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-About.png\";s:12:\"tmpl_created\";s:10:\"1508325881\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/construction-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"134\";s:16:\"popularity_index\";s:3:\"222\";s:11:\"trend_index\";s:3:\"246\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:415;a:14:{s:2:\"id\";s:4:\"2135\";s:5:\"title\";s:36:\"Construction Company &#8211; Contact\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Contact.png\";s:12:\"tmpl_created\";s:10:\"1508325922\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/construction-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"135\";s:16:\"popularity_index\";s:3:\"234\";s:11:\"trend_index\";s:3:\"234\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:416;a:14:{s:2:\"id\";s:4:\"2094\";s:5:\"title\";s:28:\"Plants Shop &#8211; Homepage\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-Home.png\";s:12:\"tmpl_created\";s:10:\"1509621053\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/plants-shop-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"136\";s:16:\"popularity_index\";s:3:\"218\";s:11:\"trend_index\";s:3:\"412\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:417;a:14:{s:2:\"id\";s:4:\"2120\";s:5:\"title\";s:25:\"Plants Shop &#8211; About\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-About.png\";s:12:\"tmpl_created\";s:10:\"1509631820\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/plants-shop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"137\";s:16:\"popularity_index\";s:3:\"225\";s:11:\"trend_index\";s:3:\"266\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:418;a:14:{s:2:\"id\";s:4:\"3619\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Homepage\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2017/12/home.png\";s:12:\"tmpl_created\";s:10:\"1513513137\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"138\";s:16:\"popularity_index\";s:3:\"227\";s:11:\"trend_index\";s:3:\"138\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:419;a:14:{s:2:\"id\";s:4:\"3632\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Services\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/2.png\";s:12:\"tmpl_created\";s:10:\"1513513171\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"139\";s:16:\"popularity_index\";s:3:\"207\";s:11:\"trend_index\";s:3:\"301\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:420;a:14:{s:2:\"id\";s:4:\"3626\";s:5:\"title\";s:30:\"Snowboard Site &#8211; Contact\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/3.png\";s:12:\"tmpl_created\";s:10:\"1513513193\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/snowboard-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"140\";s:16:\"popularity_index\";s:3:\"209\";s:11:\"trend_index\";s:3:\"259\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:421;a:14:{s:2:\"id\";s:4:\"3153\";s:5:\"title\";s:14:\"Halloween Pack\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/10/halloween.png\";s:12:\"tmpl_created\";s:10:\"1508950132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/halloween-pack/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"141\";s:16:\"popularity_index\";s:3:\"364\";s:11:\"trend_index\";s:3:\"392\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:422;a:14:{s:2:\"id\";s:4:\"3338\";s:5:\"title\";s:31:\"Black Friday &#8211; Nature Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-1.png\";s:12:\"tmpl_created\";s:10:\"1511203351\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-nature-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"142\";s:16:\"popularity_index\";s:3:\"343\";s:11:\"trend_index\";s:3:\"397\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:423;a:14:{s:2:\"id\";s:4:\"3339\";s:5:\"title\";s:35:\"Black Friday &#8211; Pop-Styled Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-2.png\";s:12:\"tmpl_created\";s:10:\"1511203636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/black-friday-pop-styled-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"143\";s:16:\"popularity_index\";s:3:\"291\";s:11:\"trend_index\";s:3:\"362\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:424;a:14:{s:2:\"id\";s:4:\"3335\";s:5:\"title\";s:31:\"Black Friday &#8211; Retail Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-4.png\";s:12:\"tmpl_created\";s:10:\"1511203246\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-retail-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"144\";s:16:\"popularity_index\";s:3:\"283\";s:11:\"trend_index\";s:3:\"221\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:425;a:14:{s:2:\"id\";s:4:\"3340\";s:5:\"title\";s:41:\"Black Friday &#8211; Software Product Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-3.png\";s:12:\"tmpl_created\";s:10:\"1511203713\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/black-friday-software-product-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"145\";s:16:\"popularity_index\";s:3:\"284\";s:11:\"trend_index\";s:3:\"402\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:426;a:14:{s:2:\"id\";s:4:\"3517\";s:5:\"title\";s:27:\"Christmas &#8211; Gift Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasThumb.png\";s:12:\"tmpl_created\";s:10:\"1513877937\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-gift-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"146\";s:16:\"popularity_index\";s:3:\"380\";s:11:\"trend_index\";s:3:\"407\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:427;a:14:{s:2:\"id\";s:4:\"3734\";s:5:\"title\";s:28:\"Christmas &#8211; Car Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v3.png\";s:12:\"tmpl_created\";s:10:\"1514197794\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/christmas-car-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"147\";s:16:\"popularity_index\";s:3:\"369\";s:11:\"trend_index\";s:3:\"356\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:428;a:14:{s:2:\"id\";s:4:\"3764\";s:5:\"title\";s:33:\"Christmas &#8211; Interior Design\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v6.png\";s:12:\"tmpl_created\";s:10:\"1514198234\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/christmas-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"148\";s:16:\"popularity_index\";s:3:\"345\";s:11:\"trend_index\";s:3:\"324\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:429;a:14:{s:2:\"id\";s:4:\"3565\";s:5:\"title\";s:27:\"Christmas &#8211; Tree Shop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasTreeThumb.png\";s:12:\"tmpl_created\";s:10:\"1514204382\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-tree-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"149\";s:16:\"popularity_index\";s:3:\"344\";s:11:\"trend_index\";s:3:\"368\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:430;a:14:{s:2:\"id\";s:4:\"3862\";s:5:\"title\";s:35:\"Christmas &#8211; Design Conference\";s:9:\"thumbnail\";s:63:\"https://library.elementor.com/wp-content/uploads/2017/12/q1.png\";s:12:\"tmpl_created\";s:10:\"1514206745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/christmas-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"150\";s:16:\"popularity_index\";s:3:\"289\";s:11:\"trend_index\";s:3:\"348\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:431;a:14:{s:2:\"id\";s:4:\"3777\";s:5:\"title\";s:39:\"Christmas &#8211; Snowboard Competition\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v7.png\";s:12:\"tmpl_created\";s:10:\"1514205420\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/christmas-snowboard-competition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"151\";s:16:\"popularity_index\";s:3:\"303\";s:11:\"trend_index\";s:3:\"378\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:432;a:14:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:11:\"Hero UI Kit\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/09/library-ui-kit-cover.png\";s:12:\"tmpl_created\";s:10:\"1475067229\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/hero-ui-kit/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"152\";s:16:\"popularity_index\";s:2:\"12\";s:11:\"trend_index\";s:2:\"30\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}}}','no'),(430,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:15:\"qzgau@yahoo.com\";s:7:\"version\";s:5:\"4.9.8\";s:9:\"timestamp\";i:1533251166;}','no'),(341,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.0.1\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1522645656;s:7:\"version\";s:5:\"5.0.1\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(649,'widget_gadwp-frontwidget-report','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(271,'widget_ocean_social','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(272,'widget_ocean_tags','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(410,'theme_mods_nikko-portfolio','a:8:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:16:\"background_image\";s:61:\"http://evergreenwellness.com/wp-content/uploads/2018/04/9.jpg\";s:21:\"background_position_y\";s:3:\"top\";s:15:\"background_size\";s:7:\"contain\";s:17:\"background_repeat\";s:6:\"repeat\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1522803517;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:30:\"nikko-portfolio-footer-widgets\";a:0:{}s:32:\"nikko-portfolio-footer-instagram\";a:0:{}s:32:\"nikko-portfolio-footer-copyright\";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'),(415,'elementor_tracker_notice','1','yes'),(419,'theme_mods_lzrestaurant','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:3:\"top\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1522792781;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}}}}','yes'),(146,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:40:\"Introducing Filter Effects & Blend Modes\";s:7:\"excerpt\";s:168:\"Today, I am eager to show you a brand new set of capabilities that will allow you to create a wide range of visual effects, all using Filter Effects and Blend modes.​\";s:7:\"created\";s:10:\"1531911170\";s:5:\"badge\";s:3:\"New\";s:3:\"url\";s:124:\"https://elementor.com/introducing-filter-blend-mode/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:58:\"New Features: Revamped Video Features & Custom Breakpoints\";s:7:\"excerpt\";s:181:\"This week, you’ll have the chance to discover other helpful features that were introduced: Video enhancements, custom breakpoints, Gutenberg compatibility, and WP-CLI integration.\";s:7:\"created\";s:10:\"1531227695\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:111:\"https://elementor.com/2-1-new-features/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:35:\"Introducing Copy Style & Copy Paste\";s:7:\"excerpt\";s:190:\"We\'re excited to release one of the most requested features: Copy Style & Copy Paste. This will save you hours of work, allowing you to quickly copy any style or element with a single click.\";s:7:\"created\";s:10:\"1530613662\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:117:\"https://elementor.com/introducing-copy-paste/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(149,'_elementor_general_settings','a:2:{s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:21:\"global_image_lightbox\";s:3:\"yes\";}','yes'),(150,'_elementor_settings_update_time','1522368025','yes'),(151,'elementor_cpt_support','a:1:{i:0;s:4:\"page\";}','yes'),(152,'elementor_disable_color_schemes','','yes'),(153,'elementor_disable_typography_schemes','','yes'),(154,'elementor_allow_tracking','no','yes'),(155,'elementor_default_generic_fonts','Sans-serif','yes'),(156,'elementor_container_width','','yes'),(157,'elementor_space_between_widgets','','yes'),(158,'elementor_stretched_section_container','','yes'),(159,'elementor_page_title_selector','','yes'),(160,'elementor_global_image_lightbox','yes','yes'),(161,'elementor_css_print_method','external','yes'),(162,'elementor_editor_break_lines','','yes'),(166,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(167,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"600\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}}','yes'),(168,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(174,'_transient_twentyseventeen_categories','1','yes'),(175,'category_children','a:0:{}','yes'),(650,'gadwp_redeemed_code','4/AAD2N3iLQJb58K1uynjIZzqQJZi5McDnPjnXRKPRcgX8NAMzGmJpMWY','yes'),(4235,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1533496169;s:7:\"checked\";a:10:{s:11:\"custom-lite\";s:3:\"1.2\";s:12:\"lzrestaurant\";s:5:\"1.6.3\";s:10:\"meditation\";s:5:\"1.1.0\";s:16:\"mh-magazine-lite\";s:5:\"2.7.7\";s:15:\"nikko-portfolio\";s:5:\"1.0.4\";s:7:\"oceanwp\";s:6:\"1.5.10\";s:6:\"placid\";s:5:\"1.0.7\";s:13:\"twentyfifteen\";s:3:\"1.9\";s:15:\"twentyseventeen\";s:3:\"1.4\";s:13:\"twentysixteen\";s:3:\"1.4\";}s:8:\"response\";a:8:{s:11:\"custom-lite\";a:4:{s:5:\"theme\";s:11:\"custom-lite\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:41:\"https://wordpress.org/themes/custom-lite/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/custom-lite.1.3.zip\";}s:12:\"lzrestaurant\";a:4:{s:5:\"theme\";s:12:\"lzrestaurant\";s:11:\"new_version\";s:5:\"1.6.5\";s:3:\"url\";s:42:\"https://wordpress.org/themes/lzrestaurant/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/lzrestaurant.1.6.5.zip\";}s:10:\"meditation\";a:4:{s:5:\"theme\";s:10:\"meditation\";s:11:\"new_version\";s:5:\"1.1.1\";s:3:\"url\";s:40:\"https://wordpress.org/themes/meditation/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/meditation.1.1.1.zip\";}s:16:\"mh-magazine-lite\";a:4:{s:5:\"theme\";s:16:\"mh-magazine-lite\";s:11:\"new_version\";s:5:\"2.8.2\";s:3:\"url\";s:46:\"https://wordpress.org/themes/mh-magazine-lite/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/theme/mh-magazine-lite.2.8.2.zip\";}s:7:\"oceanwp\";a:4:{s:5:\"theme\";s:7:\"oceanwp\";s:11:\"new_version\";s:6:\"1.5.22\";s:3:\"url\";s:37:\"https://wordpress.org/themes/oceanwp/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/oceanwp.1.5.22.zip\";}s:13:\"twentyfifteen\";a:4:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.2.0.zip\";}s:15:\"twentyseventeen\";a:4:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.1.7.zip\";}s:13:\"twentysixteen\";a:4:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.1.5.zip\";}}s:12:\"translations\";a:0:{}}','no'),(4286,'rsssl_flush_rewrite_rules','1533496837','yes'),(4284,'rlrsssl_options','a:13:{s:12:\"site_has_ssl\";b:1;s:4:\"hsts\";b:0;s:22:\"htaccess_warning_shown\";b:0;s:25:\"ssl_success_message_shown\";b:0;s:26:\"autoreplace_insecure_links\";b:1;s:17:\"plugin_db_version\";s:5:\"3.0.5\";s:5:\"debug\";b:0;s:20:\"do_not_edit_htaccess\";b:0;s:17:\"htaccess_redirect\";b:0;s:11:\"ssl_enabled\";b:1;s:19:\"javascript_redirect\";b:0;s:11:\"wp_redirect\";b:1;s:31:\"switch_mixed_content_fixer_hook\";b:0;}','yes'),(4275,'_transient_plugin_slugs','a:6:{i:0;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1;s:23:\"elementor/elementor.php\";i:2;s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";i:3;s:27:\"ocean-extra/ocean-extra.php\";i:4;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";i:5;s:27:\"updraftplus/updraftplus.php\";}','no'),(648,'gadwp_options','{\"client_id\":\"\",\"client_secret\":\"\",\"access_front\":[\"administrator\"],\"access_back\":[\"administrator\"],\"tableid_jail\":\"171164682\",\"theme_color\":\"#1e73be\",\"switch_profile\":0,\"tracking_type\":\"universal\",\"ga_anonymize_ip\":0,\"user_api\":0,\"ga_event_tracking\":0,\"ga_event_downloads\":\"zip|mp3*|mpe*g|pdf|docx*|pptx*|xlsx*|rar*\",\"track_exclude\":[],\"ga_target_geomap\":\"\",\"ga_realtime_pages\":10,\"token\":\"{\\\"access_token\\\":\\\"ya29.Gl0OBh1IPnT-OJSkEq_WGVp_LDID8pYC1SJUUfl5hKJShLV9jLaMQzE4BY3o7svq5NGJK0mm8HV6fg4paRpmgg-82ns0qTrrbYDnLYB7JTEMifZkt_RZEatBNkSKqKk\\\",\\\"expires_in\\\":3600,\\\"refresh_token\\\":\\\"1\\\\\\/FdbAFje1E9g2jT02WLu0ASpLR2lN46FT8YymjiSEGs8\\\",\\\"token_type\\\":\\\"Bearer\\\",\\\"created\\\":1533496150}\",\"ga_profiles_list\":[[\"All Web Site Data\",\"171164682\",\"UA-115377439-1\",\"http:\\/\\/ibreathin.com\",-18000,\"America\\/Chicago\",null]],\"ga_enhanced_links\":0,\"ga_remarketing\":0,\"network_mode\":0,\"ga_speed_samplerate\":1,\"ga_user_samplerate\":100,\"ga_event_bouncerate\":0,\"ga_crossdomain_tracking\":0,\"ga_crossdomain_list\":\"\",\"ga_author_dimindex\":0,\"ga_category_dimindex\":0,\"ga_tag_dimindex\":0,\"ga_user_dimindex\":0,\"ga_pubyear_dimindex\":0,\"ga_pubyearmonth_dimindex\":0,\"ga_aff_tracking\":0,\"ga_event_affiliates\":\"\\/out\\/\",\"automatic_updates_minorversion\":\"1\",\"backend_item_reports\":1,\"backend_realtime_report\":0,\"frontend_item_reports\":0,\"dashboard_widget\":1,\"api_backoff\":0,\"ga_cookiedomain\":\"\",\"ga_cookiename\":\"\",\"ga_cookieexpires\":\"\",\"pagetitle_404\":\"Page Not Found\",\"maps_api_key\":\"\",\"tm_author_var\":0,\"tm_category_var\":0,\"tm_tag_var\":0,\"tm_user_var\":0,\"tm_pubyear_var\":0,\"tm_pubyearmonth_var\":0,\"web_containerid\":\"\",\"amp_containerid\":\"\",\"amp_tracking_tagmanager\":0,\"amp_tracking_analytics\":0,\"amp_tracking_clientidapi\":0,\"trackingcode_infooter\":0,\"trackingevents_infooter\":0,\"ecommerce_mode\":\"disabled\",\"ga_formsubmit_tracking\":0,\"optimize_tracking\":0,\"optimize_containerid\":\"\",\"optimize_pagehiding\":0,\"superadmin_tracking\":0,\"ga_pagescrolldepth_tracking\":0,\"tm_pagescrolldepth_tracking\":0,\"ga_event_precision\":0,\"ga_force_ssl\":0,\"with_endpoint\":1,\"ga_optout\":0,\"ga_dnt_optout\":0,\"tm_optout\":0,\"tm_dnt_optout\":0,\"ga_with_gtag\":0,\"ga_enhanced_excludesa\":0,\"ga_hash_tracking\":0,\"gadwp_hidden\":\"Y\"}','yes'),(651,'_elementor_global_css','a:3:{s:4:\"time\";i:1523326506;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:12;s:11:\"Roboto Slab\";}s:6:\"status\";s:4:\"file\";}','yes'),(4277,'gadwp_cache_qr3_2081355761','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:260:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:171164682&metrics=ga:sessions,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession,ga:avgTimeOnPage,ga:avgPageLoadTime,ga:avgSessionDuration&start-date=30daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:1:{i:0;a:9:{i:0;s:3:\"365\";i:1;s:3:\"286\";i:2;s:3:\"899\";i:3;s:18:\"52.054794520547944\";i:4;s:3:\"128\";i:5;s:17:\"2.463013698630137\";i:6;s:17:\"86.09925093632958\";i:7;s:18:\"1.5463333333333333\";i:8;s:18:\"125.95342465753424\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:260:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:171164682&metrics=ga:sessions,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession,ga:avgTimeOnPage,ga:avgPageLoadTime,ga:avgSessionDuration&start-date=30daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:1;s:19:\"totalsForAllResults\";a:9:{s:11:\"ga:sessions\";s:3:\"365\";s:8:\"ga:users\";s:3:\"286\";s:12:\"ga:pageviews\";s:3:\"899\";s:13:\"ga:BounceRate\";s:18:\"52.054794520547944\";s:18:\"ga:organicSearches\";s:3:\"128\";s:22:\"ga:pageviewsPerSession\";s:17:\"2.463013698630137\";s:16:\"ga:avgTimeOnPage\";s:17:\"86.09925093632958\";s:18:\"ga:avgPageLoadTime\";s:18:\"1.5463333333333333\";s:21:\"ga:avgSessionDuration\";s:18:\"125.95342465753424\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:7:{s:10:\"start-date\";s:9:\"30daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:12:\"ga:171164682\";s:7:\"metrics\";a:9:{i:0;s:11:\"ga:sessions\";i:1;s:8:\"ga:users\";i:2;s:12:\"ga:pageviews\";i:3;s:13:\"ga:BounceRate\";i:4;s:18:\"ga:organicSearches\";i:5;s:22:\"ga:pageviewsPerSession\";i:6;s:16:\"ga:avgTimeOnPage\";i:7;s:18:\"ga:avgPageLoadTime\";i:8;s:21:\"ga:avgSessionDuration\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:9:\"171164682\";s:9:\"accountId\";s:9:\"115377439\";s:13:\"webPropertyId\";s:14:\"UA-115377439-1\";s:21:\"internalWebPropertyId\";s:9:\"171493460\";s:11:\"profileName\";s:17:\"All Web Site Data\";s:7:\"tableId\";s:12:\"ga:171164682\";}s:13:\"columnHeaders\";a:9:{i:0;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:2;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:3;a:3:{s:4:\"name\";s:13:\"ga:BounceRate\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"PERCENT\";}i:4;a:3:{s:4:\"name\";s:18:\"ga:organicSearches\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:5;a:3:{s:4:\"name\";s:22:\"ga:pageviewsPerSession\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:5:\"FLOAT\";}i:6;a:3:{s:4:\"name\";s:16:\"ga:avgTimeOnPage\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:4:\"TIME\";}i:7;a:3:{s:4:\"name\";s:18:\"ga:avgPageLoadTime\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:5:\"FLOAT\";}i:8;a:3:{s:4:\"name\";s:21:\"ga:avgSessionDuration\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:4:\"TIME\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1533531600;}','no'),(4281,'_site_transient_timeout_theme_roots','1533497969','no'),(4282,'_site_transient_theme_roots','a:10:{s:11:\"custom-lite\";s:7:\"/themes\";s:12:\"lzrestaurant\";s:7:\"/themes\";s:10:\"meditation\";s:7:\"/themes\";s:16:\"mh-magazine-lite\";s:7:\"/themes\";s:15:\"nikko-portfolio\";s:7:\"/themes\";s:7:\"oceanwp\";s:7:\"/themes\";s:6:\"placid\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(4248,'_transient_timeout_elementor_remote_info_api_data_2.0.4','1533539343','no'),(4249,'_transient_elementor_remote_info_api_data_2.0.4','a:2:{s:9:\"timestamp\";i:1533496141;s:14:\"upgrade_notice\";a:2:{s:7:\"version\";s:5:\"1.5.0\";s:7:\"message\";s:0:\"\";}}','no'),(4250,'_transient_timeout_feed_c8dc84948ab55424f034a4ced348e013','1533539344','no'),(4251,'_transient_feed_c8dc84948ab55424f034a4ced348e013','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:52:\"\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:3:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"OceanWP\";s:7:\"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:19:\"https://oceanwp.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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Free Multi-Purpose WordPress Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Aug 2018 21:05:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:30:\"https://wordpress.org/?v=4.9.8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;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:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://oceanwp.org/wp-content/uploads/2016/10/cropped-favicon-150x150.png\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"OceanWP\";s:7:\"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:19:\"https://oceanwp.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:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"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:42:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"7 Ways to Protect WordPress PDF 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://oceanwp.org/7-ways-to-protect-wordpress-pdf-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://oceanwp.org/7-ways-to-protect-wordpress-pdf-files/#respond\";s: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, 30 Jul 2018 14:12: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:1:{i:0;a:5:{s:4:\"data\";s:11:\"Introducing\";s:7:\"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://oceanwp.org/?p=171163\";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:1256:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/7-ways-to-protect-wordpress-pdf-files/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/07/7-ways-to-protect-wordpress-pdf-files-oceanwp.png\" width=\"1200\" height=\"600\" title=\"7 Ways to Protect WordPress PDF Files\" alt=\"7 Ways to Protect WordPress PDF Files\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\">Nowadays, PDF has become a standard file format for many important documents. Many people have used PDF files to create and share their knowledge and stories with others across different platforms, systems, and devices while maintaining a more consistent layout compared to other document file formats such as Docx and Odt. As the most popular [&#8230;]<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/7-ways-to-protect-wordpress-pdf-files/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Elena Taylor\";s: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:21327:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/7-ways-to-protect-wordpress-pdf-files/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/07/7-ways-to-protect-wordpress-pdf-files-oceanwp.png\" width=\"1200\" height=\"600\" title=\"7 Ways to Protect WordPress PDF Files\" alt=\"7 Ways to Protect WordPress PDF Files\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\"><p><span style=\"font-weight: 400\">Nowadays, PDF has become a standard file format for many important documents. Many people have used PDF files to create and share their knowledge and stories with others across different platforms, systems, and devices while maintaining</span> <span style=\"font-weight: 400\">a more consistent layout compared to other document file formats such as Docx and Odt</span>.<span style=\"font-weight: 400\"> As the most popular CMS on earth, WordPress allows you to upload and share your PDF files as well. The thing is, it can’t guarantee your PDF files will be safe once published.</span></p>\n<h2><span style=\"font-weight: 400\">Why You have to Protect PDF Files?</span></h2>\n<p><span style=\"font-weight: 400\">There are many reasons why you want to protect your WordPress PDF files. One of the main reasons is for commercial purposes. If you’re running an online business selling ebooks, for example, it’s certain that you want to stop non-members from downloading and sharing your ebook files for free. In many cases, you also want to protect your original content, digital assets, ideas, inventions, intellectual work and such.</span> <span style=\"font-weight: 400\">You definitely don’t want people to exploit and take advantage of your skills and hard-to-produce products. Last but not least, there are some personal and private documents that you just don’t want them to be made public.</span></p>\n<p><span style=\"font-weight: 400\">Depending on your needs and circumstances, there are many different ways to protect and stop unwanted users from accessing your PDF files. Here are 7 ways you can protect WordPress PDF files. Let’s dive in.</span></p>\n<h3><span style=\"font-weight: 400\">Protect PDF Files Indirectly</span></h3>\n<p><span style=\"font-weight: 400\">One of the most common ways to share your documents with others is to embed their file URLs directly on your content.</span></p>\n<p><span style=\"font-weight: 400\">Once you’ve uploaded and inserted your PDF files into a WordPress post or page, you can then restrict its access to indirectly protect these files inside the content. Let’s take a look at 3 different ways you can do so.</span></p>\n<h2><span style=\"font-weight: 400\">#1 Password Protect WordPress Page </span></h2>\n<p><span style=\"font-weight: 400\">This is the easiest way of all. You can just set a password to protect your post/page content against unauthorized direct access using a WordPress default feature. You don’t even have to install any extra plugins.</span></p>\n<h3><span style=\"font-weight: 400\">How to password protect your WordPress post/page:</span></h3>\n<ol>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Create a new WordPress page or post under your admin panel as usual</span></li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Edit Visibility in the right-hand menu from <em>Public</em> to <em>Password protected</em></span></li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Enter your password and Update the page/post</span></li>\n</ol>\n<p><img class=\"alignnone size-full wp-image-171194\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/password-protected-wordpress.png\" alt=\"\" width=\"279\" height=\"458\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/password-protected-wordpress.png 279w, //oceanwp.org/wp-content/uploads/2018/07/password-protected-wordpress-183x300.png 183w\" sizes=\"(max-width: 279px) 100vw, 279px\" /></p>\n<p><span style=\"font-weight: 400\">The drawback is you can set only one password per post/page.</span> <span style=\"font-weight: 400\">So if someone reveals the password, others will be able to access your content and PDF files. A workaround is setting multiple passwords per post/page using this </span><a href=\"https://wordpress.org/plugins/password-protect-page/\" rel=\"noopener\"><span style=\"font-weight: 400\">Password Protect WordPress Page plugin</span></a><span style=\"font-weight: 400\">.</span></p>\n<h2><span style=\"font-weight: 400\">#2 Automatically Expire &amp; Change Post/Page URL</span></h2>\n<p><span style=\"font-weight: 400\">Another simple method yet offers more security to your WordPress content is to use Protect WordPress Pages &amp; Posts plugin. This plugin basically blocks the original URLs of your page/post against the public and search engines. In return, it enables you to create a new “private” URL for you to access or share the post/page with others. You can create as many as private URL as you want as well as expire these links by clicks and dates.</span></p>\n<p><span style=\"font-weight: 400\">Better yet, if you’re using this with </span><a href=\"https://preventdirectaccess.com/extensions/private-magic-links/?utm_source=oceanwp&amp;utm_medium=content_link&amp;utm_campaign=guestpost&amp;utm_content=no2\"><span style=\"font-weight: 400\">Private Magic Links</span></a><span style=\"font-weight: 400\"> extension, you can embed these private pages/posts directly on your content and let it do the magic for you. Your WordPress page/post URL will expire in a preset time, say every 1 minute. Once expired, a new private URL will be automatically created and so on.</span></p>\n<p><span style=\"font-weight: 400\">Unauthorized users will just see a 404 error page when accessing protected pages as their URLs will expire and keep changing in a very short amount of time. It’s a simple yet quite effective way of stopping people from sharing your WordPress pages and posts content with others. The plugin comes in useful especially when you want to protect public-facing pages such as “contact us” and “thank you” page from abuse.</span></p>\n<h3><span style=\"font-weight: 400\">How to block post/page URL using Protect WordPress Pages &amp; Posts:</span></h3>\n<ol>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Get and install </span><a href=\"https://preventdirectaccess.com/protect-wordpress-pages-posts/?utm_source=oceanwp&amp;utm_medium=content_link&amp;utm_campaign=guestpost&amp;utm_content=installationno2\"><span style=\"font-weight: 400\">Protect WordPress Pages &amp; Posts plugin</span></a><span style=\"font-weight: 400\"> under WordPress admin panel</span></li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Go to WordPress Pages/Posts</span></li>\n<li style=\"font-weight: 400\">Click “Protect this page” under “Protect Your Pages” column then “Auto-generate new link”</li>\n</ol>\n<p>That’s all. Now your page content is blocked against both search engines and the public.</p>\n<h2><span style=\"font-weight: 400\">#3 Restrict Private Content Access to Member Only </span></h2>\n<p><span style=\"font-weight: 400\">This is a more advanced and complex method but comes in handy if you have a membership or e-commerce website in place. In this case, you will probably want to create a member only section where only your paid members or customers are allowed to access your private content and documents.</span></p>\n<p><img class=\"alignnone size-full wp-image-171204\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/ultimate-member-content-restriction.png\" alt=\"\" width=\"691\" height=\"294\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/ultimate-member-content-restriction.png 691w, //oceanwp.org/wp-content/uploads/2018/07/ultimate-member-content-restriction-300x128.png 300w\" sizes=\"(max-width: 691px) 100vw, 691px\" /></p>\n<p><span style=\"font-weight: 400\">What you need to do is simply install and use a membership plugin. </span><a href=\"https://wordpress.org/plugins/ultimate-member/\"><span style=\"font-weight: 400\">Ultimate Member</span></a><span style=\"font-weight: 400\"> stands out among all available WordPress membership plugins thanks to its simple logic and UI. </span><span style=\"font-weight: 400\"> </span></p>\n<h3><span style=\"font-weight: 400\">How to restrict private content access to members using Ultimate Member:</span></h3>\n<ol>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Install and activate <a href=\"https://wordpress.org/plugins/ultimate-member/\" target=\"_blank\" rel=\"noopener\">Ultimate Member</a> plugin under WordPress admin panel</span></li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Create a new WordPress page/post</span></li>\n<li style=\"font-weight: 400\">At the bottom of the page, you’ll find “UM Content Restriction” section.<br />\nSimply choose who can access this content.</li>\n</ol>\n<h2><span style=\"font-weight: 400\">Protect PDF Files Directly </span></h2>\n<p><span style=\"font-weight: 400\">Although your WordPress pages or posts are protected, all 3 methods above don’t really protect your uploaded PDF files. In other words, when you attach your PDF files to those protected pages and posts, they’re still accessible to the public. So in case people can somehow find the file URLs through search engines or sharing, they can just download and steal your PDF files.</span></p>\n<p><span style=\"font-weight: 400\">This scenario happens often when your members who can access and download PDF files from &#8220;Member Only&#8221; page share them with their friends. These folks would then likely to share them with even more people especially when your content is great. As the result, more and more people will be able to access and download your private PDF documents even though they’re not a member of your website. </span></p>\n<p><span style=\"font-weight: 400\">In order to resolve this problem, you have to not only protect your content but also block and restrict PDF file URL access directly so that unauthorized users won’t be able to access your PDF files, in any circumstances. Let’s take a look at the following solutions.</span></p>\n<h2><span style=\"font-weight: 400\">4. Protect PDF Files with Passwords </span></h2>\n<p><span style=\"font-weight: 400\">When you want to allow specific users to download PDF documents but still keep them private from the public, simply set a password to protect your PDF files. </span><a href=\"https://wordpress.org/plugins/simple-download-monitor/\"><span style=\"font-weight: 400\">Simple Download Monitor</span></a><span style=\"font-weight: 400\"> plugin makes this entire complex process simple.</span></p>\n<p><img class=\"alignnone size-full wp-image-171205\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/password-protected-pdf-download-plugin.jpg\" alt=\"\" width=\"1500\" height=\"916\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/password-protected-pdf-download-plugin.jpg 1500w, //oceanwp.org/wp-content/uploads/2018/07/password-protected-pdf-download-plugin-300x183.jpg 300w, //oceanwp.org/wp-content/uploads/2018/07/password-protected-pdf-download-plugin-768x469.jpg 768w, //oceanwp.org/wp-content/uploads/2018/07/password-protected-pdf-download-plugin-1024x625.jpg 1024w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" /></p>\n<h3><span style=\"font-weight: 400\">How to password protect PDF files: </span></h3>\n<ol>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Download and install </span><a href=\"https://wordpress.org/plugins/simple-download-monitor/\"><span style=\"font-weight: 400\">Simple Download Monitor plugin</span></a></li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Click </span><b>“Add new”</b><span style=\"font-weight: 400\"> under </span><b>Downloads</b><span style=\"font-weight: 400\"> under your WordPress dashboard</span></li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Enter the file details </span></li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Upload the file you want to protect and insert them to page</span></li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Edit </span><b>Visibility </b><span style=\"font-weight: 400\">in the right-hand menu form <em>P</em></span><em>ublish</em><span style=\"font-weight: 400\"> to </span><em>Password protected</em><b>.</b></li>\n<li style=\"font-weight: 400\">Enter the password and click <b>Publish</b></li>\n<li><span style=\"font-weight: 400\">Copy the </span><b>Shortcode </b><span style=\"font-weight: 400\">and manually insert it into a new or existing </span><b>Page</b><span style=\"font-weight: 400\"> or Post. Alternatively, you can click </span><b>SDM Download Button</b><span style=\"font-weight: 400\"> on your content editor to open </span><i><span style=\"font-weight: 400\">SDM Downloads Insert Shortcode</span></i><span style=\"font-weight: 400\"> tab. Simply input “Download Title” and “Insert SDM Shortcode” once done.</span></li>\n</ol>\n<p><span style=\"font-weight: 400\">Similar to the first method, the major disadvantage is you can only set one password per file.</span></p>\n<h2><span style=\"font-weight: 400\">5. Block Search Indexing and Restrict PDF file URL Access to Logged-in Users</span></h2>\n<p><span style=\"font-weight: 400\">What if your users reveal or share their passwords with others? There must be a better and more comprehensive way to protect your WordPress file uploads in general and PDF files in particular. And there comes Prevent Direct Access Gold. The plugin essentially blocks the PDF file URLs against the public and unwanted users. Those without permission will be redirected to the 404 error page if they try to access your WordPress PDF file uploads.</span></p>\n<p><img class=\"alignnone size-full wp-image-171199\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/prevent-direct-access-pdf-gold-oceanwp.png\" alt=\"\" width=\"700\" height=\"330\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/prevent-direct-access-pdf-gold-oceanwp.png 700w, //oceanwp.org/wp-content/uploads/2018/07/prevent-direct-access-pdf-gold-oceanwp-300x141.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" /></p>\n<p><span style=\"font-weight: 400\">What’s more? Prevent Direct Access Gold prevents Google and other search engines from indexing your protected PDF files so that your private PDF files won’t be indexed nor appear on search results. This removes the probability that someone could possibly pick up your PDF file URL from a Google search.</span></p>\n<h3><span style=\"font-weight: 400\">How to block and restrict PDF file URL access to certain user roles:</span></h3>\n<ol>\n<li style=\"font-weight: 400\"><a href=\"https://preventdirectaccess.com/pricing/?utm_source=oceanwp&amp;utm_medium=content_link&amp;utm_campaign=guestpost&amp;utm_content=no5\"><span style=\"font-weight: 400\">Download and install Prevent Direct Access Gold</span></a></li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Upload the private PDF file that you want to protect into WordPress Media library.</span></li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Tick “Protect this file” under Prevent Direct Access Gold tab (right-hand menu).</span></li>\n</ol>\n<h2><span style=\"font-weight: 400\">6. Expire PDF File URLs In Every 5 Seconds</span></h2>\n<p><span style=\"font-weight: 400\">Another way to protect your PDF files is to expire their URLs in a short amount of time say 5 seconds. This helps stop your members from downloading and sharing your PDF files with others. The file URL will likely expire by the time it’s shared.</span></p>\n<p><span style=\"font-weight: 400\">We highly recommend </span><a href=\"https://preventdirectaccess.com/extensions/private-magic-links/?utm_source=oceanwp&amp;utm_medium=content_link&amp;utm_campaign=guestpost&amp;utm_content=no6\"><span style=\"font-weight: 400\">“Private Magic Links” plugin</span></a><span style=\"font-weight: 400\"> as it works magically for both WordPress page/post and file URLs. Simply embed your file URL into your content as normal. The plugin will take care of the rest. First, it converts the original file URL into a private one, which is not indexed by Google, then expires the link in a preset time. After a period of time say 5 seconds, the plugin automatically creates a new one to replace the expired link and so on.</span></p>\n<h2><span style=\"font-weight: 400\">#7 Use a PDF Viewer to Embed &amp; Protect PDF Files</span></h2>\n<p><span style=\"font-weight: 400\">Last but not least, you can use a WordPress</span> <span style=\"font-weight: 400\">PDF viewer plugin to embed your documents directly into website content. In other words, your subscribers and paid members have to go to your website to view the PDF files instead of just getting direct download links, which they can copy and then share them with others.</span></p>\n<p><img class=\"alignnone size-full wp-image-171203\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/pdf-embedder-plugin.png\" alt=\"\" width=\"641\" height=\"254\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/pdf-embedder-plugin.png 641w, //oceanwp.org/wp-content/uploads/2018/07/pdf-embedder-plugin-300x119.png 300w\" sizes=\"(max-width: 641px) 100vw, 641px\" /></p>\n<p><span style=\"font-weight: 400\">These PDF viewer plugins provide your visitors with a </span><span style=\"font-weight: 400\">simple but elegant viewer</span><span style=\"font-weight: 400\">, and at the same time, prevent them from sharing and downloading documents. For example, </span><a href=\"http://bwps.us/wp-admin/plugin-install.php?s=PDF+Embedder&amp;tab=search&amp;type=term\"><span style=\"font-weight: 400\">PDF Embedder</span></a><b>,</b><span style=\"font-weight: 400\"> one of the most popular WordPress</span> <span style=\"font-weight: 400\">PDF viewer plugins with more than 100,000 active installs, enables you to embed your PDF files into virtually any WordPress pages or posts. Its premium version adds on a secure option that makes it much more difficult for users to download the original PDF document. </span></p>\n<h3><span style=\"font-weight: 400\">How to embed PDF file directly into content using PDF Embedder plugin:</span></h3>\n<ol>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Download and install </span><a href=\"http://bwps.us/wp-admin/plugin-install.php?s=PDF+Embedder&amp;tab=search&amp;type=term\"><span style=\"font-weight: 400\">PDF Embedder</span></a><span style=\"font-weight: 400\"> plugin.</span></li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Upload the PDF file that you want to protect into WordPress Media library</span></li>\n<li style=\"font-weight: 400\">Select and insert a PDF file into your page/post using “Add Media”. Once selected, a shortcode is generated by PDF Embedder that displays your chosen PDF file content directly on your WordPress page or post.</li>\n</ol>\n<h2><span style=\"font-weight: 400\">Wrapping Up</span></h2>\n<p><span style=\"font-weight: 400\">There are many ways to protect WordPress PDF files. You can either block these PDF file URLs directly or restrict access to WordPress post/page that contains these documents. There are 3 common ways to prevent direct access to your content, namely, password protecting, expiring and changing their URLs and restricting their access using a membership plugin. The main drawback of these methods is your attached PDF files are actually not protected. As a result, people could still access and share these private PDF documents.</span></p>\n<p><span style=\"font-weight: 400\">The other and arguably better solution is to block direct file access to these PDF documents. You can protect your PDF file downloads through password with Download Monitor Plugin. Better yet, use </span><a href=\"https://preventdirectaccess.com/pricing/?utm_source=oceanwp&amp;utm_medium=content_link1&amp;utm_campaign=guestpost&amp;utm_content=conclusion\"><span style=\"font-weight: 400\">Prevent Direct Access Gold plugin</span></a><span style=\"font-weight: 400\"> to protect your PDF files more comprehensively. It not only blocks direct access to your private PDF files but also blocks search indexing so that people won’t be able to find your PDF files on Google search results.</span></p>\n<p><span style=\"font-weight: 400\">To conclude, it’s highly recommended that you use these 2 methods together for better security: restrict access to your content, and at the same time, protect your attached PDF files. You can use Ultimate Members to create a membership website and Prevent Direct Access Gold to protect your PDF files. Alternatively, if you don’t need a membership site, use </span><a href=\"https://preventdirectaccess.com/protect-wordpress-pages-posts/?utm_source=oceanwp&amp;utm_medium=content_link2&amp;utm_campaign=guestpost&amp;utm_content=conclusion\"><span style=\"font-weight: 400\">Protect WordPress Pages &amp; Posts</span></a><span style=\"font-weight: 400\"> plugin instead.</span></p>\n<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/7-ways-to-protect-wordpress-pdf-files/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://oceanwp.org/7-ways-to-protect-wordpress-pdf-files/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"How to Create Dynamic Slides with Smart Slider 3 in OceanWP?\";s:7:\"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://oceanwp.org/create-dynamic-slides-smart-slider-3-oceanwp/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://oceanwp.org/create-dynamic-slides-smart-slider-3-oceanwp/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Jul 2018 13:06: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Introducing\";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:\"Tutorial\";s:7:\"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://oceanwp.org/?p=158239\";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:1240:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/create-dynamic-slides-smart-slider-3-oceanwp/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/07/smartsliderfeatured.png\" width=\"1200\" height=\"600\" title=\"How to Create Dynamic Slides with Smart Slider 3 in OceanWP?\" alt=\"How to Create Dynamic Slides with Smart Slider 3 in OceanWP?\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\">Adding a slider to your website can be a good choice because that makes the first impression for your visitors. But after you’ve decided that you want to add sliders to your WordPress page, how do you know which one you should  choose? Can you use it freely? Is it simple to manage? Can you [&#8230;]<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/create-dynamic-slides-smart-slider-3-oceanwp/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Bernadett Toth\";s: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:21845:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/create-dynamic-slides-smart-slider-3-oceanwp/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/07/smartsliderfeatured.png\" width=\"1200\" height=\"600\" title=\"How to Create Dynamic Slides with Smart Slider 3 in OceanWP?\" alt=\"How to Create Dynamic Slides with Smart Slider 3 in OceanWP?\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\"><p>Adding a slider to your website can be a good choice because that makes the first impression for your visitors. But after you’ve decided that you want to add sliders to your WordPress page, how do you know which one you should  choose? Can you use it freely? Is it simple to manage? Can you put it into your site easily? </p>\n<p>The answer for all your questions is yes, it’s possible, Smart Slider 3 can do all of these: it is completely free, user friendly and it works well with your OceanWP Theme as well.</p>\n<p>In this tutorial, I am going to show you how you can import a demo Slider, make your own Smart Slider, and how you can create a Dynamic Post slider using the OceanWP Theme.</p>\n<h2>Installing Smart Slider 3</h2>\n<p>You can easily install Smart Slider 3 when you go to <b>Plugins </b>→ <b>Add new</b>. Search for Smart Slider 3 and after that you can install it.</p>\n<p><img class=\"alignnone size-full wp-image-158697\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/InstallSmartSlider3.png\" alt=\"\" width=\"1098\" height=\"494\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/InstallSmartSlider3.png 1098w, //oceanwp.org/wp-content/uploads/2018/07/InstallSmartSlider3-300x135.png 300w, //oceanwp.org/wp-content/uploads/2018/07/InstallSmartSlider3-768x346.png 768w, //oceanwp.org/wp-content/uploads/2018/07/InstallSmartSlider3-1024x461.png 1024w\" sizes=\"(max-width: 1098px) 100vw, 1098px\" /></p>\n<p>Other option is that you can directly download it from the <a href=\"https://smartslider3.com/free-wordpress-slider/\" target=\"_blank\">Smart Slider 3</a> website and then you can upload it. </p>\n<p>After that you can activate Smart Slider 3:</p>\n<p><img class=\"size-full wp-image-158251 aligncenter\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/ActivateSmartSlider3.png\" alt=\"Activate Smart Slider 3\" width=\"562\" height=\"266\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/ActivateSmartSlider3.png 562w, //oceanwp.org/wp-content/uploads/2018/07/ActivateSmartSlider3-300x142.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<h2>How can I Create my first Slide?</h2>\n<p>Importing a demo slider is great, but I would like to show you how you can make your own slider. I will show you how I build the first slide of a Full Width example slider.</p>\n<p><img class=\"alignnone size-full wp-image-158701\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/FullWidthExampleSlider.png\" alt=\"Full Width Example Slider\" width=\"1894\" height=\"597\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/FullWidthExampleSlider.png 1894w, //oceanwp.org/wp-content/uploads/2018/07/FullWidthExampleSlider-300x95.png 300w, //oceanwp.org/wp-content/uploads/2018/07/FullWidthExampleSlider-768x242.png 768w, //oceanwp.org/wp-content/uploads/2018/07/FullWidthExampleSlider-1024x323.png 1024w\" sizes=\"(max-width: 1894px) 100vw, 1894px\" /></p>\n<p>First I choose the <b>New Slider</b> option on the dashboard and after that I choose the <b>full width</b> mode in a pop-up window.</p>\n<p><img class=\"size-full wp-image-158710 aligncenter\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/CreateSlider.png\" alt=\"Create Slider\" width=\"545\" height=\"517\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/CreateSlider.png 545w, //oceanwp.org/wp-content/uploads/2018/07/CreateSlider-300x285.png 300w\" sizes=\"(max-width: 545px) 100vw, 545px\" /></p>\n<p>I set the slider size to 1200x600px and then I create my slider.</p>\n<p>After that I add an empty slide, which has a linear gradient background color, so I set it in the <b>Slide settings</b> → <b>background tab</b>.</p>\n<p><img class=\"size-full wp-image-158711 aligncenter\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/SliderBackground.png\" alt=\"Add backgorund color to the Slider\" width=\"602\" height=\"438\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/SliderBackground.png 602w, //oceanwp.org/wp-content/uploads/2018/07/SliderBackground-300x218.png 300w\" sizes=\"(max-width: 602px) 100vw, 602px\" /></p>\n<p>For building the slide I will use 2 different editing modes. One of them is the <b>Content mode</b> which works like a page builder, and you can build your slides quickly, and it has a great responsive behaviour. The other editing mode is the <b>Canvas mode</b>, where you can drag your layers anywhere but you should take care of the positioning and the responsivity.</p>\n<p>On the original slider you can see that the content is on the left: the heading, the text and 2 buttons, and in the right side there is a laptop picture and on this picture there is a YouTube video layer. This image and video will be set in the canvas mode because in this mode you can put a layer above or below another layer. </p>\n<p>I set a max-width to the content because I don’t want a full width text in a line without break, and I don’t need the content in the right side &#8211; the video will be there. So I’ll position it to the left. And then I drop the Header, text layer, and the the buttons into the content. I set a little more left padding as on the other sides and between the layers I put little margin. </p>\n<p>After that I go to the Design tab on the layer settings and set the color of the font and the font-family as well. To the Download button I give a download link, and set a hover effect.</p>\n<p><img class=\"size-full wp-image-158712 aligncenter\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/LayerSettingsDesign.png\" alt=\"Layer Settings Design\" width=\"352\" height=\"559\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/LayerSettingsDesign.png 352w, //oceanwp.org/wp-content/uploads/2018/07/LayerSettingsDesign-189x300.png 189w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></p>\n<p>There is as lot of options to design your own layer and you can make it responsive as well, for example you can set padding with an “em” value, so on mobile devices these settings will be  good as well.</p>\n<p>Now the content is ready.</p>\n<p><img class=\"alignnone size-full wp-image-158714\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/SliderSettingsContent.png\" alt=\"Slider Settings Content\" width=\"1703\" height=\"815\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/SliderSettingsContent.png 1703w, //oceanwp.org/wp-content/uploads/2018/07/SliderSettingsContent-300x144.png 300w, //oceanwp.org/wp-content/uploads/2018/07/SliderSettingsContent-768x368.png 768w, //oceanwp.org/wp-content/uploads/2018/07/SliderSettingsContent-1024x490.png 1024w\" sizes=\"(max-width: 1703px) 100vw, 1703px\" /></p>\n<p>I have just 2 steps to finish: I put the Laptop image and the YouTube video layer in Canvas mode into the slide. I simply drag it into the right side and adjust them.</p>\n<p><img class=\"alignnone size-full wp-image-158715\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/InsertAnImageLayer.png\" alt=\"Insert An Image Layer\" width=\"1377\" height=\"706\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/InsertAnImageLayer.png 1377w, //oceanwp.org/wp-content/uploads/2018/07/InsertAnImageLayer-300x154.png 300w, //oceanwp.org/wp-content/uploads/2018/07/InsertAnImageLayer-768x394.png 768w, //oceanwp.org/wp-content/uploads/2018/07/InsertAnImageLayer-1024x525.png 1024w\" sizes=\"(max-width: 1377px) 100vw, 1377px\" /></p>\n<p>I think this laptop + video combination is not so important for appearing in the mobile devices, so I switch off the mobile view.</p>\n<p>Now I check it in the responsive views and I can see that the Heading and the text layer are bigger than what I want, so I set a lower value to this with the font size scaler.</p>\n<p><img class=\"alignnone size-full wp-image-158717\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/FontSizeScalingOnTablet.png\" alt=\"Font Size Scaling On Tablet\" width=\"946\" height=\"593\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/FontSizeScalingOnTablet.png 946w, //oceanwp.org/wp-content/uploads/2018/07/FontSizeScalingOnTablet-300x188.png 300w, //oceanwp.org/wp-content/uploads/2018/07/FontSizeScalingOnTablet-768x481.png 768w\" sizes=\"(max-width: 946px) 100vw, 946px\" /></p>\n<p>Now I’m ready with the first slide. If I would like to use more slides for my slider, it’s enough if I duplicate this slider and change the video or the picture and replace the text, because the structure is already done, so I don’t have to begin it from the first step.</p>\n<h2>How can I make a live post slider to my homepage?</h2>\n<p>If you would like to highlight your post it’s a good idea to make a slider from your post, which contains the most important information: for example the title, the post date and a picture which you can draw the attention of your visitors and make them read it.</p>\n<p>With Smart Slider 3 you can make a dynamic-change slider from a post, so your website can live, because if you share a new post, the slider changes automatically.</p>\n<p>I’ll show you an example how you can set it. </p>\n<p>After I’ve imported the full width WordPress Post Slider template, I’ll add a new dynamic slide, where I’ll choose Post by filter option.</p>\n<p><img class=\"size-full wp-image-158718 aligncenter\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/CreateDynamicPostSlider.png\" alt=\"Create Dynamic Post Slider\" width=\"602\" height=\"262\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/CreateDynamicPostSlider.png 602w, //oceanwp.org/wp-content/uploads/2018/07/CreateDynamicPostSlider-300x131.png 300w\" sizes=\"(max-width: 602px) 100vw, 602px\" /></p>\n<p>I choose a category and I order it by Post date. I set 3 slides, so the last 3 Post will appear in my slider in the chosen category.</p>\n<p><img class=\"alignnone size-full wp-image-158719\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/GeneratorSettings.png\" alt=\"Generator Settings\" width=\"732\" height=\"804\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/GeneratorSettings.png 732w, //oceanwp.org/wp-content/uploads/2018/07/GeneratorSettings-273x300.png 273w\" sizes=\"(max-width: 732px) 100vw, 732px\" /></p>\n<p>Then I save it and I can customize my post slider.</p>\n<p>By default only the Title with the featured image appears. But this isn’t what I need, I would like to use the sample template what I’ve imported. You can make it in 3 steps:</p>\n<p><b>Step 1:</b> Copy the sample slide</p>\n<p><img class=\"alignnone size-full wp-image-158720\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/CopySlide.png\" alt=\"Copy Slide\" width=\"1243\" height=\"639\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/CopySlide.png 1243w, //oceanwp.org/wp-content/uploads/2018/07/CopySlide-300x154.png 300w, //oceanwp.org/wp-content/uploads/2018/07/CopySlide-768x395.png 768w, //oceanwp.org/wp-content/uploads/2018/07/CopySlide-1024x526.png 1024w\" sizes=\"(max-width: 1243px) 100vw, 1243px\" /></p>\n<p><b>Step 2</b>: Paste it into the dynamic slide</p>\n<p><img class=\"alignnone size-full wp-image-158721\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/PasteSlide.png\" alt=\"Paste Slide\" width=\"1239\" height=\"639\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/PasteSlide.png 1239w, //oceanwp.org/wp-content/uploads/2018/07/PasteSlide-300x155.png 300w, //oceanwp.org/wp-content/uploads/2018/07/PasteSlide-768x396.png 768w, //oceanwp.org/wp-content/uploads/2018/07/PasteSlide-1024x528.png 1024w\" sizes=\"(max-width: 1239px) 100vw, 1239px\" /></p>\n<p><b>Step 3</b>: Change the background image to the featured image, and it will change dynamically.</p>\n<p><img class=\"size-full wp-image-158722 aligncenter\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/BackgroundVariable.png\" alt=\"Background Variable\" width=\"520\" height=\"63\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/BackgroundVariable.png 520w, //oceanwp.org/wp-content/uploads/2018/07/BackgroundVariable-300x36.png 300w\" sizes=\"(max-width: 520px) 100vw, 520px\" /></p>\n<p>And you get the theme and the background for your dynamics slide:</p>\n<p><img class=\"alignnone size-full wp-image-158723\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/DynamicBackground.png\" alt=\"Dynamic Background\" width=\"1199\" height=\"598\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/DynamicBackground.png 1199w, //oceanwp.org/wp-content/uploads/2018/07/DynamicBackground-300x150.png 300w, //oceanwp.org/wp-content/uploads/2018/07/DynamicBackground-768x383.png 768w, //oceanwp.org/wp-content/uploads/2018/07/DynamicBackground-1024x511.png 1024w\" sizes=\"(max-width: 1199px) 100vw, 1199px\" /></p>\n<p>Similarly, you can set a dynamic variable for the layers in the layer settings. So you can insert a lot of variables such as title, date, the content, or you can link to the post as well.</p>\n<p><img class=\"size-full wp-image-158724 aligncenter\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/TitleVariable.png\" alt=\"Title Variable\" width=\"355\" height=\"149\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/TitleVariable.png 355w, //oceanwp.org/wp-content/uploads/2018/07/TitleVariable-300x126.png 300w\" sizes=\"(max-width: 355px) 100vw, 355px\" /></p>\n<p>You can setup these variables, for example I have set that the dynamic text layer shows only 100 character of my content.</p>\n<p><img class=\"alignnone size-full wp-image-158725\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/InsertVariable.png\" alt=\"Insert Variable\" width=\"993\" height=\"590\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/InsertVariable.png 993w, //oceanwp.org/wp-content/uploads/2018/07/InsertVariable-300x178.png 300w, //oceanwp.org/wp-content/uploads/2018/07/InsertVariable-768x456.png 768w\" sizes=\"(max-width: 993px) 100vw, 993px\" /></p>\n<p>After you’ve made your dynamic post slider, you need to insert it into your OceanWP theme.</p>\n<p><img class=\"alignnone size-full wp-image-158726\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/PostSliderReady.gif\" alt=\"\" width=\"1190\" height=\"591\" /></p>\n<h2>How can I import a ready-to-use Slider?</h2>\n<p>After you’ve activated Smart Slider 3, you can go to the Smart Slider 3 menu, and there you will see the dashboard. You can add a New Slider or you can choose a template from the Template Library here. If you would like to create a slider fast, the easiest way is importing a demo Slider.</p>\n<p><img class=\"alignnone size-full wp-image-158730\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/SmartSlider3Dashboard.png\" alt=\"Smart Slider 3 Dashboard\" width=\"1738\" height=\"898\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/SmartSlider3Dashboard.png 1738w, //oceanwp.org/wp-content/uploads/2018/07/SmartSlider3Dashboard-300x155.png 300w, //oceanwp.org/wp-content/uploads/2018/07/SmartSlider3Dashboard-768x397.png 768w, //oceanwp.org/wp-content/uploads/2018/07/SmartSlider3Dashboard-1024x529.png 1024w\" sizes=\"(max-width: 1738px) 100vw, 1738px\" /></p>\n<p>Smart Slider 3 has free demo sliders what you can easily add to your page.</p>\n<p>In the <b>Template library</b> you can choose the slider what you would like to use, just click on the Import button, and the theme will be downloaded to your dashboard and you can customize it.</p>\n<p><img class=\"alignnone size-full wp-image-158728\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/ImportSliderFromTheTemplateLibrary.png\" alt=\"Import Slider From The Template Library\" width=\"1164\" height=\"455\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/ImportSliderFromTheTemplateLibrary.png 1164w, //oceanwp.org/wp-content/uploads/2018/07/ImportSliderFromTheTemplateLibrary-300x117.png 300w, //oceanwp.org/wp-content/uploads/2018/07/ImportSliderFromTheTemplateLibrary-768x300.png 768w, //oceanwp.org/wp-content/uploads/2018/07/ImportSliderFromTheTemplateLibrary-1024x400.png 1024w\" sizes=\"(max-width: 1164px) 100vw, 1164px\" /></p>\n<h2>Using demo slides</h2>\n<p>After you’ve added a new slider or imported one from the templates, you can add more slides to your slider. Just click to <b>Add Slide</b> button.</p>\n<p>There are a lot of options to make an image, video or empty slider and you can add Post and Dynamic sliders as well, or you can choose Static Overlay, which means that it will be always over your slider and slides, and it won&#8217;t switch away. For example it is a good way to make a navigation.</p>\n<p><img class=\"alignnone size-full wp-image-158732\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/SlideLibrary.png\" alt=\"Slide Library\" width=\"1090\" height=\"178\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/SlideLibrary.png 1090w, //oceanwp.org/wp-content/uploads/2018/07/SlideLibrary-300x49.png 300w, //oceanwp.org/wp-content/uploads/2018/07/SlideLibrary-768x125.png 768w, //oceanwp.org/wp-content/uploads/2018/07/SlideLibrary-1024x167.png 1024w\" sizes=\"(max-width: 1090px) 100vw, 1090px\" /></p>\n<p>You are able to use demo slides on your slider as well, there are a lot of prepared templates which you can customize. Click on the <b>Library</b> option and choose the template which you are going to use.</p>\n<p><img class=\"alignnone size-full wp-image-158733\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/ImportFromSliderLibrary.png\" alt=\"Import From Slide Library\" width=\"1164\" height=\"237\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/ImportFromSliderLibrary.png 1164w, //oceanwp.org/wp-content/uploads/2018/07/ImportFromSliderLibrary-300x61.png 300w, //oceanwp.org/wp-content/uploads/2018/07/ImportFromSliderLibrary-768x156.png 768w, //oceanwp.org/wp-content/uploads/2018/07/ImportFromSliderLibrary-1024x208.png 1024w\" sizes=\"(max-width: 1164px) 100vw, 1164px\" /></p>\n<p>You can switch between dark or light Skin and select from the categories as well. And after you can customize your slide, you can change everything, the heading, text, layer and the background as well.</p>\n<h2>How can I insert my Slider to my OceanWP Theme?</h2>\n<p>Inserting Smart Slider 3 in your OceanWP Theme is very simple:</p>\n<p>You can use the shortcode of the slider, and easily copy and paste it into a post or page.</p>\n<p><img class=\"alignnone size-full wp-image-158734\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/InsertShortcode.png\" alt=\"Insert Smart Slider 3 with Shortcode\" width=\"694\" height=\"266\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/InsertShortcode.png 694w, //oceanwp.org/wp-content/uploads/2018/07/InsertShortcode-300x115.png 300w\" sizes=\"(max-width: 694px) 100vw, 694px\" /></p>\n<p>Or with OceanWP Extra plugin in OceanWP Settings you can put your slider before/after the top bar, header, title or footer.</p>\n<p>And there is another option, you can customize it with Elementor or other page builders by using the Smart Slider 3 widget.</p>\n<h2>How to make a custom header with Smart Slider 3?</h2>\n<p>By making a custom header you can use a page builder, which I think is the easiest way.</p>\n<p>Just navigate to the <b>Theme Panel</b> → <b>My library</b> tab, then click <b>Add New</b>. (To the Theme Panel you need the Ocean Extra plugin, so you should add and activate this recommended plugin.) If you use Elementor page builder, choose Elementor Canvas template in Post Attributes, and after that you can add your slider into your theme.</p>\n<p><img class=\"alignnone size-full wp-image-158735\" src=\"https://oceanwp.org/wp-content/uploads/2018/07/InsertSliderWithElementor.png\" alt=\"Insert Slider With Elementor\" width=\"1712\" height=\"429\" srcset=\"//oceanwp.org/wp-content/uploads/2018/07/InsertSliderWithElementor.png 1712w, //oceanwp.org/wp-content/uploads/2018/07/InsertSliderWithElementor-300x75.png 300w, //oceanwp.org/wp-content/uploads/2018/07/InsertSliderWithElementor-768x192.png 768w, //oceanwp.org/wp-content/uploads/2018/07/InsertSliderWithElementor-1024x257.png 1024w\" sizes=\"(max-width: 1712px) 100vw, 1712px\" /></p>\n<p>When you are ready with the settings, navigate to the <b>Appearance → Customize menu → Header → General</b>, and choose your <b>Custom Header</b>. And now you have an own custom header.</p>\n<p>Without page builder you can make a Template in the Theme Panel as well by using shortcode.</p>\n<h2>Exclusive Offer</h2>\n<p>Installing Smart Slider 3 on a WordPress website with OceanWP theme gives you access to a suite of powerful tools for creating custom content for your website. Now you can get <strong>30% off</strong> when you purchase <a href=\"https://smartslider3.com/pricing/?coupon=SMARTSLIDEROCEANWP30\" rel=\"noopener\" target=\"_blank\">Smart Slider 3 Pro</a> if you use the coupon SMARTSLIDEROCEANWP30 during the checkout.</p>\n<p>The offer is exclusive and the coupon code is available for a limited time only. It starts on <strong>July 10, 2018 and ends on July 17, 2018</strong> so grab your Smart Slider 3 Pro copy quickly!</p>\n<h2>Final Thoughts</h2>\n<p>Sliders can be used in a number of ways, you should decide what you would like to get. And there are a lot of functions, what  I didn’t write about. In Pro version, making a slider is more exciting because of the animations, the new layers, the parallax effects, shape divider effects and a lot of dynamic generators such as Facebook or Instagram, by which you can make your website live.</p>\n<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/create-dynamic-slides-smart-slider-3-oceanwp/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://oceanwp.org/create-dynamic-slides-smart-slider-3-oceanwp/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:42:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"How to Generate More Email Subscriptions With the Same Traffic Volume (A beginner’s Guide to Lead Magnets)\";s:7:\"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://oceanwp.org/generate-email-subscriptions-traffic-volume-beginners-guide-lead-magnets/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://oceanwp.org/generate-email-subscriptions-traffic-volume-beginners-guide-lead-magnets/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2018 15:36: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:\"Introducing\";s:7:\"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://oceanwp.org/?p=153946\";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:1429:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/generate-email-subscriptions-traffic-volume-beginners-guide-lead-magnets/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-1.png\" width=\"1200\" height=\"600\" title=\"How to Generate More Email Subscriptions With the Same Traffic Volume (A beginner’s Guide to Lead Magnets)\" alt=\"How to Generate More Email Subscriptions With the Same Traffic Volume (A beginner’s Guide to Lead Magnets)\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\">You might be tired of hearing people tell you that you &#8220;need to build an email list&#8221;. But you see this advice so much for a reason. For any business, email marketing is one of the top-performing channels, with an impressive median ROI of 122%. Basically &#8211; it&#8217;s hard to ignore! But despite email marketing&#8217;s [&#8230;]<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/generate-email-subscriptions-traffic-volume-beginners-guide-lead-magnets/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Nina De la Cruz\";s: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:18370:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/generate-email-subscriptions-traffic-volume-beginners-guide-lead-magnets/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-1.png\" width=\"1200\" height=\"600\" title=\"How to Generate More Email Subscriptions With the Same Traffic Volume (A beginner’s Guide to Lead Magnets)\" alt=\"How to Generate More Email Subscriptions With the Same Traffic Volume (A beginner’s Guide to Lead Magnets)\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\"><p>You might be tired of hearing people tell you that you &#8220;need to build an email list&#8221;. But you see this advice so much for a reason. For any business, email marketing is one of the top-performing channels, with an impressive <u><a href=\"https://www.business2community.com/email-marketing/email-marketing-statistics-guide-email-strategy-2018-01984125\">median ROI of 122%</a></u>. Basically &#8211; it&#8217;s hard to ignore!</p>\n<p>But despite email marketing&#8217;s effectiveness, a lot of businesses struggle to actually build their list in the first place. In fact, most websites using a generic email opt-in form convert <strong>less than 2% of visitors</strong>. Yikes! For a business owner, that’s a lot of cash left on the table.</p>\n<p><strong>So, how do you get more opt-ins </strong>from the traffic you&#8217;re already receiving?</p>\n<p>One proven method is <strong>lead magnets.</strong></p>\n<p style=\"text-align: center\"><em><img class=\"aligncenter wp-image-153909 size-large\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/west-elm-1024x604.jpg\" alt=\"Lead Magnet from West Elm\" width=\"1024\" height=\"604\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/west-elm-1024x604.jpg 1024w, //oceanwp.org/wp-content/uploads/2018/06/west-elm-300x177.jpg 300w, //oceanwp.org/wp-content/uploads/2018/06/west-elm-768x453.jpg 768w, //oceanwp.org/wp-content/uploads/2018/06/west-elm.jpg 1474w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />West Elm store sends a 15% discount coupon code to your email after you subscribe</em></p>\n<p>A lead magnet is something valuable you offer to website visitors in exchange for their email addresses. Like a discount or free shipping provided by ecommerce stores after a sign-up. But lead magnets go beyond just &#8220;bribing&#8221; your visitors with discounts. You can also share special content, like a video, PDF, or even an Excel sheet.</p>\n<p>For example, look at how <a href=\"https://diggitymarketing.com/blog/\" rel=\"noopener\" target=\"_blank\">SEO expert Matt Diggity</a> uses his Backlink Blueprint to boost his email list:</p>\n<p><img class=\"size-large wp-image-153911 aligncenter\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/matt-diggity-1024x710.jpg\" alt=\"An example of a lead magnet by Matt Diggity\" width=\"1024\" height=\"710\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/matt-diggity-1024x710.jpg 1024w, //oceanwp.org/wp-content/uploads/2018/06/matt-diggity-300x208.jpg 300w, //oceanwp.org/wp-content/uploads/2018/06/matt-diggity-768x533.jpg 768w, //oceanwp.org/wp-content/uploads/2018/06/matt-diggity.jpg 1270w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p>In the rest of this article, you&#8217;ll learn how you can create list-boosting lead magnets for your own site, complete with plenty of real-life examples for inspiration!</p>\n<h2>What makes an effective lead magnet?</h2>\n<p>Some marketers compare lead magnets to ethical bribes. That’s because to work well, they should be irresistible. To show just how irresistible (and therefore efficient) some of the lead magnets may be, <u><a href=\"https://www.matthewwoodward.co.uk/tutorials/increase-email-subscribers/\">here is a brilliant case study</a></u> shared by Matthew Woodward. He managed to increase his email conversion rate by 469% &#8211; from 1,07% to 5,81% &#8211; practically overnight.</p>\n<p>So, what’s the science behind lead magnets? And what makes the big difference between the good ones and the great ones? Three things:</p>\n<ul>\n<li>Specificity</li>\n<li>Instant value</li>\n<li>Unique knowledge.</li>\n</ul>\n<h3>Specificity</h3>\n<p>As a rule of thumb, the more your magnet is tailored to your audience, the better it performs. So, instead of offering a generic piece of content or a broad set of tools, you should prepare a laser-focused solution to a specific problem you know your visitors have. Ebooks are great, but sometimes a specific one-pager with a list of actionable ideas and resources can be even more effective.</p>\n<p>Compare these two incentives:</p>\n<p>“Everything you need to know to become a freelancer” vs “5 websites to find your first freelance gig today”.</p>\n<p>The second one sure sounds more appealing because we know exactly what to expect, and someone who&#8217;s dying to become a freelancer is going to jump at that incentive because they want their first job <strong>now</strong>.</p>\n<p style=\"text-align: center\"><em><img class=\"alignnone size-large wp-image-153919\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/createandgo-1024x711.jpg\" alt=\"\" width=\"1024\" height=\"711\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/createandgo-1024x711.jpg 1024w, //oceanwp.org/wp-content/uploads/2018/06/createandgo-300x208.jpg 300w, //oceanwp.org/wp-content/uploads/2018/06/createandgo-768x533.jpg 768w, //oceanwp.org/wp-content/uploads/2018/06/createandgo.jpg 1310w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />Create and Go offers a step-by-step course on starting a blog inspired by their own journey</em></p>\n<h3>Instant value</h3>\n<p>People hate waiting. And when it comes to lead magnets, not only do they want immediate delivery, but they also want to make use of them as soon as possible. This is why longer formats – like Ebooks, month-long courses, or webinars scheduled for the next week – may perform poorly in comparison with a discount or a piece of knowledge that can be applied <strong>right away</strong>. And this also explains why offering a newsletter is such a weak “bribe” – it just doesn’t provide instant gratification.</p>\n<p style=\"text-align: center\"><em><img class=\"alignnone size-large wp-image-153920\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/skillcrush-1024x656.jpg\" alt=\"Free Guide to Getting a Remote Job\" width=\"1024\" height=\"656\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/skillcrush-1024x656.jpg 1024w, //oceanwp.org/wp-content/uploads/2018/06/skillcrush-300x192.jpg 300w, //oceanwp.org/wp-content/uploads/2018/06/skillcrush-768x492.jpg 768w, //oceanwp.org/wp-content/uploads/2018/06/skillcrush.jpg 1173w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />SkillCrush offers immediate value to those willing to start working remotely</em></p>\n<h3>Unique (ideally practice-based) knowledge</h3>\n<p>If you ever struggled with finding a solution to a stubborn problem, you probably know how much time can be spent on research alone. The trial and error path is often exhausting and daunting. And when you are in this situation, learning the nuts and bolts of how someone successfully overcame a similar struggle is priceless.</p>\n<p>That’s why unique experience-based knowledge offered in a lead magnet is the strongest trigger for someone to subscribe. A path already walked and validated by an authoritative person saves so much time and energy, its value is incomparably high.</p>\n<p>In fact, if you have that secret sauce you’re willing to trade, you don’t even have to worry about the packaging because it’s the content itself your subscribers care about the most. Look at the famous <u><a href=\"https://bloggerjet.com/email-conversion-rate/\">case study</a></u> from Tim Soulo, where the only thing he promised in exchange for an email is a subject line he used to get the attention of Rand Fishkin – the Founder of Moz.</p>\n<p><em><img class=\"size-large wp-image-153921 aligncenter\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/tim-soulo-1024x618.jpg\" alt=\"Get the email subject that Tim Soulo sent to Rand Fishkin\" width=\"1024\" height=\"618\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/tim-soulo-1024x618.jpg 1024w, //oceanwp.org/wp-content/uploads/2018/06/tim-soulo-300x181.jpg 300w, //oceanwp.org/wp-content/uploads/2018/06/tim-soulo-768x463.jpg 768w, //oceanwp.org/wp-content/uploads/2018/06/tim-soulo.jpg 1082w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></em></p>\n<p style=\"text-align: center\"><em>Tim Soulo, Head of Marketing at Ahrefs spent 20 minutes to prepare this lead magnet and got a solid 8% email opt-in conversion rate</em></p>\n<h2>How to find ideas for a lead magnet</h2>\n<p>Chances are, you already have an image of a customer persona that influences some of your business decisions. And if you do, you should know very well what your audience’s pain points are, and how you can help overcome them.</p>\n<p>If you already have a busy website, you can find inspiration in the emails sent to your customer support team, live chat conversations, and even blog comments. In fact, if you have a blog, go to your Analytics tool and see which pages are the most popular, where people spend the most time reading and actively interacting with the page. The answers will become your gold mine for ideas.</p>\n<p>If you&#8217;ve just started with your website and haven’t had a chance to establish that level of engagement with your audience, you can go ahead and conduct a field study. Niche forums and communities are literally the best places to do that.</p>\n<p>Take Quora as an example. If you go there and type your website topic in the search field, you’ll immediately get dozens of ideas.</p>\n<p><em><img class=\"size-large wp-image-153923 aligncenter\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/quora-example-1024x697.jpg\" alt=\"\" width=\"1024\" height=\"697\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/quora-example-1024x697.jpg 1024w, //oceanwp.org/wp-content/uploads/2018/06/quora-example-300x204.jpg 300w, //oceanwp.org/wp-content/uploads/2018/06/quora-example-768x522.jpg 768w, //oceanwp.org/wp-content/uploads/2018/06/quora-example.jpg 1204w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></em></p>\n<p style=\"text-align: center\"><em>Go to any other niche community to search for questions related to your website topic</em></p>\n<p>Not only will you find out the most pressing questions your target audience has, but you’ll also be able to pick up specific keywords and phrases so that your CTAs (calls to action) will be written in the same exact language your audience uses.</p>\n<h2>Setting up lead magnet delivery</h2>\n<p>Now that you have an idea of what type of a lead magnet might work for your business, here&#8217;s how you can actually implement it.</p>\n<p>First, you may want to choose the way to present a lead magnet. While there are few websites still using static email opt-in forms, you have a higher chance to get your visitors’ attention with a pop-up. It can be triggered by an exit-intent or appear after a user has spent some time on a page – both options will do the job.</p>\n<p style=\"text-align: center\"><em><img class=\"alignnone size-large wp-image-153924\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-2-1024x600.png\" alt=\"GetSiteControl Email subscription pop-up example\" width=\"1024\" height=\"600\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-2.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-2-300x176.png 300w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-2-768x450.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />GetSiteControl email pop-up</em></p>\n<p>In this article, we’ll be using <u><a href=\"https://getsitecontrol.com/subscribe-widget/\">GetSiteControl subscription forms</a></u> as an example, but technically you can use any email opt-in service of your choice.</p>\n<p>GetSiteControl includes multiple tools for user engagement – email, contact, and survey forms, Live Chat, notification bars, and social media buttons. That broadens your capabilities a bit, and overall, having several widgets in a single dashboard is quite convenient.</p>\n<p><img class=\"alignnone size-full wp-image-153936\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/GetSiteControl-toolset.jpg\" alt=\"\" width=\"1019\" height=\"472\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/GetSiteControl-toolset.jpg 1019w, //oceanwp.org/wp-content/uploads/2018/06/GetSiteControl-toolset-300x139.jpg 300w, //oceanwp.org/wp-content/uploads/2018/06/GetSiteControl-toolset-768x356.jpg 768w\" sizes=\"(max-width: 1019px) 100vw, 1019px\" /></p>\n<p>So, going back to lead magnets, there are two easy ways to deliver them.</p>\n<p>First, you can redirect your new subscribers to a hidden post or just any page on a website after they sign up. To do so, you will need to create a form and set up a success message that will appear after someone fills it out. Then, either apply an automatic redirect to another URL or add a link to the message body, as shown in the example below.</p>\n<p><em><img class=\"alignnone size-large wp-image-153925\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-3-1024x646.png\" alt=\"\" width=\"1024\" height=\"646\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-3.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-3-300x189.png 300w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-3-768x485.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></em></p>\n<p style=\"text-align: center\"><em>The Success Page feature allows for delivering lead magnets right on the spot</em></p>\n<p>The second way to deliver a lead magnet involves using an Autoresponder.</p>\n<p>If you use an email marketing service, you must be familiar with this feature. It allows you to create a message that is automatically sent to new subscribers. All you need to do is add a link to the lead magnet to the welcome email body.</p>\n<p>You’ll find integrations with all the popular email marketing apps available in the GetSiteControl dashboard. So, if you already have an autoresponder set up and running with a 3<sup>rd</sup>-party app but want to use GetSiteControl forms for lead generation, just connect it with your email marketing service using the list in the dropdown menu on the right.</p>\n<p><img class=\"size-large wp-image-153926 aligncenter\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-4-1024x718.png\" alt=\"\" width=\"1024\" height=\"718\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-4.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-4-300x210.png 300w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-4-768x539.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p style=\"text-align: center\"><em>Setting up an Autoresponder message in GetSiteControl</em></p>\n<h2>Optimize your lead magnet</h2>\n<p>Once you notice the first spikes in your email opt-in conversion rate, it might be the time to optimize performance and achieve even better results. There are few ways to do it.</p>\n<p><strong>A/B test the lead magnet.</strong> Remember we talked about knowing what your audience wants? Right. The best way to figure this out without asking them directly will be conducting a good old split test. You can offer two different lead magnets or vary the delivery formats (video versus text) to see which one brings more subscriptions.</p>\n<p><strong>Optimize the email opt-in form.</strong> Once you get the winner, why not go an extra mile and A/B test the subscription form itself? Feel free to vary the copy, the call to action, the creative, and even the button if you’d like to find the optimal combination for your lead generation machine.</p>\n<p><img class=\"alignnone size-large wp-image-153927\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-5-1024x512.png\" alt=\"\" width=\"1024\" height=\"512\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-5.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-5-300x150.png 300w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp_img-5-768x384.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p><strong>Create content-specific lead magnets.</strong> This method might be the most time consuming, but it’s been proven to deliver the most impressive results. The trick is to offer different lead magnets on different pages to laser-target your lead magnets and make them more relevant. In other words, you should offer SEO-related lead magnets on the pages about SEO, email marketing lead magnets on the pages with email marketing related content – you got the idea.</p>\n<p>Single post specific lead magnets are called “content upgrades”. That means you are supposed to create unique bonuses for each blog post. But before thinking about how much time this amount of work may take you, check out <u><a href=\"https://backlinko.com/increase-conversions\">this detailed Backlinko case study on content upgrades</a></u> converting at 65% and remember that it’s well worth the effort.</p>\n<h2>Wrapping up</h2>\n<p>Magnets can be a lead generation powerhouse. The best part about them? You can use almost anything to attract new subscribers: Ebooks, cheat sheets, toolkits, blueprints, reports, courses, webinars, videos, discounts, a free version of your software, early access to beta, or even your personal time (yes, I’ve seen some consultants using this incentive!).</p>\n<p>At the end of the day, it’s not about the format – but about the value you provide.</p>\n<p>And if you ever hesitate to give something away for free, just remember about the efficiency of email marketing and think of lead magnets as one of your greatest investments.</p>\n<p>Are you using lead magnets on your website or just thinking about creating the first one? Share your thoughts in the comments below!</p>\n<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/generate-email-subscriptions-traffic-volume-beginners-guide-lead-magnets/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://oceanwp.org/generate-email-subscriptions-traffic-volume-beginners-guide-lead-magnets/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:42:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"OceanWP is Lightning Fast on Cloudways [Stats Inside]\";s:7:\"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://oceanwp.org/oceanwp-lightning-fast-cloudways/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://oceanwp.org/oceanwp-lightning-fast-cloudways/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Jun 2018 18:43: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Introducing\";s:7:\"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://oceanwp.org/?p=145464\";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:1257:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/oceanwp-lightning-fast-cloudways/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/06/cloudways-oceanwp.jpg\" width=\"1200\" height=\"600\" title=\"OceanWP is Lightning Fast on Cloudways [Stats Inside]\" alt=\"OceanWP is Lightning Fast on Cloudways [Stats Inside]\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\">When you think about WordPress website optimization, loading time is one of the top priorities since it is vital for ranking. Every millisecond of your website can help improve your ranking in the search engines.The reason is simple!Google analyzes, classifies and organizes billions of pages of websites. Each page is analyzed via robots, crawler in [&#8230;]<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/oceanwp-lightning-fast-cloudways/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nicolas Lecocq\";s: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:43938:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/oceanwp-lightning-fast-cloudways/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/06/cloudways-oceanwp.jpg\" width=\"1200\" height=\"600\" title=\"OceanWP is Lightning Fast on Cloudways [Stats Inside]\" alt=\"OceanWP is Lightning Fast on Cloudways [Stats Inside]\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\">		<div class=\"elementor elementor-145464\">\n			<div class=\"elementor-inner\">\n				<div class=\"elementor-section-wrap\">\n							<section data-id=\"51e66fd7\" class=\"elementor-element elementor-element-51e66fd7 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-element_type=\"section\">\n						<div class=\"elementor-container elementor-column-gap-default\">\n				<div class=\"elementor-row\">\n				<div data-id=\"1226fad1\" class=\"elementor-element elementor-element-1226fad1 elementor-column elementor-col-100 elementor-top-column\" data-element_type=\"column\">\n			<div class=\"elementor-column-wrap elementor-element-populated\">\n					<div class=\"elementor-widget-wrap\">\n				<div data-id=\"642451bf\" class=\"elementor-element elementor-element-642451bf elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">When you think about WordPress website optimization, loading time is one of the top priorities since it is vital for ranking. Every millisecond of your website can help improve your ranking in the search engines.</div>\n				</div>\n				</div>\n				<div data-id=\"c0d6acf\" class=\"elementor-element elementor-element-c0d6acf elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">The reason is simple!</div>\n				</div>\n				</div>\n				<div data-id=\"fbc76a0\" class=\"elementor-element elementor-element-fbc76a0 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">Google analyzes, classifies and organizes billions of pages of websites. Each page is analyzed via robots, crawler in charge of discovering the pages but also to go and retrieve the information present on them.</div>\n				</div>\n				</div>\n				<div data-id=\"72b558a\" class=\"elementor-element elementor-element-72b558a elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">Google and other search engines allocate maximum crawling time for each site per day. A minimum loading time allows robots to go to browse more pages. The engine thus discovers more pages per day.</div>\n				</div>\n				</div>\n				<div data-id=\"e5998ad\" class=\"elementor-element elementor-element-e5998ad elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>To qualify as a top performer, a WordPress website should not just fast, but also provide the best possible experience for visitors. For instance, here are the few most important factors that help speed up a WordPress website.</p>\n<ul>\n<li>Lightweight WordPress theme</li>\n<li>WordPress hosting provider</li>\n</ul></div>\n				</div>\n				</div>\n						</div>\n			</div>\n		</div>\n						</div>\n			</div>\n		</section>\n				<section data-id=\"14ac3fa9\" class=\"elementor-element elementor-element-14ac3fa9 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-element_type=\"section\">\n						<div class=\"elementor-container elementor-column-gap-default\">\n				<div class=\"elementor-row\">\n				<div data-id=\"7468f001\" class=\"elementor-element elementor-element-7468f001 elementor-column elementor-col-100 elementor-top-column\" data-element_type=\"column\">\n			<div class=\"elementor-column-wrap elementor-element-populated\">\n					<div class=\"elementor-widget-wrap\">\n				<div data-id=\"4ff32ae2\" class=\"elementor-element elementor-element-4ff32ae2 elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h3 class=\"elementor-heading-title elementor-size-default\">The Basics of Optimization</h3>		</div>\n				</div>\n				<div data-id=\"29bace58\" class=\"elementor-element elementor-element-29bace58 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">Most of the WordPress users optimize their websites using cache plugins, optimizing images or WordPress theme but neglect the most important thing, i.e., choosing a specialized WordPress hosting provider as it is a baseline for website optimization.</div>\n				</div>\n				</div>\n				<div data-id=\"99f2b5\" class=\"elementor-element elementor-element-99f2b5 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">We all know that there are multiple types of WordPress hosting providers, everyone claiming to be the fastest but the truth will not be revealed until you try them out.</div>\n				</div>\n				</div>\n						</div>\n			</div>\n		</div>\n						</div>\n			</div>\n		</section>\n				<section data-id=\"4505872\" class=\"elementor-element elementor-element-4505872 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-element_type=\"section\">\n						<div class=\"elementor-container elementor-column-gap-default\">\n				<div class=\"elementor-row\">\n				<div data-id=\"1bf318ee\" class=\"elementor-element elementor-element-1bf318ee elementor-column elementor-col-100 elementor-top-column\" data-element_type=\"column\">\n			<div class=\"elementor-column-wrap elementor-element-populated\">\n					<div class=\"elementor-widget-wrap\">\n				<div data-id=\"468ccc60\" class=\"elementor-element elementor-element-468ccc60 elementor-widget elementor-widget-divider\" data-element_type=\"divider.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-divider\">\n			<span class=\"elementor-divider-separator\"></span>\n		</div>\n				</div>\n				</div>\n				<div data-id=\"5a8c0e94\" class=\"elementor-element elementor-element-5a8c0e94 elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h3 class=\"elementor-heading-title elementor-size-default\">Types of WordPress Hosting Providers</h3>		</div>\n				</div>\n				<div data-id=\"3e87b4bc\" class=\"elementor-element elementor-element-3e87b4bc elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">It is known that Shared Hosting is suitable for small or website having less traffic that does not have much dynamic content nor a growing business. Then we have Dedicated and VPS Hosting providers but managing them is a bit difficult since you need to hire a sysadmin to look after the server for you.</div>\n				</div>\n				</div>\n				<div data-id=\"1b7fd92\" class=\"elementor-element elementor-element-1b7fd92 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>A few days ago, we were honored to be mentioned by <a href=\"https://bit.ly/2kYgpGf\" target=\"_blank\" rel=\"noopener\">Kinsta</a> and we went ahead to help the OceanWP users and the WordPress Community by trying out Cloudways, a <a href=\"https://bit.ly/2rTRtn1\" target=\"_blank\" rel=\"noopener\">WordPress managed hosting</a> solution (you might have heard about them).</p></div>\n				</div>\n				</div>\n						</div>\n			</div>\n		</div>\n						</div>\n			</div>\n		</section>\n				<section data-id=\"8f3162b\" class=\"elementor-element elementor-element-8f3162b elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-element_type=\"section\">\n						<div class=\"elementor-container elementor-column-gap-default\">\n				<div class=\"elementor-row\">\n				<div data-id=\"b27c0d0\" class=\"elementor-element elementor-element-b27c0d0 elementor-column elementor-col-100 elementor-top-column\" data-element_type=\"column\">\n			<div class=\"elementor-column-wrap elementor-element-populated\">\n					<div class=\"elementor-widget-wrap\">\n				<div data-id=\"94f03ce\" class=\"elementor-element elementor-element-94f03ce elementor-widget elementor-widget-divider\" data-element_type=\"divider.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-divider\">\n			<span class=\"elementor-divider-separator\"></span>\n		</div>\n				</div>\n				</div>\n				<div data-id=\"96526ce\" class=\"elementor-element elementor-element-96526ce elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h3 class=\"elementor-heading-title elementor-size-default\">What is Cloudways?</h3>		</div>\n				</div>\n				<div data-id=\"652b953\" class=\"elementor-element elementor-element-652b953 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>Cloudways is an intermediary between you and the cloud provider. It offers you a choice to install WordPress website on a server hosted on Google Cloud, Amazon, DigitalOcean, Vultr, and Linode and charges just a few dollars to maintain the server for you. Not only the maintenance, it also provides live chat support round the clock so that if you have any query, you get the answer at the moment.</p></div>\n				</div>\n				</div>\n						</div>\n			</div>\n		</div>\n						</div>\n			</div>\n		</section>\n				<section data-id=\"eb250d8\" class=\"elementor-element elementor-element-eb250d8 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-element_type=\"section\">\n						<div class=\"elementor-container elementor-column-gap-default\">\n				<div class=\"elementor-row\">\n				<div data-id=\"4c5ceaf\" class=\"elementor-element elementor-element-4c5ceaf elementor-column elementor-col-100 elementor-top-column\" data-element_type=\"column\">\n			<div class=\"elementor-column-wrap elementor-element-populated\">\n					<div class=\"elementor-widget-wrap\">\n				<div data-id=\"1135a66\" class=\"elementor-element elementor-element-1135a66 elementor-widget elementor-widget-divider\" data-element_type=\"divider.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-divider\">\n			<span class=\"elementor-divider-separator\"></span>\n		</div>\n				</div>\n				</div>\n				<div data-id=\"8e7e67b\" class=\"elementor-element elementor-element-8e7e67b elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h3 class=\"elementor-heading-title elementor-size-default\">Why Cloudways?</h3>		</div>\n				</div>\n				<div data-id=\"b142ac7\" class=\"elementor-element elementor-element-b142ac7 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>You might be thinking why I decided to give it a try, right? There are multiple reasons: one of them is that their cloud providers have <a href=\"https://bit.ly/2JLKuDE\" target=\"_blank\" rel=\"noopener\">more than 60 data centers around the globe</a> that helps in reducing latency, which is an important factor to reach target audience effectively.</p></div>\n				</div>\n				</div>\n				<div data-id=\"7091c37\" class=\"elementor-element elementor-element-7091c37 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>Furthermore, you can have a look at <a href=\"https://bit.ly/2yep4h8\" target=\"_blank\" rel=\"noopener\">Cloudways features</a>, a few of them are mentioned below:</p></div>\n				</div>\n				</div>\n				<div data-id=\"c599988\" class=\"elementor-element elementor-element-c599988 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><ul>\n<li>Pre-configured Varnish cache</li>\n<li>Support for PHP 5.6 and 7.x</li>\n<li>MySQL 5.6 &#038; 5.7, support for MariaDB</li>\n<li>WordPress staging environment &#038; temporary URLs</li>\n<li>Application &#038; Server Cloning</li>\n<li>Unlimited sites on one server</li>\n<li>Unlimited servers under one account</li>\n<li>Free SSL certificates</li>\n<li>CloudwaysCDN (MaxCDN/StackPath in affordable pricing)</li>\n<li>Automated backups</li>\n<li>Auto-Healing Servers</li>\n<li>Team Members</li>\n<li>Git integration</li>\n<li>A lot operations can be done in just a few clicks</li>\n</ul></div>\n				</div>\n				</div>\n						</div>\n			</div>\n		</div>\n						</div>\n			</div>\n		</section>\n				<section data-id=\"9d15847\" class=\"elementor-element elementor-element-9d15847 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-element_type=\"section\">\n						<div class=\"elementor-container elementor-column-gap-default\">\n				<div class=\"elementor-row\">\n				<div data-id=\"69d2240\" class=\"elementor-element elementor-element-69d2240 elementor-column elementor-col-100 elementor-top-column\" data-element_type=\"column\">\n			<div class=\"elementor-column-wrap elementor-element-populated\">\n					<div class=\"elementor-widget-wrap\">\n				<div data-id=\"7f4a857\" class=\"elementor-element elementor-element-7f4a857 elementor-widget elementor-widget-divider\" data-element_type=\"divider.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-divider\">\n			<span class=\"elementor-divider-separator\"></span>\n		</div>\n				</div>\n				</div>\n				<div data-id=\"aab5b2d\" class=\"elementor-element elementor-element-aab5b2d elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h3 class=\"elementor-heading-title elementor-size-default\">How to Install WordPress on Cloudways?</h3>		</div>\n				</div>\n				<div data-id=\"ce6ef0c\" class=\"elementor-element elementor-element-ce6ef0c elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">First, we need to launch a server on any of the cloud providers available at Cloudways with WordPress installed. Here is the step by step guide:</div>\n				</div>\n				</div>\n				<div data-id=\"94fe9ad\" class=\"elementor-element elementor-element-94fe9ad elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h3 class=\"elementor-heading-title elementor-size-default\">Step 1: Get an Account</h3>		</div>\n				</div>\n				<div data-id=\"275616f\" class=\"elementor-element elementor-element-275616f elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>First of all you, need to <a href=\"https://bit.ly/2HNXaIq\" target=\"_blank\" rel=\"noopener\">sign up for Cloudways Platform</a> and verify your email address.</p></div>\n				</div>\n				</div>\n				<div data-id=\"298a325\" class=\"elementor-element elementor-element-298a325 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">Use the promo code <strong>OWP20</strong> to get 20% off on your first invoice.</div>\n				</div>\n				</div>\n				<div data-id=\"8025e43\" class=\"elementor-element elementor-element-8025e43 elementor-widget elementor-widget-image\" data-element_type=\"image.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-image\">\n											<a href=\"https://oceanwp.org/wp-content/uploads/2018/06/Signup-at-Cloudways.png\" data-elementor-open-lightbox=\"default\">\n							<img width=\"569\" height=\"617\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/Signup-at-Cloudways.png\" class=\"attachment-full size-full\" alt=\"\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/Signup-at-Cloudways.png 569w, //oceanwp.org/wp-content/uploads/2018/06/Signup-at-Cloudways-277x300.png 277w\" sizes=\"(max-width: 569px) 100vw, 569px\" />								</a>\n											</div>\n				</div>\n				</div>\n				<div data-id=\"cfc7ab5\" class=\"elementor-element elementor-element-cfc7ab5 elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h3 class=\"elementor-heading-title elementor-size-default\">Step 2: Launch Server</h3>		</div>\n				</div>\n				<div data-id=\"26f57ae\" class=\"elementor-element elementor-element-26f57ae elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">After successful signup, the next screen will take you to the simple server launch process. For this guide, I have selected my server and application details as follow:</div>\n				</div>\n				</div>\n				<div data-id=\"185cb2e\" class=\"elementor-element elementor-element-185cb2e elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><ul><li><strong>WordPress</strong> as application</li><li>Named application as <strong>TestOceanWP</strong></li><li>Named server as <strong>TestOceanWP</strong></li><li>Selected default projects</li><li><strong>Linode</strong> as the cloud provider</li><li>Server size: <strong>1GB</strong></li><li>Location: <strong>Fremont</strong></li></ul></div>\n				</div>\n				</div>\n				<div data-id=\"b651e5a\" class=\"elementor-element elementor-element-b651e5a elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>Click <strong>Launch Now</strong> at the bottom right of the screen. It will take a few minutes to launch the desired server on Linode with WordPress installed.</p></div>\n				</div>\n				</div>\n				<div data-id=\"028367b\" class=\"elementor-element elementor-element-028367b elementor-widget elementor-widget-image\" data-element_type=\"image.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-image\">\n											<a href=\"https://oceanwp.org/wp-content/uploads/2018/06/Launching-Linode-1GB-Server-in-Fremont-with-WordPress-Installed.png\" data-elementor-open-lightbox=\"default\">\n							<img width=\"1350\" height=\"670\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/Launching-Linode-1GB-Server-in-Fremont-with-WordPress-Installed.png\" class=\"attachment-full size-full\" alt=\"\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/Launching-Linode-1GB-Server-in-Fremont-with-WordPress-Installed.png 1350w, //oceanwp.org/wp-content/uploads/2018/06/Launching-Linode-1GB-Server-in-Fremont-with-WordPress-Installed-300x149.png 300w, //oceanwp.org/wp-content/uploads/2018/06/Launching-Linode-1GB-Server-in-Fremont-with-WordPress-Installed-768x381.png 768w, //oceanwp.org/wp-content/uploads/2018/06/Launching-Linode-1GB-Server-in-Fremont-with-WordPress-Installed-1024x508.png 1024w\" sizes=\"(max-width: 1350px) 100vw, 1350px\" />								</a>\n											</div>\n				</div>\n				</div>\n				<div data-id=\"9be8be5\" class=\"elementor-element elementor-element-9be8be5 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p><strong>Note:</strong> You don’t need a separate account on Linode to launch server at Cloudways Platform.</p></div>\n				</div>\n				</div>\n				<div data-id=\"a8a6b1d\" class=\"elementor-element elementor-element-a8a6b1d elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h3 class=\"elementor-heading-title elementor-size-default\">Step 3: Access WordPress Website</h3>		</div>\n				</div>\n				<div data-id=\"138c199a\" class=\"elementor-element elementor-element-138c199a elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>Once the server is ready, you will get a temporary/staging URL to test your newly created WordPress site, access it by going to the <strong>Applications</strong> tab from the top menu bar. Once testing is done, you can easily point the domain and take your WordPress website live. Here is how the <strong>Application Management</strong> screen looks like:</p></div>\n				</div>\n				</div>\n				<div data-id=\"b868249\" class=\"elementor-element elementor-element-b868249 elementor-widget elementor-widget-image\" data-element_type=\"image.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-image\">\n											<a href=\"https://oceanwp.org/wp-content/uploads/2018/06/Application-Management-on-Cloudways.png\" data-elementor-open-lightbox=\"default\">\n							<img width=\"1350\" height=\"765\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/Application-Management-on-Cloudways.png\" class=\"attachment-full size-full\" alt=\"\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/Application-Management-on-Cloudways.png 1350w, //oceanwp.org/wp-content/uploads/2018/06/Application-Management-on-Cloudways-300x170.png 300w, //oceanwp.org/wp-content/uploads/2018/06/Application-Management-on-Cloudways-768x435.png 768w, //oceanwp.org/wp-content/uploads/2018/06/Application-Management-on-Cloudways-1024x580.png 1024w\" sizes=\"(max-width: 1350px) 100vw, 1350px\" />								</a>\n											</div>\n				</div>\n				</div>\n				<div data-id=\"1a57fbb\" class=\"elementor-element elementor-element-1a57fbb elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h3 class=\"elementor-heading-title elementor-size-default\">Step 4: Access Your Server</h3>		</div>\n				</div>\n				<div data-id=\"abb6a53\" class=\"elementor-element elementor-element-abb6a53 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>Although Cloudways manages the server for you yet it provides a control room from where you can alter settings at the server level. To access your server, navigate to <strong>Servers</strong> tab from the top-left menu bar and <strong>get into your server</strong>. Here is how the server control room looks like:</p></div>\n				</div>\n				</div>\n				<div data-id=\"193a829\" class=\"elementor-element elementor-element-193a829 elementor-widget elementor-widget-image\" data-element_type=\"image.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-image\">\n											<a href=\"https://oceanwp.org/wp-content/uploads/2018/06/Server-Management-on-Cloudways.png\" data-elementor-open-lightbox=\"default\">\n							<img width=\"1344\" height=\"665\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/Server-Management-on-Cloudways.png\" class=\"attachment-full size-full\" alt=\"\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/Server-Management-on-Cloudways.png 1344w, //oceanwp.org/wp-content/uploads/2018/06/Server-Management-on-Cloudways-300x148.png 300w, //oceanwp.org/wp-content/uploads/2018/06/Server-Management-on-Cloudways-768x380.png 768w, //oceanwp.org/wp-content/uploads/2018/06/Server-Management-on-Cloudways-1024x507.png 1024w\" sizes=\"(max-width: 1344px) 100vw, 1344px\" />								</a>\n											</div>\n				</div>\n				</div>\n				<div data-id=\"ba70148\" class=\"elementor-element elementor-element-ba70148 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">Now let’s start the performance benchmarks!</div>\n				</div>\n				</div>\n						</div>\n			</div>\n		</div>\n						</div>\n			</div>\n		</section>\n				<section data-id=\"5ec52340\" class=\"elementor-element elementor-element-5ec52340 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-element_type=\"section\">\n						<div class=\"elementor-container elementor-column-gap-default\">\n				<div class=\"elementor-row\">\n				<div data-id=\"76f2d73\" class=\"elementor-element elementor-element-76f2d73 elementor-column elementor-col-100 elementor-top-column\" data-element_type=\"column\">\n			<div class=\"elementor-column-wrap elementor-element-populated\">\n					<div class=\"elementor-widget-wrap\">\n				<div data-id=\"23839d6c\" class=\"elementor-element elementor-element-23839d6c elementor-widget elementor-widget-divider\" data-element_type=\"divider.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-divider\">\n			<span class=\"elementor-divider-separator\"></span>\n		</div>\n				</div>\n				</div>\n				<div data-id=\"6dd19958\" class=\"elementor-element elementor-element-6dd19958 elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h3 class=\"elementor-heading-title elementor-size-default\">Performance on Default Settings</h3>		</div>\n				</div>\n				<div data-id=\"724d7e64\" class=\"elementor-element elementor-element-724d7e64 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">Before installing OceanWP, let’s test the speed with the default settings (including Twenty Seventeen Theme) and here is the stable result:</div>\n				</div>\n				</div>\n				<div data-id=\"33a7f91\" class=\"elementor-element elementor-element-33a7f91 elementor-widget elementor-widget-image\" data-element_type=\"image.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-image\">\n											<a href=\"https://oceanwp.org/wp-content/uploads/2018/06/Performance-on-Default-Settings.png\" data-elementor-open-lightbox=\"default\">\n							<img width=\"967\" height=\"306\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/Performance-on-Default-Settings.png\" class=\"attachment-full size-full\" alt=\"\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/Performance-on-Default-Settings.png 967w, //oceanwp.org/wp-content/uploads/2018/06/Performance-on-Default-Settings-300x95.png 300w, //oceanwp.org/wp-content/uploads/2018/06/Performance-on-Default-Settings-768x243.png 768w\" sizes=\"(max-width: 967px) 100vw, 967px\" />								</a>\n											</div>\n				</div>\n				</div>\n				<div data-id=\"b4448f1\" class=\"elementor-element elementor-element-b4448f1 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>One thing to note, Cloudways has its own WordPress cache plugin, <a href=\"https://wordpress.org/plugins/breeze/\" target=\"_blank\" rel=\"noopener\">Breeze</a>, that is fully compatible with their hosting stack and comes pre-installed with WordPress. We keep the default settings and remove their additional widgets that do not relate to this guide.</p></div>\n				</div>\n				</div>\n				<div data-id=\"888242b\" class=\"elementor-element elementor-element-888242b elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">We think it&#8217;s fine but there is still room for improvement. Later on, we see, what will happen when we combine and optimize Breeze with OceanWP.</div>\n				</div>\n				</div>\n						</div>\n			</div>\n		</div>\n						</div>\n			</div>\n		</section>\n				<section data-id=\"2be787e\" class=\"elementor-element elementor-element-2be787e elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-element_type=\"section\">\n						<div class=\"elementor-container elementor-column-gap-default\">\n				<div class=\"elementor-row\">\n				<div data-id=\"fa62f57\" class=\"elementor-element elementor-element-fa62f57 elementor-column elementor-col-100 elementor-top-column\" data-element_type=\"column\">\n			<div class=\"elementor-column-wrap elementor-element-populated\">\n					<div class=\"elementor-widget-wrap\">\n				<div data-id=\"59d100d\" class=\"elementor-element elementor-element-59d100d elementor-widget elementor-widget-divider\" data-element_type=\"divider.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-divider\">\n			<span class=\"elementor-divider-separator\"></span>\n		</div>\n				</div>\n				</div>\n				<div data-id=\"1935c78\" class=\"elementor-element elementor-element-1935c78 elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h3 class=\"elementor-heading-title elementor-size-default\">OceanWP & Other Plugins Installed</h3>		</div>\n				</div>\n				<div data-id=\"c9373be\" class=\"elementor-element elementor-element-c9373be elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">We install and activate <a href=\"https://wordpress.org/themes/oceanwp/\" target=\"_blank\" rel=\"noopener\">OceanWP theme</a> along with the <strong>Ocean Extra, Elementor and Ocean Demo Import</strong> plugins, keep everything untouched and here is the result:</div>\n				</div>\n				</div>\n				<div data-id=\"55af236\" class=\"elementor-element elementor-element-55af236 elementor-widget elementor-widget-image\" data-element_type=\"image.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-image\">\n											<a href=\"https://oceanwp.org/wp-content/uploads/2018/06/OceanWP-Other-Plugins-Installed.png\" data-elementor-open-lightbox=\"default\">\n							<img width=\"968\" height=\"497\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/OceanWP-Other-Plugins-Installed.png\" class=\"attachment-full size-full\" alt=\"\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/OceanWP-Other-Plugins-Installed.png 968w, //oceanwp.org/wp-content/uploads/2018/06/OceanWP-Other-Plugins-Installed-300x154.png 300w, //oceanwp.org/wp-content/uploads/2018/06/OceanWP-Other-Plugins-Installed-768x394.png 768w\" sizes=\"(max-width: 968px) 100vw, 968px\" />								</a>\n											</div>\n				</div>\n				</div>\n				<div data-id=\"6b7c68b\" class=\"elementor-element elementor-element-6b7c68b elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>Compare it with the default Twenty Seventeen theme result and see the power of an optimized WordPress theme. Let’s go with the dummy website by applying a few optimization tweaks.</p></div>\n				</div>\n				</div>\n				<div data-id=\"25030d1\" class=\"elementor-element elementor-element-25030d1 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><ul>\n 	<li>Removed emoji support by adding <a href=\"https://wordpress.stackexchange.com/q/185577\" target=\"_blank\" rel=\"noopener\">few lines of code</a> at the end of <strong>functions.php</strong> file of our child theme because most of the WordPress users do not use it.</li>\n 	<li>Marked all the checkboxes where <strong>Minification</strong> is labeled in the <strong>Basic options</strong> tab of Breeze.</li>\n 	<li>Enabled <strong>grouping</strong> of <strong>JS and CSS</strong> to reduce the number of requests by going to <strong>Advanced options</strong> tab on Breeze.</li>\n</ul></div>\n				</div>\n				</div>\n				<div data-id=\"5e34399\" class=\"elementor-element elementor-element-5e34399 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">And, here is the result!</div>\n				</div>\n				</div>\n				<div data-id=\"8ea2413\" class=\"elementor-element elementor-element-8ea2413 elementor-widget elementor-widget-image\" data-element_type=\"image.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-image\">\n											<a href=\"https://oceanwp.org/wp-content/uploads/2018/06/OceanWP-Other-Plugins-Installed-Optimized.png\" data-elementor-open-lightbox=\"default\">\n							<img width=\"874\" height=\"560\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/OceanWP-Other-Plugins-Installed-Optimized.png\" class=\"attachment-full size-full\" alt=\"\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/OceanWP-Other-Plugins-Installed-Optimized.png 874w, //oceanwp.org/wp-content/uploads/2018/06/OceanWP-Other-Plugins-Installed-Optimized-300x192.png 300w, //oceanwp.org/wp-content/uploads/2018/06/OceanWP-Other-Plugins-Installed-Optimized-768x492.png 768w\" sizes=\"(max-width: 874px) 100vw, 874px\" />								</a>\n											</div>\n				</div>\n				</div>\n				<div data-id=\"adb371d\" class=\"elementor-element elementor-element-adb371d elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>We can see the loading time is pretty impressive. But Pingdom Tools is displaying query string warning on “fontawesome” and “simple line icons”. If you are using any of them, keep it <strong>enable</strong> or <strong>disable</strong> by going to <strong>scripts and styles</strong> section. We have disabled it for now and here is the result.</p></div>\n				</div>\n				</div>\n				<div data-id=\"8908a28\" class=\"elementor-element elementor-element-8908a28 elementor-widget elementor-widget-image\" data-element_type=\"image.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-image\">\n											<a href=\"https://oceanwp.org/wp-content/uploads/2018/06/OceanWP-on-Cloudways-Scored-100.png\" data-elementor-open-lightbox=\"default\">\n							<img width=\"776\" height=\"560\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/OceanWP-on-Cloudways-Scored-100.png\" class=\"attachment-full size-full\" alt=\"\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/OceanWP-on-Cloudways-Scored-100.png 776w, //oceanwp.org/wp-content/uploads/2018/06/OceanWP-on-Cloudways-Scored-100-300x216.png 300w, //oceanwp.org/wp-content/uploads/2018/06/OceanWP-on-Cloudways-Scored-100-768x554.png 768w\" sizes=\"(max-width: 776px) 100vw, 776px\" />								</a>\n											</div>\n				</div>\n				</div>\n				<div data-id=\"23ce172\" class=\"elementor-element elementor-element-23ce172 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>Now everything is scored to 100.</p></div>\n				</div>\n				</div>\n				<div data-id=\"094e33c\" class=\"elementor-element elementor-element-094e33c elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">Not to forget, it is just a blank website. Let’s see, how well it can perform when we add demo data.</div>\n				</div>\n				</div>\n						</div>\n			</div>\n		</div>\n						</div>\n			</div>\n		</section>\n				<section data-id=\"5a217d2\" class=\"elementor-element elementor-element-5a217d2 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-element_type=\"section\">\n						<div class=\"elementor-container elementor-column-gap-default\">\n				<div class=\"elementor-row\">\n				<div data-id=\"c3557bb\" class=\"elementor-element elementor-element-c3557bb elementor-column elementor-col-100 elementor-top-column\" data-element_type=\"column\">\n			<div class=\"elementor-column-wrap elementor-element-populated\">\n					<div class=\"elementor-widget-wrap\">\n				<div data-id=\"8d919ab\" class=\"elementor-element elementor-element-8d919ab elementor-widget elementor-widget-divider\" data-element_type=\"divider.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-divider\">\n			<span class=\"elementor-divider-separator\"></span>\n		</div>\n				</div>\n				</div>\n				<div data-id=\"5a24411\" class=\"elementor-element elementor-element-5a24411 elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h3 class=\"elementor-heading-title elementor-size-default\">OceanWP with Demo Data</h3>		</div>\n				</div>\n				<div data-id=\"9d60c72\" class=\"elementor-element elementor-element-9d60c72 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>Let’s insert demo data using <a href=\"https://wordpress.org/plugins/ocean-demo-import/\" target=\"_blank\" rel=\"noopener\">Ocean Demo Import</a> plugin. We have imported one of the most popular one-pager template <strong>Megagym</strong> along with all the data we are asked to import. Here is the result:</p></div>\n				</div>\n				</div>\n				<div data-id=\"04b5aa8\" class=\"elementor-element elementor-element-04b5aa8 elementor-widget elementor-widget-image\" data-element_type=\"image.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-image\">\n											<a href=\"https://oceanwp.org/wp-content/uploads/2018/06/OceanWP-with-Demo-Data.png\" data-elementor-open-lightbox=\"default\">\n							<img width=\"968\" height=\"576\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/OceanWP-with-Demo-Data.png\" class=\"attachment-full size-full\" alt=\"\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/OceanWP-with-Demo-Data.png 968w, //oceanwp.org/wp-content/uploads/2018/06/OceanWP-with-Demo-Data-300x179.png 300w, //oceanwp.org/wp-content/uploads/2018/06/OceanWP-with-Demo-Data-768x457.png 768w\" sizes=\"(max-width: 968px) 100vw, 968px\" />								</a>\n											</div>\n				</div>\n				</div>\n				<div data-id=\"7fc9723\" class=\"elementor-element elementor-element-7fc9723 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>One thing to mention here, we have re-enabled “fontawesome” and “simple line icons” as they are required by <strong>Megagym template</strong>. The above warnings include both of them along with Google Maps.</p></div>\n				</div>\n				</div>\n				<div data-id=\"aed10ff\" class=\"elementor-element elementor-element-aed10ff elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>For this guide, we are <strong>disabling Google Maps</strong> using Elementor but if you want to embed it anyway, try not to use it on home page as it is considered as the performance killer.</p></div>\n				</div>\n				</div>\n				<div data-id=\"42d7b4c\" class=\"elementor-element elementor-element-42d7b4c elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">And here is the result:</div>\n				</div>\n				</div>\n				<div data-id=\"130acd9\" class=\"elementor-element elementor-element-130acd9 elementor-widget elementor-widget-image\" data-element_type=\"image.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-image\">\n											<a href=\"https://oceanwp.org/wp-content/uploads/2018/06/OceanWP-with-Demo-Data-Optimized.png\" data-elementor-open-lightbox=\"default\">\n							<img width=\"966\" height=\"533\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/OceanWP-with-Demo-Data-Optimized.png\" class=\"attachment-full size-full\" alt=\"\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/OceanWP-with-Demo-Data-Optimized.png 966w, //oceanwp.org/wp-content/uploads/2018/06/OceanWP-with-Demo-Data-Optimized-300x166.png 300w, //oceanwp.org/wp-content/uploads/2018/06/OceanWP-with-Demo-Data-Optimized-768x424.png 768w\" sizes=\"(max-width: 966px) 100vw, 966px\" />								</a>\n											</div>\n				</div>\n				</div>\n				<div data-id=\"0306e95\" class=\"elementor-element elementor-element-0306e95 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">Wow! The performance grade and load time have been improved. Not only this, the page size and number of requests also decreased because of the minification and grouping did by Breeze and the removal of Google maps that resulted in faster page loading experience. I know the grades aren’t 100 this time, it is because there are a few known things like “fontawesome” and “simple line icons” that are taking score down.</div>\n				</div>\n				</div>\n				<div data-id=\"a5f8616\" class=\"elementor-element elementor-element-a5f8616 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">You can see, how well an optimized and lightweight WordPress theme (OceanWP) performs if used on a WordPress website hosted on an optimized WordPress hosting like Cloudways. We think it is good to opt for a specialized WordPress hosting and get the benefit of cloud hosting.</div>\n				</div>\n				</div>\n				<div data-id=\"555469d\" class=\"elementor-element elementor-element-555469d elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>Would care to share the results you are getting with your existing hosting provider?</p></div>\n				</div>\n				</div>\n						</div>\n			</div>\n		</div>\n						</div>\n			</div>\n		</section>\n						</div>\n			</div>\n		</div>\n		<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/oceanwp-lightning-fast-cloudways/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://oceanwp.org/oceanwp-lightning-fast-cloudways/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"How To Create Radio, Label, Color and Image Variation Swatches for WooCommerce Variable Product Attributes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"https://oceanwp.org/create-radio-label-color-image-variation-swatches-woocommerce-variable-product-attributes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"https://oceanwp.org/create-radio-label-color-image-variation-swatches-woocommerce-variable-product-attributes/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Jun 2018 16:28:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Introducing\";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:\"Tutorial\";s:7:\"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://oceanwp.org/?p=140439\";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:1548:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/create-radio-label-color-image-variation-swatches-woocommerce-variable-product-attributes/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/06/ocean-wp-blog-bnr_preview.jpeg\" width=\"980\" height=\"490\" title=\"How To Create Radio, Label, Color and Image Variation Swatches for WooCommerce Variable Product Attributes\" alt=\"How To Create Radio, Label, Color and Image Variation Swatches for WooCommerce Variable Product Attributes\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\">WooCommerce product variation swatch is an incredible technology introduced to boost site sales and conversion. Thinking why swatches are incredible, right? Product variation swatches replace default WooCommerce product variation select dropdown field and enable color, image, label, and radio swatches. Consequently, customers can easily select their desired product variation and add them into cart immediately. [&#8230;]<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/create-radio-label-color-image-variation-swatches-woocommerce-variable-product-attributes/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Ahmed Ehsaan\";s: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:23973:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/create-radio-label-color-image-variation-swatches-woocommerce-variable-product-attributes/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/06/ocean-wp-blog-bnr_preview.jpeg\" width=\"980\" height=\"490\" title=\"How To Create Radio, Label, Color and Image Variation Swatches for WooCommerce Variable Product Attributes\" alt=\"How To Create Radio, Label, Color and Image Variation Swatches for WooCommerce Variable Product Attributes\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\"><p>WooCommerce product variation swatch is an incredible technology introduced to boost site sales and conversion.</p>\n<p><strong><em>Thinking why swatches are incredible, right?</em></strong></p>\n<p>Product variation swatches replace default WooCommerce product variation select dropdown field and enable color, image, label, and radio swatches. Consequently, customers can easily select their desired product variation and add them into cart immediately.</p>\n<p><strong>In this tutorial, I am going to show you how you can enable radio, label, color, and photo variation swatches in WooCommerce variable product using OceanWP Theme</strong>.</p>\n<p>I am assuming you have OceanWP theme installed. To enable swatches in your variable products, install <strong>WooCommerce Variation Swatches</strong> plugin first.</p>\n<p style=\"text-align: center\"><a href=\"https://demo.getwooplugins.com/woocommerce-variation-swatches/oceanwp?ref=69\" target=\"_blank\" rel=\"noopener\">Live Demo</a> | <a href=\"http://bit.ly/wvs-ocean-wp-article\" target=\"_blank\" rel=\"noopener\">Download WooCommerce Variation Swatches Plugin</a></p>\n<h4 style=\"text-align: center\">WooCommerce Variation Swatches Installation</h4>\n<p>You can download WooCommerce Variation Swatches plugin from your site backend as well. Select <strong>Begin Installing Plugins </strong>from top admin notice.<br />\n<img class=\"aligncenter wp-image-140467 size-large\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/installation-1024x153.png\" alt=\"\" width=\"1024\" height=\"153\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/installation-1024x153.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/installation-300x45.png 300w, //oceanwp.org/wp-content/uploads/2018/06/installation-768x115.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p>Install and Activate <strong>WooCommerce Variation Swatches</strong> and <strong>Ocean Extra</strong> plugin.</p>\n<p><img class=\"aligncenter wp-image-140473 size-large\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/install-activate-1-1024x430.png\" alt=\"\" width=\"1024\" height=\"430\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/install-activate-1-1024x430.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/install-activate-1-300x126.png 300w, //oceanwp.org/wp-content/uploads/2018/06/install-activate-1-768x323.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p>If you don&#8217;t get the top notice to install the swatches plugin, navigate to <strong>Plugins &gt;&gt; Add New</strong>. Search for <em>WooCommerce Variation Swatches</em> in the search field. Install and Activate <strong>WooCommerce Variation Swatches Plugin by Emran Ahmed</strong>.</p>\n<p><img class=\"aligncenter wp-image-140476 size-large\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/woo-variation-swatch-org-1024x343.png\" alt=\"\" width=\"1024\" height=\"343\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/woo-variation-swatch-org.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/woo-variation-swatch-org-300x100.png 300w, //oceanwp.org/wp-content/uploads/2018/06/woo-variation-swatch-org-768x257.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p>After successfully plugin installation and activation, it’s time to create radio, label, color and image variation swatches in OceanWP theme. Let’s start the process.</p>\n<h4 style=\"text-align: center\">WooCommerce Variation Swatches Setup</h4>\n<p>After installing <strong>Woocommerce Variation Swatches and Photos plugin</strong> in your OceanWP theme. It’s time to configure this plugin for your variable products. There are two ways to install this plugin.</p>\n<ol>\n<li><a href=\"#old-site\">Enable variation swatches for existing variable products</a></li>\n<li><a href=\"#new-site\">Setup variation swatches For new variable products</a></li>\n</ol>\n<p>In this tutorial, I am going to describe both the ways.</p>\n<h4 id=\"old-site\" style=\"font-size: 25px;text-align: center\">Enable Variation Swatches For Existing Variable Products</h4>\n<p>Many of you already have variable products created in your store. If you want to turn the product variation dropdown select into radio, label, color, and images swatches, you have followed this tutorial from here. Check the following screenshot. The default variation select dropdown currently looks like the following screenshot in your site. In the coming steps, I’ll show you how you turn the variation select field into beautiful swatches.</p>\n<h2 style=\"text-align: center\">Before</h2>\n<p><img class=\"aligncenter wp-image-142101 size-large\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/oceanwp-01-1024x834.png\" alt=\"oceanwp\" width=\"1024\" height=\"834\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/oceanwp-01-1024x834.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp-01-300x244.png 300w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp-01-768x625.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<h2 style=\"text-align: center\">After</h2>\n<p><img class=\"aligncenter size-large wp-image-142129\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/oceanwp-04-1024x843.png\" alt=\"\" width=\"1024\" height=\"843\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/oceanwp-04-1024x843.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp-04-300x247.png 300w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp-04-768x633.png 768w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp-04.png 1576w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<h5>Step 01: Editing Attribute</h5>\n<p>Head to the <strong>Products &gt;&gt; Attributes</strong>. All existing global attributes are listed in attribute section. After installing WooCommerce Variation Swatches plugin, it adds<strong> Type</strong> field. By default it would show <strong>select</strong> under <strong>Type</strong> title.</p>\n<p><img class=\"aligncenter wp-image-142106 size-large\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-01-1024x224.png\" alt=\"\" width=\"1024\" height=\"224\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-01.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-01-300x66.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-01-768x168.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p>As WooCommerce Swatches Plugin comes with Three attribute types: <strong>Color, Image, Button</strong>. You can set any of attribute type for your desired attribute.</p>\n<p>For demonstration purpose, <strong>Fabrics, Pattern and Label</strong> attribute has been created. Add <strong>Color</strong> attribute type for <strong>Pattern</strong> attribute, <strong>Image</strong> attribute type for <strong>Fabrics</strong> attribute and <strong>Button</strong> attribute type for <strong>Label</strong> Attribute.</p>\n<p>To set <strong>color</strong> attribute type to <strong>Pattern</strong> attribute, click on <strong>Edit</strong>.</p>\n<p><img class=\"aligncenter size-large wp-image-142108\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-02-1024x227.png\" alt=\"\" width=\"1024\" height=\"227\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-02.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-02-300x67.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-02-768x170.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p>Select <strong>Color</strong> Type from the type dropdown.</p>\n<p><img class=\"aligncenter size-large wp-image-142109\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-03-1024x633.png\" alt=\"\" width=\"1024\" height=\"633\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-03.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-03-300x185.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-03-768x475.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p>Get back <strong>Products &gt;&gt; Attributes</strong>. Edit <strong>Fabrics</strong> attribute like <strong>Pattern</strong> attribute.</p>\n<p><img class=\"aligncenter size-large wp-image-142110\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-04-1024x641.png\" alt=\"\" width=\"1024\" height=\"641\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-04.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-04-300x188.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-04-768x481.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p>Get back <strong>Products &gt;&gt; Attributes</strong> again. Edit Label attribute like <strong>Fabrics</strong> and <strong>Pattern</strong> attribute.</p>\n<p><img class=\"aligncenter size-large wp-image-142111\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-05-1024x663.png\" alt=\"\" width=\"1024\" height=\"663\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-05-1024x663.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-05-300x194.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-05-768x497.png 768w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-05.png 1344w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p>When attribute type selection is completed, get back to the attribute list page. The Attribute list would look like the following image.</p>\n<p><img class=\"aligncenter size-large wp-image-142112\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-06-1024x224.png\" alt=\"\" width=\"1024\" height=\"224\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-06.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-06-300x66.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-06-768x168.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p>The frontend of the product would look like the following screenshot after selecting attribute types for product attributes.</p>\n<p><img class=\"aligncenter size-large wp-image-142114\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/oceanwp-02-1024x902.png\" alt=\"\" width=\"1024\" height=\"902\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/oceanwp-02-1024x902.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp-02-300x264.png 300w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp-02-768x676.png 768w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp-02.png 1576w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p>Variations for Label attribute looks fine, but variations for Pattern attribute needs to define colors and variations for Fabrics attribute needs to add images.</p>\n<h5>Step 02: Editing Variations</h5>\n<p>To define colors as variations inside the <strong>Pattern</strong> attribute. Head over to <strong>Products &gt;&gt; Attributes</strong>. Select <strong>Configure terms</strong> from <strong>Patterns</strong> attribute.</p>\n<p><img class=\"aligncenter size-large wp-image-142116\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-07-1024x199.png\" alt=\"\" width=\"1024\" height=\"199\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-07.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-07-300x58.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-07-768x149.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p>After selecting Configure terms, a list of attribute variations comes up. For Pattern, three variations: <strong>Blue</strong>, <strong>Green</strong>, and <strong>Red</strong> variations are listed here. Edit each variation one by one to add variation color.</p>\n<p>For demonstration, select <strong>Edit</strong> link for <strong>Green</strong> variation.</p>\n<p><img class=\"aligncenter size-large wp-image-142121\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-08-1024x306.png\" alt=\"\" width=\"1024\" height=\"306\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-08.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-08-300x90.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-08-768x230.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p>From variation edit panel. Select desired color from <strong>Colorpicker</strong> and the update the changes pressing the <strong>Update</strong> button.</p>\n<p><img class=\"aligncenter size-large wp-image-142122\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-09-1024x946.png\" alt=\"\" width=\"1024\" height=\"946\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-09.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-09-300x277.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-09-768x710.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p>When all variations colors are updated successfully, the frontend look likes the following.</p>\n<p><img class=\"aligncenter size-large wp-image-142123\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/oceanwp-03-1024x930.png\" alt=\"\" width=\"1024\" height=\"930\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/oceanwp-03-1024x930.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp-03-300x273.png 300w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp-03-768x698.png 768w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp-03.png 1530w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p>After updating pattern attribute variations, edit <strong>Fabrics</strong> attribute selecting <strong>Configure terms</strong> like <strong>pattern</strong> attribute.</p>\n<p>After pressing <strong>Configure terms</strong> a list of Fabrics term comes up like pattern. Edit each variation to insert variations image. For demonstration purpose, <strong>Edit</strong> link for <strong>Chambray</strong> attribute.</p>\n<p>From variation edit panel. upload desired variation <strong>image</strong> from image and update the changes pressing <strong>Update</strong> button.<br />\n<img class=\"aligncenter size-large wp-image-142127\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-10-1024x684.png\" alt=\"\" width=\"1024\" height=\"684\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-10.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-10-300x200.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-10-768x513.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p>After updating images for all variations, the frontend would like this the following screenshot.</p>\n<p><img class=\"aligncenter size-large wp-image-142129\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/oceanwp-04-1024x843.png\" alt=\"\" width=\"1024\" height=\"843\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/oceanwp-04-1024x843.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp-04-300x247.png 300w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp-04-768x633.png 768w, //oceanwp.org/wp-content/uploads/2018/06/oceanwp-04.png 1576w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<h4 id=\"new-site\" style=\"font-size: 25px;text-align: center\">Setup Variation Swatches For New Variable Products</h4>\n<p>This is the step for those who don&#8217;t have any variable product created for their store. First, we will create variable products and enable swatches for them.</p>\n<h5>Step 01: Create Global Attributes and Variations</h5>\n<p>After successfully plugin installation and activation, create your desired attribute globally from <strong>Products &gt;&gt; Attributes</strong>. Create <strong>Pattern</strong>, <strong>Fabrics,</strong> <strong>Length </strong>and<strong> Size</strong> variation enter attribute title and corresponding attribute type from Type dropdown.</p>\n<p><img class=\"aligncenter wp-image-142157\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-01-1.png\" alt=\"\" width=\"750\" height=\"795\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-01-1.png 943w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-01-1-283x300.png 283w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-01-1-768x814.png 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" /></p>\n<p>When color, image and label <strong>Pattern</strong>, <strong>Fabrics</strong>, <strong>Label</strong> and <strong>Size</strong> attribute is created successfully, it creates a list of attributes in left.</p>\n<p><img class=\"aligncenter wp-image-142398\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-02-1-1024x310.png\" alt=\"\" width=\"766\" height=\"232\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-02-1-1024x310.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-02-1-300x91.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-02-1-768x233.png 768w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-02-1.png 1558w\" sizes=\"(max-width: 766px) 100vw, 766px\" /></p>\n<p>After creating global attributes, add attribute variations selecting Configure terms. To create variations for <strong>Pattern</strong> attributes, select <strong>Configure terms</strong> links. Fill Name field and select color codes. Create <strong>Green</strong>, <strong>Blue</strong> and <strong>Red</strong> variations for color attributes.</p>\n<p><img class=\"aligncenter wp-image-142160\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-03-1-797x1024.png\" alt=\"\" width=\"758\" height=\"974\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-03-1-797x1024.png 797w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-03-1-234x300.png 234w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-03-1-768x986.png 768w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-03-1.png 1056w\" sizes=\"(max-width: 758px) 100vw, 758px\" /></p>\n<p>A list of attribute variations comes up in the left screen after adding variations for <strong>Pattern</strong> attributes.</p>\n<p><img class=\"aligncenter wp-image-142161\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-04-1-1024x315.png\" alt=\"\" width=\"751\" height=\"231\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-04-1-1024x315.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-04-1-300x92.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-04-1-768x236.png 768w\" sizes=\"(max-width: 751px) 100vw, 751px\" /></p>\n<p>Get to the <strong>Products &gt;&gt; Attributes</strong> again. Create variations for <strong>Fabrics</strong> attributes, select <strong>Configure terms</strong> links from <strong>Fabrics</strong>. Fill <strong>Name field</strong> and add variation image from media library or upload from computer.</p>\n<p><img class=\"aligncenter wp-image-142163\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-05-1-1024x1007.png\" alt=\"\" width=\"747\" height=\"734\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-05-1-1024x1007.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-05-1-300x295.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-05-1-768x755.png 768w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-05-1.png 1416w\" sizes=\"(max-width: 747px) 100vw, 747px\" /></p>\n<p>Create <strong>Chambray, Corduroy, and Embossed</strong> variations for image attributes and they will appear in left.</p>\n<p><img class=\"aligncenter wp-image-142164\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-06-1-1024x340.png\" alt=\"\" width=\"750\" height=\"249\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-06-1-1024x340.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-06-1-300x100.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-06-1-768x255.png 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" /></p>\n<p><strong>Create variations for Radio and Label attributes like the Image and Color variations. </strong></p>\n<h5>Step 02: Display Swatches in Variable Product Page</h5>\n<p>To enable swatches on the variable product page. Get into your desired product edit mode, select <strong>variable product</strong> from <strong>Product Data</strong>.</p>\n<p><img class=\"aligncenter size-full wp-image-142396\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-07-1.png\" alt=\"\" width=\"784\" height=\"683\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-07-1.png 784w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-07-1-300x261.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-07-1-768x669.png 768w\" sizes=\"(max-width: 784px) 100vw, 784px\" /></p>\n<p>Head to the <strong>Attributes</strong> Tab. Click on <strong>Custom product attribute</strong> dropdown. Here all globally created attributes get appeared. Add all attributes one by one.</p>\n<p><img class=\"aligncenter wp-image-142399\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-08-1-1024x632.png\" alt=\"\" width=\"784\" height=\"484\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-08-1-1024x632.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-08-1-300x185.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-08-1-768x474.png 768w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-08-1.png 1141w\" sizes=\"(max-width: 784px) 100vw, 784px\" /></p>\n<p>After adding all attributes, press <strong>Select All</strong> button from each attribute setting to add all its available variations at once. After adding product attribute variations, save settings selecting <strong>Save Attributes</strong> Buttons.</p>\n<p><img class=\"aligncenter wp-image-142400\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-09-1-1024x773.png\" alt=\"\" width=\"783\" height=\"591\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-09-1-1024x773.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-09-1-300x226.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-09-1-768x580.png 768w\" sizes=\"(max-width: 783px) 100vw, 783px\" /></p>\n<p>Now get into <strong>Variations</strong> tab. Click on <strong>Add Variation</strong> dropdown. Here two options comes up. First one is <strong>Add Variation</strong> and the second one is <strong>Create variations from all attributes.</strong></p>\n<p><img class=\"aligncenter wp-image-142401\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-10-1-1024x772.png\" alt=\"\" width=\"790\" height=\"595\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-10-1-1024x772.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-10-1-300x226.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-10-1-768x579.png 768w\" sizes=\"(max-width: 790px) 100vw, 790px\" /></p>\n<p>Select <strong>Create variations from all attributes</strong> and Press <strong>Go</strong>. It&#8217;ll add all available variations combination created for attributes. Add <strong>price</strong> and <strong>variation image</strong> for individual variation and save the settings.</p>\n<p><img class=\"aligncenter wp-image-142419\" src=\"https://oceanwp.org/wp-content/uploads/2018/06/vs-ow-11-1024x747.png\" alt=\"\" width=\"800\" height=\"584\" srcset=\"//oceanwp.org/wp-content/uploads/2018/06/vs-ow-11-1024x747.png 1024w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-11-300x219.png 300w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-11-768x560.png 768w, //oceanwp.org/wp-content/uploads/2018/06/vs-ow-11.png 1584w\" sizes=\"(max-width: 800px) 100vw, 800px\" /></p>\n<h3>Conclusion</h3>\n<p>I&#8217;ve tried to cover each and every step to install WooCommerce Variation Swatches Plugin in OceanWP theme. Let me know in the comment box if you need any more help.</p>\n<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/create-radio-label-color-image-variation-swatches-woocommerce-variable-product-attributes/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"https://oceanwp.org/create-radio-label-color-image-variation-swatches-woocommerce-variable-product-attributes/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:42:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"How Toolset’s post relationships and OceanWP will help build a great e-commerce site\";s:7:\"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://oceanwp.org/toolsets-post-relationships-oceanwp-will-help-build-great-e-commerce-site/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://oceanwp.org/toolsets-post-relationships-oceanwp-will-help-build-great-e-commerce-site/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Jun 2018 16:40: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:11:\"Introducing\";s:7:\"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://oceanwp.org/?p=137923\";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:1419:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/toolsets-post-relationships-oceanwp-will-help-build-great-e-commerce-site/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/05/featured-image-for-OceanWP-blog.jpg\" width=\"1024\" height=\"512\" title=\"How Toolset&#8217;s post relationships and OceanWP will help build a great e-commerce site\" alt=\"How Toolset&#8217;s post relationships and OceanWP will help build a great e-commerce site\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\">Time and cost. These are two factors both developers and businesses would love to limit when building an e-commerce website. Fortunately, combining OceanWP with Toolset will go a long way to achieving this. Toolset’s suite of plugins makes it easy to add some really advanced features to WordPress websites. That’s because you do not need [&#8230;]<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/toolsets-post-relationships-oceanwp-will-help-build-great-e-commerce-site/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Joe Lobo\";s: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:14430:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/toolsets-post-relationships-oceanwp-will-help-build-great-e-commerce-site/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/05/featured-image-for-OceanWP-blog.jpg\" width=\"1024\" height=\"512\" title=\"How Toolset&#8217;s post relationships and OceanWP will help build a great e-commerce site\" alt=\"How Toolset&#8217;s post relationships and OceanWP will help build a great e-commerce site\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\"><p>Time and cost.</p>\n<p>These are two factors both developers and businesses would love to limit when building an e-commerce website.</p>\n<p>Fortunately, combining <a href=\"https://oceanwp.org/\">OceanWP</a> with <a href=\"https://toolset.com/\">Toolset</a> will go a long way to achieving this.</p>\n<p>Toolset’s suite of plugins makes it easy to add some really advanced features to WordPress websites. That’s because you do not need to use any PHP to create them.OceanWP is a great theme because it comes packed with a number of <a href=\"https://oceanwp.org/whats-new-oceanwp-many-new-woocommerce-features/\">WooCommerce features</a> which can really enhance your product page such as a multi-step checkout to increase conversions or a cart icon shortcode to show how many products have been added so far.</p>\n<p>We can already use Toolset and OceanWP to build advanced websites <a href=\"https://docs.oceanwp.org/article/477-how-to-build-advanced-websites-based-on-custom-post-types-with-toolset-and-oceanwp\">using custom post types</a>. Now we will explore how adding <a href=\"https://toolset.com/documentation/post-relationships/\">post relationships</a> to the equation will bring more success to both the developer and the company. Post relationships can combine your <a href=\"https://woocommerce.com/\">WooCommerce</a> product pages with items from other custom post types. For example, any shoes you are selling can also appear on your “Stores” custom posts to show where they can be bought. This means you can avoid data duplication as you only need to edit each item once for the changes to appear on your website.</p>\n<p>Here is what we will create using a relationship between our products page (the shoes) and the stores where you can find them:</p>\n<figure id=\"attachment_137946\" style=\"width: 700px\" class=\"wp-caption aligncenter\"><a href=\"https://oceanwp.org/wp-content/uploads/2018/05/adidas-front-end-relationship.png\"><img class=\"wp-image-137946\" src=\"https://oceanwp.org/wp-content/uploads/2018/05/adidas-front-end-relationship-300x197.png\" alt=\"\" width=\"700\" height=\"460\" srcset=\"//oceanwp.org/wp-content/uploads/2018/05/adidas-front-end-relationship-300x197.png 300w, //oceanwp.org/wp-content/uploads/2018/05/adidas-front-end-relationship-768x504.png 768w, //oceanwp.org/wp-content/uploads/2018/05/adidas-front-end-relationship-1024x673.png 1024w, //oceanwp.org/wp-content/uploads/2018/05/adidas-front-end-relationship.png 1253w\" sizes=\"(max-width: 700px) 100vw, 700px\" /></a><figcaption class=\"wp-caption-text\">List of shoes you can buy at Fitness Run shop</figcaption></figure>\n<h3>Choosing the right post relationships  for your e-commerce site</h3>\n<p>There are three post relationships to choose from when building your business website and deciding how exactly you want to connect items from different custom post types.</p>\n<p>One-to-one relationships are an exclusive connection between a child and parent custom post type. For example, you might want to combine shops which stock your products with their addresses so it would be easy for people to browse where they can buy your product.</p>\n<figure id=\"attachment_137951\" style=\"width: 705px\" class=\"wp-caption aligncenter\"><img class=\"wp-image-137951 size-full\" src=\"https://oceanwp.org/wp-content/uploads/2018/05/one-to-one-relationship-astra.png\" alt=\"one to one relationship \" width=\"705\" height=\"502\" srcset=\"//oceanwp.org/wp-content/uploads/2018/05/one-to-one-relationship-astra.png 705w, //oceanwp.org/wp-content/uploads/2018/05/one-to-one-relationship-astra-300x214.png 300w\" sizes=\"(max-width: 705px) 100vw, 705px\" /><figcaption class=\"wp-caption-text\">one to one relationship</figcaption></figure>\n<p>One-to-many relationships allow you to connect multiple child items from a custom post type with the parent of another. For an e-commerce website, you will probably want to link each customer’s account with all of the purchases they have made, for example.</p>\n<figure id=\"attachment_137950\" style=\"width: 743px\" class=\"wp-caption aligncenter\"><img class=\"size-full wp-image-137950\" src=\"https://oceanwp.org/wp-content/uploads/2018/05/one-to-many-relationship-astra.png\" alt=\"one to many relationship \" width=\"743\" height=\"508\" srcset=\"//oceanwp.org/wp-content/uploads/2018/05/one-to-many-relationship-astra.png 743w, //oceanwp.org/wp-content/uploads/2018/05/one-to-many-relationship-astra-300x205.png 300w\" sizes=\"(max-width: 743px) 100vw, 743px\" /><figcaption class=\"wp-caption-text\">one to many relationship</figcaption></figure>\n<p>However, you will discover that the most popular option is the many-to-many relationship which enables you to link multiple items from one custom post type with many items from another. Developers will have complete flexibility to create whatever combinations they deem necessary.</p>\n<p>Let’s use our demo e-commerce website to create a many-to-many relationship and explore just how easy it is.</p>\n<h3>How to create a many-to-many relationship for your e-commerce website</h3>\n<p>To create our many-to-many relationships, we will use Toolset’s <a href=\"https://www.youtube.com/watch?v=JqVyWEqyMg8\">relationships wizard</a>. With it, we will create a connection between the shoes we have on sale and the stores in which you can find them.</p>\n<ol>\n<li><b>Choose the many-to-many relationships option</b></li>\n</ol>\n<p>First, we need to access the relationships wizard from <strong>Toolset &gt; Relationships</strong>. Once that is done, we can select the ‘<b>Add New</b>’ option which will take us to the first screen. From here, we will choose the many-to-many relationship.</p>\n<figure id=\"attachment_137952\" style=\"width: 700px\" class=\"wp-caption aligncenter\"><img class=\"wp-image-137952\" src=\"https://oceanwp.org/wp-content/uploads/2018/05/post-relationship-step-one-astra.png\" alt=\"Step 1: choose the relationship\" width=\"700\" height=\"327\" srcset=\"//oceanwp.org/wp-content/uploads/2018/05/post-relationship-step-one-astra.png 1600w, //oceanwp.org/wp-content/uploads/2018/05/post-relationship-step-one-astra-300x140.png 300w, //oceanwp.org/wp-content/uploads/2018/05/post-relationship-step-one-astra-768x359.png 768w, //oceanwp.org/wp-content/uploads/2018/05/post-relationship-step-one-astra-1024x478.png 1024w\" sizes=\"(max-width: 700px) 100vw, 700px\" /><figcaption class=\"wp-caption-text\">Step 1: choose the relationship</figcaption></figure>\n<ol start=\"2\">\n<li><b> Select the post types we want to connect</b></li>\n</ol>\n<p>On the next screen, we will identify what exactly we want to combine in order to create a many-to-many relationships. We have selected the “Stores” custom post type which will link with our product page.</p>\n<figure id=\"attachment_137956\" style=\"width: 700px\" class=\"wp-caption aligncenter\"><img class=\"wp-image-137956\" src=\"https://oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-two-oceanWP.png\" alt=\"\" width=\"700\" height=\"311\" srcset=\"//oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-two-oceanWP.png 1600w, //oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-two-oceanWP-300x133.png 300w, //oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-two-oceanWP-768x341.png 768w, //oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-two-oceanWP-1024x455.png 1024w\" sizes=\"(max-width: 700px) 100vw, 700px\" /><figcaption class=\"wp-caption-text\">Step 2: Select the posts you want to connect</figcaption></figure>\n<ol start=\"3\">\n<li><b> Set limits on the number of posts we want to connect</b></li>\n</ol>\n<p>There will be some instances where we might want to limit how many items from one custom post type are linked with another &#8211; a doctor and the number of patients assigned to them, for example. However, in this instance, it is unnecessary so we will move on to the next step.</p>\n<figure id=\"attachment_137955\" style=\"width: 700px\" class=\"wp-caption aligncenter\"><img class=\"wp-image-137955\" src=\"https://oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-three-oceanWP.png\" alt=\"\" width=\"700\" height=\"280\" srcset=\"//oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-three-oceanWP.png 1600w, //oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-three-oceanWP-300x120.png 300w, //oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-three-oceanWP-768x307.png 768w, //oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-three-oceanWP-1024x410.png 1024w\" sizes=\"(max-width: 700px) 100vw, 700px\" /><figcaption class=\"wp-caption-text\">Step 3: Setup limits</figcaption></figure>\n<ol start=\"4\">\n<li><b> Add relationship fields</b></li>\n</ol>\n<p>Relationship fields are useful when you want to add important information to a connection. For example, the track number between the “Song” and “Album” custom post types. Once again, however, we will not need any for the relationship we are creating so we will skip it.</p>\n<figure id=\"attachment_137954\" style=\"width: 700px\" class=\"wp-caption aligncenter\"><img class=\"wp-image-137954\" src=\"https://oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-four-oceanWP.png\" alt=\"Step 4: Relationship Fields\" width=\"700\" height=\"256\" srcset=\"//oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-four-oceanWP.png 1600w, //oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-four-oceanWP-300x110.png 300w, //oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-four-oceanWP-768x281.png 768w, //oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-four-oceanWP-1024x374.png 1024w\" sizes=\"(max-width: 700px) 100vw, 700px\" /><figcaption class=\"wp-caption-text\">Step 4: Add Relationship Fields</figcaption></figure>\n<ol start=\"5\">\n<li><b> Name your many-to-many relationship</b></li>\n</ol>\n<p>The last thing we need to do is give our relationships a name. We will call this one “Stores Products.”</p>\n<figure id=\"attachment_137953\" style=\"width: 700px\" class=\"wp-caption aligncenter\"><img class=\"wp-image-137953\" src=\"https://oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-five-oceanWP.png\" alt=\"Step 5: Name your relationship\" width=\"700\" height=\"239\" srcset=\"//oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-five-oceanWP.png 1600w, //oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-five-oceanWP-300x103.png 300w, //oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-five-oceanWP-768x263.png 768w, //oceanwp.org/wp-content/uploads/2018/05/relationship-wizard-step-five-oceanWP-1024x350.png 1024w\" sizes=\"(max-width: 700px) 100vw, 700px\" /><figcaption class=\"wp-caption-text\">Step 5: Name your relationship</figcaption></figure>\n<p>Our many-to-many relationship is now ready to be put to the test.</p>\n<h3>Connect posts using our many-to-many relationships</h3>\n<p>Now that we have our many-to-many relationship, we can start to form connections between our “Stores” custom post type and our product page.</p>\n<p>Let’s imagine that the Fitnessrun store now has the Life In Pink Adidas shoe in stock. Therefore, we will want to display that store on the product page so customers know where they can buy it and vice versa. To do this we can create the connection on the back-end. All we need to do is click “Connect existing store” as we edit the Life In Pink product page and we can select Fitnessrun.</p>\n<figure id=\"attachment_137949\" style=\"width: 700px\" class=\"wp-caption aligncenter\"><img class=\"wp-image-137949\" src=\"https://oceanwp.org/wp-content/uploads/2018/05/fitnessstore.png\" alt=\"\" width=\"700\" height=\"228\" srcset=\"//oceanwp.org/wp-content/uploads/2018/05/fitnessstore.png 1600w, //oceanwp.org/wp-content/uploads/2018/05/fitnessstore-300x98.png 300w, //oceanwp.org/wp-content/uploads/2018/05/fitnessstore-768x250.png 768w, //oceanwp.org/wp-content/uploads/2018/05/fitnessstore-1024x333.png 1024w\" sizes=\"(max-width: 700px) 100vw, 700px\" /><figcaption class=\"wp-caption-text\">Connecting a store to a pair of shoes from the backend</figcaption></figure>\n<p>If we now head to the front-end, we can see on our OceanWP-built product page that Fitnessrun has been added to the post.</p>\n<figure id=\"attachment_137947\" style=\"width: 700px\" class=\"wp-caption aligncenter\"><img class=\"wp-image-137947\" src=\"https://oceanwp.org/wp-content/uploads/2018/05/fitnessrun-end-results.png\" alt=\"\" width=\"700\" height=\"492\" srcset=\"//oceanwp.org/wp-content/uploads/2018/05/fitnessrun-end-results.png 1281w, //oceanwp.org/wp-content/uploads/2018/05/fitnessrun-end-results-300x211.png 300w, //oceanwp.org/wp-content/uploads/2018/05/fitnessrun-end-results-768x540.png 768w, //oceanwp.org/wp-content/uploads/2018/05/fitnessrun-end-results-1024x720.png 1024w\" sizes=\"(max-width: 700px) 100vw, 700px\" /><figcaption class=\"wp-caption-text\">Shoes available in this store</figcaption></figure>\n<p>We can also see that the shoe can now be found on the Fitnessrun post as well.</p>\n<h3>Toolset and OceanWP will help you build great e-commerce websites more quickly</h3>\n<p>By incorporating Toolset’s repeatable field groups with OceanWP, you will be able to extend the capabilities of your e-commerce website and create an experience which will see your customers returning again and again. Better yet, its simplicity ensures you can build these new features quicker than ever before.</p>\n<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/toolsets-post-relationships-oceanwp-will-help-build-great-e-commerce-site/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://oceanwp.org/toolsets-post-relationships-oceanwp-will-help-build-great-e-commerce-site/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:42:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WordPress Reverse Engineering: How to Replicate A WordPress Site\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://oceanwp.org/wordpress-reverse-engineering/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://oceanwp.org/wordpress-reverse-engineering/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 May 2018 13:48: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Tutorial\";s:7:\"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://oceanwp.org/?p=134946\";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:1253:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/wordpress-reverse-engineering/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/05/WordPress-Reverse-Engineering.png\" width=\"1200\" height=\"600\" title=\"WordPress Reverse Engineering: How to Replicate A WordPress Site\" alt=\"WordPress Reverse Engineering: How to Replicate A WordPress Site\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\">This website looks so good. I wish I had a website like that. Does that sound familiar? That’s almost every blogger&#8217;s thought when they see a website, flaunting a cool user interface, colors, fonts, etc. I have caught myself in the same situation multiple times and knew, something was needed to be done. So, I [&#8230;]<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/wordpress-reverse-engineering/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Shafi Khan\";s: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:17682:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/wordpress-reverse-engineering/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/05/WordPress-Reverse-Engineering.png\" width=\"1200\" height=\"600\" title=\"WordPress Reverse Engineering: How to Replicate A WordPress Site\" alt=\"WordPress Reverse Engineering: How to Replicate A WordPress Site\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\"><p><span style=\"font-weight: 400\">This website looks so good. I wish I had a website like that.</span></p>\n<p><span style=\"font-weight: 400\">Does that sound familiar?</span></p>\n<p><span style=\"font-weight: 400\">That’s almost every blogger&#8217;s thought when they see a website, flaunting a cool user interface, colors, fonts, etc.</span></p>\n<p><span style=\"font-weight: 400\">I have caught myself in the same situation multiple times and knew, something was needed to be done. So, I went ahead and did my research.</span></p>\n<p><span style=\"font-weight: 400\">More specifically, I found tools which can decode a website, revealing all the underlying secrets powering it.</span></p>\n<p><span style=\"font-weight: 400\">In this post, I’m sharing my <span style=\"text-decoration: underline\">WordPress Reverse Engineering</span> strategy and list of tools you can use to replicate any WordPress site.</span></p>\n<p><strong>But Shafi, why WordPress? You may ask.</strong></p>\n<p><span style=\"font-weight: 400\">The reason is pretty simple. WordPress is one of the most popular content management system and powers 28.6% of all websites on the internet.</span></p>\n<p><span style=\"font-weight: 400\">Surprisingly, every day 50,000 more WordPress sites are launched (</span><a href=\"http://expandedramblings.com/index.php/wordpress-statistics/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400\">source</span></a><span style=\"font-weight: 400\">) and popular sites like TechCrunch, Disney, Sony, etc. are using WordPress to run their site (</span><a href=\"http://www.wpbeginner.com/showcase/40-most-notable-big-name-brands-that-are-using-wordpress/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400\">source</span></a><span style=\"font-weight: 400\">)</span></p>\n<p><span style=\"font-weight: 400\">I hope that answers your query.</span></p>\n<p>[click_to_tweet tweet=&#8221;Every day 50,000 WordPress blogs are launched and it becomes important to have a great design and functionality. Here are 5-steps to copy any WordPress blog. #WordPress #OceanWP #WordPressFacts&#8221; quote=&#8221;Did you know, every day 50,000 new WordPress blogs are launched. #WordPressFacts&#8221;]</p>\n<p><span style=\"font-weight: 400\">Ready to roll? Let’s get started.</span></p>\n<h2><span style=\"font-weight: 400\">Step 0: Verify if the site is using WordPress</span></h2>\n<p><span style=\"font-weight: 400\">You did see that coming, didn’t you?</span></p>\n<p><span style=\"font-weight: 400\">Of course, the first thing we need to do is, check if our favorite site is using WordPress. If it isn’t, there’s no point in following this strategy and you’ll keep scratching your head in later steps.</span></p>\n<p><span style=\"font-weight: 400\">To check which Content Management System (CMS) powers a website, we’ll use </span><a href=\"https://whatcms.org/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400\">WhatCMS.org</span></a><span style=\"font-weight: 400\"> &#8211; a free online tool.</span></p>\n<p><span style=\"font-weight: 400\">Using the tool is straight-forward, copy the website to be tested, enter it in the website box provided, and hit enter.</span></p>\n<p><img class=\"aligncenter wp-image-134949 size-full\" src=\"https://oceanwp.org/wp-content/uploads/2018/05/Check-if-site-is-using-WordPress-WordPress-Reverse-Engineering-step-0.png\" alt=\"Check if site is using WordPress\" width=\"865\" height=\"352\" srcset=\"//oceanwp.org/wp-content/uploads/2018/05/Check-if-site-is-using-WordPress-WordPress-Reverse-Engineering-step-0.png 865w, //oceanwp.org/wp-content/uploads/2018/05/Check-if-site-is-using-WordPress-WordPress-Reverse-Engineering-step-0-300x122.png 300w, //oceanwp.org/wp-content/uploads/2018/05/Check-if-site-is-using-WordPress-WordPress-Reverse-Engineering-step-0-768x313.png 768w\" sizes=\"(max-width: 865px) 100vw, 865px\" /></p>\n<p><span style=\"font-weight: 400\">The tool will run sets of algorithms and provide a result showing what CMS is being used by the website.</span></p>\n<h2><span style=\"font-weight: 400\">Step 1: Copying the design</span></h2>\n<p><span style=\"font-weight: 400\">The next obvious step is to check what WordPress theme is being used by the site in question. Just so you know, there are at least ten thousand different free and premium WordPress themes available to use, which gives website owners enough choices.</span></p>\n<p><span style=\"font-weight: 400\">Additionally, many website owners use a custom developed theme which could be a customized version of a framework or a theme coded from scratch.</span></p>\n<p><span style=\"font-weight: 400\">To check what WordPress theme is being used, you can use </span><a href=\"https://www.wpthemedetector.com/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400\">WPThemeDetector.com</span></a><span style=\"font-weight: 400\"> &#8211; another free tool.</span></p>\n<p><span style=\"font-weight: 400\">The tool is advanced and easily detects the theme or underlying framework (even if it’s hidden) which is something not possible with other similar tools like WhatWPThemeIsThat.com.</span></p>\n<p><img class=\"aligncenter wp-image-134951 size-full\" src=\"https://oceanwp.org/wp-content/uploads/2018/05/Check-the-website-theme-WordPress-Reverse-Engineering-step-1.png\" alt=\"Check the website theme\" width=\"969\" height=\"513\" srcset=\"//oceanwp.org/wp-content/uploads/2018/05/Check-the-website-theme-WordPress-Reverse-Engineering-step-1.png 969w, //oceanwp.org/wp-content/uploads/2018/05/Check-the-website-theme-WordPress-Reverse-Engineering-step-1-300x159.png 300w, //oceanwp.org/wp-content/uploads/2018/05/Check-the-website-theme-WordPress-Reverse-Engineering-step-1-768x407.png 768w\" sizes=\"(max-width: 969px) 100vw, 969px\" /></p>\n<p><span style=\"font-weight: 400\">In addition to detecting the theme, the tool will also give more information about the developer, how many other sites uses it, and official links. </span></p>\n<p><strong>What to do if the site is using a custom theme?</strong></p>\n<p><span style=\"font-weight: 400\">As discussed earlier, it is very possible that some sites could be using a <a href=\"https://oceanwp.org/with-beaver-themer-or-elementor-pro-2-do-i-still-need-a-theme/\" target=\"_blank\" rel=\"noopener\">custom theme</a> developed from scratch. In such cases, the above tool won’t be of much help.</span></p>\n<p><span style=\"font-weight: 400\">But don’t get your hopes down, you can nail the same website design by using a combination of </span><a href=\"https://oceanwp.org/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400\">OceanWP theme</span></a><span style=\"font-weight: 400\"> and page builders like Elementor.</span></p>\n<p><span style=\"font-weight: 400\">OceanWP is easily the most customizable theme you’d come across and clubbed with a page builder, as intuitive and easy to use as Elementor, gives all the power in your hand.</span></p>\n<p><span style=\"font-weight: 400\">You can literally, drag and drop pre-made components, adjust the size/color, add few CSS tweaks, and get a near-similar design.</span></p>\n<h2><span style=\"font-weight: 400\">Step 2: Get the functionalities right!</span></h2>\n<p><span style=\"font-weight: 400\">Okay, so you’ve got the designs right and your newly made WordPress site looks similar. But, it is nothing without similar functionalities or should I say plugins.</span></p>\n<p><span style=\"font-weight: 400\">An average WordPress site is powered by at least 10 different <a href=\"https://oceanwp.org/recommended-plugins/\" target=\"_blank\" rel=\"noopener\">plugins</a>, each providing a unique functionality.</span></p>\n<p><span style=\"font-weight: 400\">Your ideal website is also using multiple plugins to have that sleek functionality and user experience. Also, it is a good idea to get plugins information as they would have tried multiple plugins before settling for that specific one.</span></p>\n<p><span style=\"font-weight: 400\">Although it is difficult to get an exact list of plugins being used (many developers hide the name and information), </span><a href=\"https://scanwp.net/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400\">scanwp.net</span></a><span style=\"font-weight: 400\"> can efficiently retrieve the information.</span></p>\n<p><span style=\"font-weight: 400\"><img class=\"aligncenter wp-image-134952 size-full\" src=\"https://oceanwp.org/wp-content/uploads/2018/05/Find-plugins-used-by-a-site-WordPress-Reverse-Engineering-step-2.png\" alt=\"How to find plugins used by a site \" width=\"1174\" height=\"644\" srcset=\"//oceanwp.org/wp-content/uploads/2018/05/Find-plugins-used-by-a-site-WordPress-Reverse-Engineering-step-2.png 1174w, //oceanwp.org/wp-content/uploads/2018/05/Find-plugins-used-by-a-site-WordPress-Reverse-Engineering-step-2-300x165.png 300w, //oceanwp.org/wp-content/uploads/2018/05/Find-plugins-used-by-a-site-WordPress-Reverse-Engineering-step-2-768x421.png 768w, //oceanwp.org/wp-content/uploads/2018/05/Find-plugins-used-by-a-site-WordPress-Reverse-Engineering-step-2-1024x562.png 1024w\" sizes=\"(max-width: 1174px) 100vw, 1174px\" /></span></p>\n<p><span style=\"font-weight: 400\">It also finds the official link for plugins available on WordPress repository and if it free or not.</span></p>\n<h2><span style=\"font-weight: 400\">Step 3: Don’t forget the reading experience</span></h2>\n<p><span style=\"font-weight: 400\">As explained </span><a href=\"https://blogcharge.com/best-google-fonts/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400\">here</span></a><span style=\"font-weight: 400\">, font being used can actually affect how individual replies toward a piece of content. </span></p>\n<p><span style=\"font-weight: 400\">In the above experiment, the first group of people (with easy-to-read font) estimated that the task would take 8.2 minutes to complete. Whereas, the second group (with hard-to-read font) estimated a whopping 15.1 minutes.</span></p>\n<p><img class=\"aligncenter wp-image-134954 size-full\" src=\"https://oceanwp.org/wp-content/uploads/2018/05/Psychology-of-Simple-Fonts.gif\" alt=\"Psychology of Simple Fonts\" width=\"540\" height=\"300\" /></p>\n<p><span style=\"font-weight: 400\">That’s a huge difference and makes proper sense. If you find it hard to read the instruction, your mind will process it slower, and hence a high estimation time. Definitely, what you want for your blog.</span></p>\n<p><span style=\"font-weight: 400\">If you want a similar reading experience, you should try to use the same font as being used by that site. You can easily detect what font a site is using </span><a href=\"https://chrome.google.com/webstore/detail/whatfont/jabopobgcpjmedljpbcaablpmlmfcogm?hl=en\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400\">WhatFont Chrome extension</span></a><span style=\"font-weight: 400\">.</span></p>\n<p><span style=\"font-weight: 400\">Install the extension, visit the site (preferably an article page), click on WhatFont extension button (available on the top right corner of the screen), and hover over the text.</span></p>\n<p><img class=\"aligncenter wp-image-134953 size-full\" src=\"https://oceanwp.org/wp-content/uploads/2018/05/Know-the-font-being-used-by-a-website-WordPress-Reverse-Engineering-step-3.png\" alt=\"How to find website Font\" width=\"793\" height=\"427\" srcset=\"//oceanwp.org/wp-content/uploads/2018/05/Know-the-font-being-used-by-a-website-WordPress-Reverse-Engineering-step-3.png 793w, //oceanwp.org/wp-content/uploads/2018/05/Know-the-font-being-used-by-a-website-WordPress-Reverse-Engineering-step-3-300x162.png 300w, //oceanwp.org/wp-content/uploads/2018/05/Know-the-font-being-used-by-a-website-WordPress-Reverse-Engineering-step-3-768x414.png 768w\" sizes=\"(max-width: 793px) 100vw, 793px\" /></p>\n<p><span style=\"font-weight: 400\">You not only get the exact font, but font size, style, weight, and a link to Google web font to download it.</span></p>\n<h2><span style=\"font-weight: 400\">Step 4: Did someone say color?</span></h2>\n<p><span style=\"font-weight: 400\">Again, the colors are something that relates to human psychology and experts suggest to use an optimal color palette based on website niche.</span></p>\n<p><span style=\"font-weight: 400\">According to </span><a href=\"https://blog.kissmetrics.com/color-psychology/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400\">Kissmetrics</span></a><span style=\"font-weight: 400\">, colors affect the purchase behavior and based on the audience type, you should choose a proper color scheme.</span></p>\n<p><img class=\"aligncenter wp-image-134955 size-full\" src=\"https://oceanwp.org/wp-content/uploads/2018/05/Website-Color-scheme-human-psychology-WordPress-Reverse-Engineering.png\" alt=\"Website Color scheme\" width=\"574\" height=\"446\" srcset=\"//oceanwp.org/wp-content/uploads/2018/05/Website-Color-scheme-human-psychology-WordPress-Reverse-Engineering.png 574w, //oceanwp.org/wp-content/uploads/2018/05/Website-Color-scheme-human-psychology-WordPress-Reverse-Engineering-300x233.png 300w\" sizes=\"(max-width: 574px) 100vw, 574px\" /></p>\n<p><span style=\"font-weight: 400\">Although you can have a look and get the color scheme used by your favorite website, it makes more sense to get the exact color shade and hex code.</span></p>\n<p><a href=\"https://www.colorcombos.com/grabcolors.html\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400\">ColorCombos.com</span></a><span style=\"font-weight: 400\"> has an online tool which can grab the color pallets used by a web page. You just have to input the page URL and hit enter.</span></p>\n<p><span style=\"font-weight: 400\">In few seconds, you’ll get a list of all the color pallets frequently used on the website with hex code and an option to download the color scheme.</span></p>\n<h2><span style=\"font-weight: 400\">Step 5: Website speed</span></h2>\n<p><span style=\"font-weight: 400\">I’m pretty confident that the first good impression you had about the site was because of the load speed. No matter how good the design or <a href=\"https://oceanwp.org/6-honest-reasons-website-hire-ux-designer/\" target=\"_blank\" rel=\"noopener\">user interface</a> is, if it loads in 3-4 seconds or more, you’d have closed the tab and never returned.</span></p>\n<p><span style=\"font-weight: 400\">Web hosting is one of the primary reason behind a <a href=\"https://oceanwp.org/5-amazing-tips-optimize-website-speed-improve-seo-ranking/\" target=\"_blank\" rel=\"noopener\">good load time</a> and you may probably wonder what hosting is being used to power this site. If you can’t get the answer by browsing the site (in most cases, it’ll be written in the footer), you can use </span><a href=\"https://hostadvice.com/tools/whois/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400\">HostAdvice.com</span></a><span style=\"font-weight: 400\">’s tool to get the hosting provider.</span></p>\n<p><span style=\"font-weight: 400\">Unlike other tools who only uses Nameserver to detect web host, this tool can actually reveal the hidden host in case of CDN usage.</span></p>\n<p><span style=\"font-weight: 400\">Without this tool, I’d have never known that OceanWP.org is hosted on Google Cloud Platform clubbed with CloudFlare CDN (that explains super fast load time)</span></p>\n<p><img class=\"aligncenter wp-image-134956 size-full\" src=\"https://oceanwp.org/wp-content/uploads/2018/05/Find-the-host-by-domain-name-WordPress-Reverse-Engineering-step-5.png\" alt=\"How to find website host using Domain name\" width=\"713\" height=\"274\" srcset=\"//oceanwp.org/wp-content/uploads/2018/05/Find-the-host-by-domain-name-WordPress-Reverse-Engineering-step-5.png 713w, //oceanwp.org/wp-content/uploads/2018/05/Find-the-host-by-domain-name-WordPress-Reverse-Engineering-step-5-300x115.png 300w\" sizes=\"(max-width: 713px) 100vw, 713px\" /></p>\n<p><span style=\"font-weight: 400\">Additionally, you can see the hosting plans and user reviews right on the same page.</span></p>\n<h2><span style=\"font-weight: 400\">Conclusion </span></h2>\n<p><span style=\"font-weight: 400\">There you go!</span></p>\n<p><span style=\"font-weight: 400\">Now you’re a secret assassin who can quickly <span style=\"text-decoration: underline\">reverse engineer a WordPress website</span> and replicate it right from designing to website functionalities.</span></p>\n<p><span style=\"font-weight: 400\">If there is anything else you want on your site but couldn’t find how it is done, consider contacting the site owner directly. In most cases, they will guide you toward the source of functionality or developer who wrote it.</span></p>\n<p><b>Do you have any secret tool you use to replicate a WordPress website?</b><span style=\"font-weight: 400\"> I’d love to hear about it. Drop a comment and we can discuss it. Make sure to share this article with your WordPress lover friends who might find it helpful.</span></p>\n<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/wordpress-reverse-engineering/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://oceanwp.org/wordpress-reverse-engineering/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"12\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"6 Honest Reasons Your Website Should Hire a UX Designer\";s:7:\"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://oceanwp.org/6-honest-reasons-website-hire-ux-designer/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://oceanwp.org/6-honest-reasons-website-hire-ux-designer/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 May 2018 16:13: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:2:{i:0;a:5:{s:4:\"data\";s:11:\"Introducing\";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:\"Tutorial\";s:7:\"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://oceanwp.org/?p=132860\";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:1246:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/6-honest-reasons-website-hire-ux-designer/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/05/hire-wordpress-ux-designer.png\" width=\"1200\" height=\"600\" title=\"6 Honest Reasons Your Website Should Hire a UX Designer\" alt=\"6 Honest Reasons Your Website Should Hire a UX Designer\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\">&#8220;Your site looks okay, but it has poor UX.&#8221; It&#8217;s something we all fear hearing, but also something we will all hear at some point if we are serious about competing with bigger brands in our niche. In this post I&#8217;d like to explain 6 reasons your website or blog needs a UX overhaul and [&#8230;]<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/6-honest-reasons-website-hire-ux-designer/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"gregnarayan\";s: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:9813:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/6-honest-reasons-website-hire-ux-designer/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/05/hire-wordpress-ux-designer.png\" width=\"1200\" height=\"600\" title=\"6 Honest Reasons Your Website Should Hire a UX Designer\" alt=\"6 Honest Reasons Your Website Should Hire a UX Designer\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\"><p>&#8220;Your site looks okay, but it has poor UX.&#8221;</p>\n<p>It&#8217;s something we all fear hearing, but also something we will all hear at some point if we are serious about competing with bigger brands in our niche.</p>\n<p>In this post I&#8217;d like to explain 6 reasons your website or blog needs a UX overhaul and also how a better UX is closer than you might think. If that is, you&#8217;re willing to believe in it.</p>\n<p>UX aka User eXperience is a leading force in today&#8217;s online climate. Google knows where we look, Amazon knows where we click, and Apple hires entires firms to write 10 word sentences. The experience we all take for granted when we surf the web counts for a lot.</p>\n<p>So let&#8217;s dive in. Once you&#8217;re done, let us know in the comments if this post helped shape your view of UX at all!</p>\n<h2>1. People can&#8217;t find your best content</h2>\n<p>If people cannot find your best content, you&#8217;re doing a world of disservice. Yet still, many of us hide our best blog posts deep within our other content. We assume people should find our best work on their adventures on the blog or via Google. It <em>should</em> be found, right!?</p>\n<p>Wrong. You need to remind people where your best content is!</p>\n<p>The best UX designers and even just your average one will explain how you can position your best pages and blog posts in full screen banners, widgets and popups throughout your blog to maximize the exposure of your best work. Inevitably, this will increase conversions.</p>\n<p>Sure, you want eyeballs on all of your work because you could have just the other day created your new best piece of work, but don&#8217;t forget your best stuff of the past!</p>\n<h2>2. You&#8217;re losing subscribers</h2>\n<p>Are readers leaving your blog? Do the bounces add up? Do you even track those bounces?</p>\n<p>On nearly all of our blogs it&#8217;s a major problem to lose audience. That&#8217;s because you do the hard work to create content that draws an audience in to the blog, but don&#8217;t put that final effort in to close the deal.</p>\n<p>A UX designer can help you close the deal and <a href=\"https://oceanwp.org/convert-visitors-email-subscribers-keep-engaged-newsletters/\">increase subscribers</a>. The UX designer I&#8217;m working with now has reduced bounce rate on my homepage from 50% to 34%! He&#8217;s also recommended a popup plugin and has changed where the best content will be placed in positive ways.</p>\n<p>Listen, we all lose subs. You can&#8217;t catch em all. But you have to reward yourself at the same time. The reward comes in taking that final push to get people to subscribe, and knowing how to do so is key.</p>\n<h2>3. You can&#8217;t change your design easily</h2>\n<p>Imagine being the leader of a Star Wars battle and not knowing how your ships worked. You&#8217;d have a tough time when one of them went down. Heck, you&#8217;d even have a tough time positioning a few ships in front of the other.</p>\n<p>Along those same lines. you&#8217;d be totally screwed as a landscaping architect if you didn&#8217;t know how to offer a new layout to clients. What if people liked half your work, but wanted the other half different?</p>\n<p>As a successful blogger and webmaster, you have to be able to change your design. Cut the fat. Out with the old!</p>\n<p>If you can&#8217;t, you end up paying large amounts to a design firm to achieve a new look. While this can be a productive way to change your design, the costs can&#8217;t be avoided.</p>\n<p>Instead of relying on a new web design agency to change your design for you, you can install <a href=\"https://oceanwp.org/#download-oceanwp\">OceanWP</a> for free and hook yourself up with a free template. The combination of a free template and the Elementor Page Builder plugin will make sure your site is drag and drop. From there, you can allow any UX manager to recommend you put this box there, and that box over there.</p>\n<p>The drag and drop flexibility is a tool our predecessors would have given their kidney for, so you should at least try using it as it&#8217;s free.</p>\n<h2>4. You haven&#8217;t had a new &#8220;look&#8221; in years</h2>\n<p>If there&#8217;s even the slightest amount of dust on your blog, people will notice. Your blog look on day 1 is perfect, but that same look on day 365 is not the same.</p>\n<p>Plainly put, the Internet evolves. People get bored, fast. Can you imagine if Google, Amazon or Facebook used the same look for 3 years? That would be madness! We look on the designs of the past and look fondly, but they are relics we&#8217;d rather never use again.</p>\n<p>Here&#8217;s how to use OceanWP and Elementor to give your blog a design rehaul with unlimited possibilities for a great new look:</p>\n<p>A good UX designer is your start to a new look, and with OceanWP as the foundation of your site that new look is one that your UX guy, and let your own WordPress design skills, can surely build by now.</p>\n<h2>5. You have a budget surplus but continue spending it on Facebook ads</h2>\n<p>As you approach the higher tiers of blogging, web design, coaching, online marketing, paid advertising or whatever it may be, we always find ourselves with that nice budget surplus once monthly expenses have been paid. What better way to spend that extra cash than reinvest into the business to make it all run even smoother?</p>\n<p>Simply put, spending more on advertising won&#8217;t increase your conversions if your landing pages aren&#8217;t convertible. In fact, <a href=\"https://moz.com/blog/on-page-seo-changes-case-study\" target=\"_blank\" rel=\"noopener\">UX case studies have shown</a> that landing page traffic which converts is most often from Organic Search! That means the money you spend on paid ads could be entirely worthless! (Don&#8217;t tell Facebook I just said that!)</p>\n<p>Bottom line &#8211; spending your surplus earnings on the right factors on your website can result in even more conversions, but you have spend your money on the USERS, not on your own ego.</p>\n<h2>6. You&#8217;re the only set of eyeballs with any judgment say on the block</h2>\n<p>The final reason you need to hire a UX manager for your site is the simple rule of self-solidarity: you will always win an argument against yourself. What this means it that if you want to add a new feature to your site, or delete something crucial, and you&#8217;re the only one at the board meeting, you&#8217;ll always get your way!</p>\n<p>However, being the only set of eyeballs on your site is a dangerous reality and I&#8217;ll tell you why.</p>\n<p>When you create a website or blog, and pour your blood, sweat and tears into it, you&#8217;re in a very unique position: you built it, understand it, and love it. You are the <em>only person in the world</em> in this position.</p>\n<p>That very fact puts you at a <em>significant disadvantage</em> when it comes to judging the website for it&#8217;s worth. That&#8217;s because you will always overvalue the design which you created.</p>\n<p>To solve this problem, simply bring in a friend (they don&#8217;t even have to be a UX specialist) and buy them a nice cup of coffee to sit for 30 minutes and look over your site, recording any obvious flaws they notice. The &#8220;<a href=\"http://www.dearblogger.org/best-friend-test-how-to-prepare-your-blog-for-launch/\" target=\"_blank\" rel=\"noopener\">best friend test</a>&#8221; is truly priceless, the things your friend (assuming they are your friend) says can and should play a large influence on how you go about designing your website or blog from that day forward.</p>\n<h2>Conclusion &#8211; Hear from you!</h2>\n<p>Of course, any WordPress blog needs a good <a href=\"http://jonmiron.com/\" target=\"_blank\" rel=\"noopener\">WordPress UX designer</a>, and you can follow the link to find out the trusted designer who powers my blogs (though he has no idea I wrote this post, so he&#8217;ll be happily surprised to hear from you.) The point is, as is shown from the 6 examples above, it can not only be costly but also dangerous to your brand to not address UX concerns that inevitably pop up on most websites over time. You could be working on <em>many</em> of the right things but <em>overlooking</em> the one most important thing: your user experience.</p>\n<p><strong>Have you considered hiring a UX designer? Does the OceanWP theme help you site&#8217;s UX? I&#8217;d be more than happy to discuss your thoughts and ideas, just hit up the Leave a Reply section below!</strong></p>\n<p><em>Greg Narayan creates beginner guides to setup <a href=\"http://www.dearblogger.org/wordpress-blog-with-hostgator-hosting\" target=\"_blank\" rel=\"noopener\">self hosted WordPress</a>, build a blog brand. rank in Google, advertise to earn money on your blogs and generally helps others learn how to start a blog while maintaining a positive, caring outlook. </em></p>\n<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/6-honest-reasons-website-hire-ux-designer/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://oceanwp.org/6-honest-reasons-website-hire-ux-designer/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:42:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"How to Make your Site GDPR Compliant?\";s:7:\"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://oceanwp.org/make-site-gdpr-compliant/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://oceanwp.org/make-site-gdpr-compliant/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 28 Apr 2018 23:21: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Tutorial\";s:7:\"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://oceanwp.org/?p=125229\";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:1159:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/make-site-gdpr-compliant/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/04/gdpr.jpg\" width=\"1200\" height=\"600\" title=\"How to Make your Site GDPR Compliant?\" alt=\"How to Make your Site GDPR Compliant?\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\">Many articles talk about this topic, I talk about this too because it is very important to make your website GDPR compliant. In this post, I will show that it is not very complicated. First, What is GDPR? The General Data Protection Regulation (GDPR) is the new reference text at European level for the protection [&#8230;]<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/make-site-gdpr-compliant/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nicolas Lecocq\";s: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:17304:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/make-site-gdpr-compliant/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/04/gdpr.jpg\" width=\"1200\" height=\"600\" title=\"How to Make your Site GDPR Compliant?\" alt=\"How to Make your Site GDPR Compliant?\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\">		<div class=\"elementor elementor-125229\">\n			<div class=\"elementor-inner\">\n				<div class=\"elementor-section-wrap\">\n							<section data-id=\"7f8d7800\" class=\"elementor-element elementor-element-7f8d7800 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-element_type=\"section\">\n						<div class=\"elementor-container elementor-column-gap-default\">\n				<div class=\"elementor-row\">\n				<div data-id=\"5f3d812c\" class=\"elementor-element elementor-element-5f3d812c elementor-column elementor-col-100 elementor-top-column\" data-element_type=\"column\">\n			<div class=\"elementor-column-wrap elementor-element-populated\">\n					<div class=\"elementor-widget-wrap\">\n				<div data-id=\"29c06057\" class=\"elementor-element elementor-element-29c06057 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">Many articles talk about this topic, I talk about this too because it is very important to make your website GDPR compliant. In this post, I will show that it is not very complicated.</div>\n				</div>\n				</div>\n						</div>\n			</div>\n		</div>\n						</div>\n			</div>\n		</section>\n				<section data-id=\"58984f37\" class=\"elementor-element elementor-element-58984f37 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-element_type=\"section\">\n						<div class=\"elementor-container elementor-column-gap-default\">\n				<div class=\"elementor-row\">\n				<div data-id=\"5f807d55\" class=\"elementor-element elementor-element-5f807d55 elementor-column elementor-col-100 elementor-top-column\" data-element_type=\"column\">\n			<div class=\"elementor-column-wrap elementor-element-populated\">\n					<div class=\"elementor-widget-wrap\">\n				<div data-id=\"5cca34d2\" class=\"elementor-element elementor-element-5cca34d2 elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h3 class=\"elementor-heading-title elementor-size-default\">First, What is GDPR?\n</h3>		</div>\n				</div>\n				<div data-id=\"609aef4b\" class=\"elementor-element elementor-element-609aef4b elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>The General Data Protection Regulation (GDPR) is the new reference text at European level for the protection of personal data. It strengthens and unifies data protection for individuals in the European Union.</p></div>\n				</div>\n				</div>\n				<div data-id=\"16a4be82\" class=\"elementor-element elementor-element-16a4be82 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>This regulation will enter into account from <strong>May 25, 2018</strong>. If your site is not GDPR compliant, you risk heavy penalties. I think sites will be punished after a few months but it is still better to do it now ?</p></div>\n				</div>\n				</div>\n						</div>\n			</div>\n		</div>\n						</div>\n			</div>\n		</section>\n				<section data-id=\"286975f8\" class=\"elementor-element elementor-element-286975f8 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-element_type=\"section\">\n						<div class=\"elementor-container elementor-column-gap-default\">\n				<div class=\"elementor-row\">\n				<div data-id=\"2fe0f44d\" class=\"elementor-element elementor-element-2fe0f44d elementor-column elementor-col-100 elementor-top-column\" data-element_type=\"column\">\n			<div class=\"elementor-column-wrap elementor-element-populated\">\n					<div class=\"elementor-widget-wrap\">\n				<div data-id=\"76c4e516\" class=\"elementor-element elementor-element-76c4e516 elementor-widget elementor-widget-divider\" data-element_type=\"divider.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-divider\">\n			<span class=\"elementor-divider-separator\"></span>\n		</div>\n				</div>\n				</div>\n				<div data-id=\"704f661a\" class=\"elementor-element elementor-element-704f661a elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h3 class=\"elementor-heading-title elementor-size-default\">Who is concerned?\n</h3>		</div>\n				</div>\n				<div data-id=\"eff887c\" class=\"elementor-element elementor-element-eff887c elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">Unless your site is outside the European Union and no country in the European Union can access it, everyone is concerned.</div>\n				</div>\n				</div>\n						</div>\n			</div>\n		</div>\n						</div>\n			</div>\n		</section>\n				<section data-id=\"401a0b6c\" class=\"elementor-element elementor-element-401a0b6c elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-element_type=\"section\">\n						<div class=\"elementor-container elementor-column-gap-default\">\n				<div class=\"elementor-row\">\n				<div data-id=\"5be41ff\" class=\"elementor-element elementor-element-5be41ff elementor-column elementor-col-100 elementor-top-column\" data-element_type=\"column\">\n			<div class=\"elementor-column-wrap elementor-element-populated\">\n					<div class=\"elementor-widget-wrap\">\n				<div data-id=\"f4470b4\" class=\"elementor-element elementor-element-f4470b4 elementor-widget elementor-widget-divider\" data-element_type=\"divider.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-divider\">\n			<span class=\"elementor-divider-separator\"></span>\n		</div>\n				</div>\n				</div>\n				<div data-id=\"146d9816\" class=\"elementor-element elementor-element-146d9816 elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h3 class=\"elementor-heading-title elementor-size-default\">What should I do?\n</h3>		</div>\n				</div>\n				<div data-id=\"440eb01e\" class=\"elementor-element elementor-element-440eb01e elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">First, understand that I am not a lawyer, just a developer who has read many things about it, so contact a lawyer to be sure your site is GDPR compliant would be a good thing.</div>\n				</div>\n				</div>\n				<div data-id=\"4c7cfa59\" class=\"elementor-element elementor-element-4c7cfa59 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>Make a site GDPR compliant is different for each site but here are some points to check:</p></div>\n				</div>\n				</div>\n				<div data-id=\"2915656\" class=\"elementor-element elementor-element-2915656 elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h4 class=\"elementor-heading-title elementor-size-default\">1. Google Analytics</h4>		</div>\n				</div>\n				<div data-id=\"28b550\" class=\"elementor-element elementor-element-28b550 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">It depends on how you use Google Analytics on your site but this point is very important. For my part, I use Google Analytics to track visitors and cookies to collect data. The collected data are processed anonymously.\n<br>\nIn order to be compliant with the new regulation, Google included a <a href=\"https://www.google.com/analytics/terms/dpa/dataprocessingamendment_20130906.html\" target=\"_blank\" rel=\"noopener\">data processing amendment</a>.</div>\n				</div>\n				</div>\n				<div data-id=\"5b896f0\" class=\"elementor-element elementor-element-5b896f0 elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h4 class=\"elementor-heading-title elementor-size-default\">2. Your Forms</h4>		</div>\n				</div>\n				<div data-id=\"63b3852d\" class=\"elementor-element elementor-element-63b3852d elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">Every form on your website that collects data like names or email addresses needs to have a checkbox for the user to consent the storage of their data.</div>\n				</div>\n				</div>\n				<div data-id=\"57e5280c\" class=\"elementor-element elementor-element-57e5280c elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">Great people created an amazing free plugin called <a href=\"https://wordpress.org/plugins/wp-gdpr-compliance/\" target=\"_blank\" rel=\"noopener\">WP GDPR Compliance</a>, it is fully compatible with Contact Form 7, Gravity Forms, WooCommerce and probably more plugins in the future.\n<br>\nI don&#8217;t really understand why it has bad reviews, I think many users didn&#8217;t really understand its purpose or maybe it was not as good as it is now, but this plugin doesn&#8217;t make your site automatically GDPR compliant but help you a lot to make the task easier.</div>\n				</div>\n				</div>\n				<div data-id=\"2e7fb8\" class=\"elementor-element elementor-element-2e7fb8 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">In the next release of this plugin, your users will be able to send a request to see all their data present in your database and also to request their data to be anonymized.</div>\n				</div>\n				</div>\n				<div data-id=\"1193479\" class=\"elementor-element elementor-element-1193479 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>WP GDPR Compliance is very simple to use, you just need to activate it and go to <strong>Tools &gt; WP GDPR Compliance</strong>. I use Gravity Forms on my site, so I added the checkboxes on all my forms and for the WordPress Comments too.</p></div>\n				</div>\n				</div>\n				<div data-id=\"e82ea86\" class=\"elementor-element elementor-element-e82ea86 elementor-widget elementor-widget-image\" data-element_type=\"image.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-image\">\n										<img width=\"1024\" height=\"600\" src=\"https://oceanwp.org/wp-content/uploads/2018/04/wp-gdpr-compliance.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"//oceanwp.org/wp-content/uploads/2018/04/wp-gdpr-compliance.jpg 1024w, //oceanwp.org/wp-content/uploads/2018/04/wp-gdpr-compliance-300x176.jpg 300w, //oceanwp.org/wp-content/uploads/2018/04/wp-gdpr-compliance-768x450.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											</div>\n				</div>\n				</div>\n				<div data-id=\"3d2e741\" class=\"elementor-element elementor-element-3d2e741 elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h4 class=\"elementor-heading-title elementor-size-default\">3. eCommerce</h4>		</div>\n				</div>\n				<div data-id=\"d83de27\" class=\"elementor-element elementor-element-d83de27 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">WooCommerce work on a new update to make their plugin GDPR compliant so you will probably have to do nothing on that side. I don&#8217;t know about Easy Digital Downloads but they will probably do a similar thing too.\n<br>\nThere is also WP GDPR Compliance who have a setting for WooCommerce.</div>\n				</div>\n				</div>\n				<div data-id=\"ca0ca65\" class=\"elementor-element elementor-element-ca0ca65 elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h4 class=\"elementor-heading-title elementor-size-default\">4. Privacy Policy Page</h4>		</div>\n				</div>\n				<div data-id=\"ff28cb6\" class=\"elementor-element elementor-element-ff28cb6 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">If it is not already done, you need to create a <strong>Privacy Policy</strong> page to tell your users how you use their data. For example, if you request a user&#8217;s name and email for a form that serves as your support, you must say that you are using their data to contact them and help them with their problem.\n<br>\nYou can take example of my page if you want: <a href=\"https://oceanwp.org/privacy-policy/\">https://oceanwp.org/privacy-policy/</a></div>\n				</div>\n				</div>\n						</div>\n			</div>\n		</div>\n						</div>\n			</div>\n		</section>\n				<section data-id=\"cc17d66\" class=\"elementor-element elementor-element-cc17d66 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-element_type=\"section\">\n						<div class=\"elementor-container elementor-column-gap-default\">\n				<div class=\"elementor-row\">\n				<div data-id=\"13a67a5d\" class=\"elementor-element elementor-element-13a67a5d elementor-column elementor-col-100 elementor-top-column\" data-element_type=\"column\">\n			<div class=\"elementor-column-wrap elementor-element-populated\">\n					<div class=\"elementor-widget-wrap\">\n				<div data-id=\"71803480\" class=\"elementor-element elementor-element-71803480 elementor-widget elementor-widget-divider\" data-element_type=\"divider.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-divider\">\n			<span class=\"elementor-divider-separator\"></span>\n		</div>\n				</div>\n				</div>\n				<div data-id=\"3fbb0aa5\" class=\"elementor-element elementor-element-3fbb0aa5 elementor-widget elementor-widget-heading\" data-element_type=\"heading.default\">\n				<div class=\"elementor-widget-container\">\n			<h3 class=\"elementor-heading-title elementor-size-default\">Conclusion</h3>		</div>\n				</div>\n				<div data-id=\"700706a9\" class=\"elementor-element elementor-element-700706a9 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\"><p>You can see in this post that it is not difficult to make a WordPress site GDPR compliant. You just have to keep in mind that every time you collect personal data from a European user, you have to let them know that their data is being collected.</p></div>\n				</div>\n				</div>\n				<div data-id=\"d410637\" class=\"elementor-element elementor-element-d410637 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">To go deeper, you can read this great post on the Kinsta blog which explains many things about GDPR: <a href=\"https://kinsta.com/blog/gdpr-compliance/\" target=\"_blank\" rel=\"noopener\">https://kinsta.com/blog/gdpr-compliance/</a></div>\n				</div>\n				</div>\n				<div data-id=\"a9bfb91\" class=\"elementor-element elementor-element-a9bfb91 elementor-widget elementor-widget-text-editor\" data-element_type=\"text-editor.default\">\n				<div class=\"elementor-widget-container\">\n					<div class=\"elementor-text-editor elementor-clearfix\">Do not hesitate to ask questions in comment if you misunderstood a point or if you think I forgot to talk about something.</div>\n				</div>\n				</div>\n						</div>\n			</div>\n		</div>\n						</div>\n			</div>\n		</section>\n						</div>\n			</div>\n		</div>\n		<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/make-site-gdpr-compliant/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://oceanwp.org/make-site-gdpr-compliant/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"24\";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:42:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"5 Amazing Tips to Optimize Your Website Speed and Improve SEO Ranking\";s:7:\"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://oceanwp.org/5-amazing-tips-optimize-website-speed-improve-seo-ranking/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://oceanwp.org/5-amazing-tips-optimize-website-speed-improve-seo-ranking/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Apr 2018 16:07:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Introducing\";s:7:\"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://oceanwp.org/?p=123353\";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:1332:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/5-amazing-tips-optimize-website-speed-improve-seo-ranking/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/04/website-speed.png\" width=\"1200\" height=\"600\" title=\"5 Amazing Tips to Optimize Your Website Speed and Improve SEO Ranking\" alt=\"5 Amazing Tips to Optimize Your Website Speed and Improve SEO Ranking\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\">Whether you are running a blog, website or online store, search engine optimization can help your business meet all the expected objectives. However, you will need to keep an eye on the updates in the search engine world. As the Search Engine Optimization area is filled with ever-changing recommendations from different sources, you must discover [&#8230;]<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/5-amazing-tips-optimize-website-speed-improve-seo-ranking/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Gediminas Buciunas\";s: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:8418:\"<p style=\"display: block; padding: 0 0 24px; margin: 0 !important;\"><a href=\"https://oceanwp.org/5-amazing-tips-optimize-website-speed-improve-seo-ranking/\" target=\"_blank\"><img src=\"https://oceanwp.org/wp-content/uploads/2018/04/website-speed.png\" width=\"1200\" height=\"600\" title=\"5 Amazing Tips to Optimize Your Website Speed and Improve SEO Ranking\" alt=\"5 Amazing Tips to Optimize Your Website Speed and Improve SEO Ranking\" style=\"width: 100%!important;\"></a></p><p style=\"padding: 0 26px !important; margin: 0 !important;\"><p>Whether you are running a blog, website or online store, search engine optimization can help your business meet all the expected objectives. However, you will need to keep an eye on the updates in the search engine world. As the Search Engine Optimization area is filled with ever-changing recommendations from different sources, you must discover which SEO techniques are best suited for your business.</p>\n<p>In late 2010 Google publicly announced that website speed will be counted as a ranking factor. Since then, website speed optimization has turned into a crucial part of SEO strategy. Though it has become a big SEO agenda in the modern time, most website owners still don’t know how to perform speed optimization accurately to get a good ranking in the search engine results.</p>\n<p>If you want to speed up the overall performance of your website, this post is for you. We will disclose some promising speed optimization techniques, which will help you improve WordPress speed and performance in 2018.</p>\n<h2>Eliminate Render-Blocking JavaScript and CSS</h2>\n<p>The very first thing you should consider while analyzing website speed is checking if any JavaScript or CSS causes render-blocking. Extensive amounts of JavaScript and CSS can prevent your site from loading quickly and can cause overall page slowness.</p>\n<p>Most website owners are not aware of what render-blocking is and therefore, never take any step to eliminate it. In short, it is a term for elements that prevent a web page from rendering in a users browser.</p>\n<p>Most SEO experts suggest minifying CSS and JavaScript. However, the best solution to prevent this issue completely should be eliminating render-blocking and JavaScript in the above the fold content. There are plenty online resources that suggest the same. If you are unable to find a good one, read 000webhost.com post on <a href=\"https://www.000webhost.com/blog/eliminate-render-blocking-javascript-and-css-in-above-the-fold-content/\">how to eliminate render-blocking JavaScript in above-the-fold content</a>.</p>\n<h2>Reduce HTTP Requests</h2>\n<p>This is one of the frequently suggested techniques to optimize website speed. Your browser is able to fetch data from a server with the help of Hypertext Transfer Protocol. However, if your page makes more Hypertext Transfer Protocol requests, it will automatically become slower.</p>\n<p>There are numerous ways you can reduce the number of HTTP requests. Some of the popular ones are:</p>\n<ul>\n<li>Try using CSS Sprites</li>\n<li>Reduce the number of 3rd party Plugins making unnecessary external requests</li>\n<li>Never user 3rd party frameworks until they are seriously needed</li>\n<li>Try to use less code</li>\n<li>Inline your JavaScript</li>\n</ul>\n<h2>Optimize Your Website Images</h2>\n<p><img class=\"aligncenter size-full wp-image-123363\" src=\"https://oceanwp.org/wp-content/uploads/2018/04/reduce-image-size.png\" alt=\"Reducing image size to improve website speed\" width=\"800\" height=\"535\" srcset=\"//oceanwp.org/wp-content/uploads/2018/04/reduce-image-size.png 800w, //oceanwp.org/wp-content/uploads/2018/04/reduce-image-size-300x201.png 300w, //oceanwp.org/wp-content/uploads/2018/04/reduce-image-size-768x514.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" /></p>\n<p>In most cases, excessive image size is the real culprit behind slow loading speed. According to a report, approximately 64% of a website’s content is made up of images. As a result, image optimization must be your biggest step to improve the overall performance. There are numerous tools which you can use to optimize images on your site. Some of the popular image optimization tools are:</p>\n<ul>\n<li>JPEG Optimizer</li>\n<li>Optimizilla</li>\n<li>ImageRecycle</li>\n<li>Octify</li>\n</ul>\n<p>If you run a WordPress site, you may try to install the <a href=\"https://goo.gl/pZ5pdU\">Octify plugin</a> on your site. This amazing tool automatically converts images. It supports almost all kinds of image formats such as JPG, PNG, GIF, etc. Even on its free plan, the plugin has no file size limits, which means you can upload even a 1GB single image without paying a single penny! So, if you want to improve your SEO ranking and sales, we strongly suggest optimizing your images with a WordPress plugin.</p>\n<h2>Avoid Latency Using a CDN</h2>\n<p>For those who are not familiar with CDN, it is a group of web servers distributed across multiple locations. CDN or Content Delivery Network helps in transporting content quickly to users based on their location.</p>\n<p>Overall, it reduces the distance between your website’s server and your users by storing a cached version of its content across the multiple geographical locations, known as points of presence. And each point of presence has a number of caching servers that are accountable for providing content to your audience within its closeness. Which server will be responsible for the delivery of content is decided by the measure of network presence. In general, the server that has fewer network hops when utilizing a CDN.</p>\n<p>In short, Content Delivery Network helps you speed up the delivery of your content across the globe. Undoubtedly, it can decrease your latency to a great extent.</p>\n<h2>Optimize Your Database</h2>\n<p>If you’re running a blog, website or eCommerce store, then most probably you are using a database to store the data of your site. However, you don’t know that your database can impact your page speed if it is not optimized accurately.</p>\n<p>You can add an index to your database to optimize your database for page speed. By adding an index, your database will be able to find any information faster as it does not need scan millions of records.</p>\n<h2>Eliminate 404 Errors</h2>\n<p>404 Error occurs when you try to access a web page that no longer exists on the server. In short, any missing file can generate a 404 error.</p>\n<p>You will be surprised to know between 60 to 100 MB of memory is consumed on a server to deliver a 404 error. If the count of 404 errors is high on your site, it can be very harmful to the performance of your website and kill your conversions as well. You may use <a href=\"http://www.brokenlinkcheck.com/\">Online Broken Link Checker</a> tool to find the list of broken links.</p>\n<h2 class=\"p3\">Find Some Effective Ways to Reduce TTFB</h2>\n<p>TTFB stands for Time to the first byte. It is the measurement of the responsiveness of a web server. TTFB time is calculated as HTTP request time + process request time + HTTP response time. It is a time the server waits before getting its first byte of the data from the server. If you want to speed up your website, it should be below 200 ms as per Google recommendations. You may use Chrome Developers Tools to check the time to the first byte. Investing in a reliable DNS provider and Content Delivery Network may prove a good solution to reduce your overall TTFB.</p>\n<h2>Conclusion</h2>\n<p>In this guide, we&#8217;ve discussed 5 ways to improve the speed and performance of a WordPress website, which includes:</p>\n<ul>\n<li>Eliminating render-blocking JavaScript and CSS</li>\n<li>Optimizing website images</li>\n<li>Using a content delivery network</li>\n<li>Eliminating 404 errors</li>\n<li>Reducing TTFB</li>\n</ul>\n<p>What technique do you use to enhance the overall performance of your site? Feel free to share your experience with us in the comments below. We would love to hear from you!</p>\n<p style=\"margin: 0!important;padding: 26px 0 0!important;\"><a href=\"https://oceanwp.org/5-amazing-tips-optimize-website-speed-improve-seo-ranking/\" target=\"_blank\" style=\"display: inline-block; padding: 10px 30px; color: #ffffff; background-color: #13aff0; border-radius: 30px; font-size: 13px; font-weight: bold; line-height: 1.4; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 1px;\">Read More</a></p></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://oceanwp.org/5-amazing-tips-optimize-website-speed-improve-seo-ranking/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s: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:25:\"https://oceanwp.org/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:15:{s:4:\"date\";s:29:\"Sun, 05 Aug 2018 19:09:04 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:10:\"set-cookie\";s:128:\"__cfduid=d6ffd4882091508435a5bb6b5f068a0831533496143; expires=Mon, 05-Aug-19 19:09:03 GMT; path=/; domain=.oceanwp.org; HttpOnly\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-cf-powered-by\";s:17:\"WP Rocket 3.0.5.1\";s:13:\"last-modified\";s:29:\"Fri, 03 Aug 2018 21:05:54 GMT\";s:4:\"etag\";s:36:\"W/\"872f5e1653a7309e61664a0413f99039\"\";s:15:\"x-ua-compatible\";s:7:\"IE=edge\";s:4:\"link\";s:56:\"<https://oceanwp.org/wp-json/>; rel=\"https://api.w.org/\"\";s:14:\"x-kinsta-cache\";s:3:\"HIT\";s:16:\"content-encoding\";s:4:\"gzip\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:9:\"expect-ct\";s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";s:6:\"server\";s:10:\"cloudflare\";s:6:\"cf-ray\";s:20:\"445b8e538dc55a44-BOS\";}}s:5:\"build\";s:14:\"20180207075304\";}','no'),(257,'current_theme','OceanWP','yes'),(258,'theme_mods_oceanwp','a:34:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:9:\"main_menu\";i:6;s:11:\"mobile_menu\";i:0;s:11:\"footer_menu\";i:7;}s:18:\"custom_css_post_id\";i:-1;s:18:\"ocean_header_style\";s:11:\"transparent\";s:19:\"ocean_header_height\";s:3:\"106\";s:30:\"ocean_has_header_border_bottom\";b:0;s:23:\"ocean_header_background\";s:7:\"#81d742\";s:25:\"ocean_top_bar_top_padding\";s:1:\"8\";s:16:\"ocean_top_bar_bg\";s:7:\"#000000\";s:13:\"ocean_top_bar\";b:0;s:27:\"ocean_transparent_header_bg\";s:7:\"#ffffff\";s:21:\"ocean_menu_link_color\";s:7:\"#000000\";s:27:\"ocean_menu_link_color_hover\";s:7:\"#000000\";s:23:\"ocean_menu_search_style\";s:8:\"disabled\";s:15:\"logo_typography\";a:2:{s:9:\"font-size\";s:2:\"18\";s:11:\"font-family\";s:16:\"Permanent Marker\";}s:15:\"menu_typography\";a:4:{s:14:\"text-transform\";s:9:\"uppercase\";s:14:\"letter-spacing\";d:1.8;s:9:\"font-size\";s:2:\"12\";s:11:\"font-family\";s:28:\"Arial, Helvetica, sans-serif\";}s:16:\"ocean_logo_color\";s:7:\"#0f0d0d\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1522800917;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"sidebar\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:14:\"search_sidebar\";a:0:{}s:10:\"footer-one\";a:0:{}s:10:\"footer-two\";a:0:{}s:12:\"footer-three\";a:0:{}s:11:\"footer-four\";a:0:{}}}s:23:\"ocean_main_layout_style\";s:8:\"separate\";s:19:\"ocean_search_layout\";s:10:\"full-width\";s:22:\"ocean_background_image\";s:65:\"http://evergreenwellness.com/wp-content/uploads/2018/04/green.png\";s:32:\"ocean_header_image_overlay_color\";s:7:\"#277f2e\";s:19:\"ocean_menu_position\";s:11:\"center-menu\";s:24:\"ocean_menu_items_padding\";s:1:\"9\";s:30:\"ocean_dropdown_menu_background\";s:20:\"rgba(53,130,40,0.85)\";s:30:\"ocean_dropdown_menu_top_border\";s:20:\"rgba(249,19,81,0.79)\";s:35:\"ocean_dropdown_category_title_color\";s:7:\"#81d742\";s:23:\"ocean_mobile_menu_style\";s:7:\"sidebar\";s:32:\"ocean_mobile_menu_sidr_direction\";s:5:\"right\";s:26:\"ocean_menu_link_background\";s:0:\"\";s:23:\"ocean_header_full_width\";b:0;s:26:\"ocean_header_border_bottom\";s:7:\"#63d611\";s:23:\"ocean_menu_links_effect\";s:3:\"ten\";s:34:\"ocean_menu_links_effect_dark_color\";s:7:\"#589e03\";}','yes'),(259,'theme_switched','','yes'),(261,'ocean-extra-version','1.4.10','yes'),(262,'widget_ocean_about_me','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(263,'widget_ocean_contact_info','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(264,'widget_ocean_custom_links','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(265,'widget_ocean_custom_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(266,'widget_ocean_facebook','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(267,'widget_ocean_flickr','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(268,'widget_ocean_instagram','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(269,'widget_ocean_mailchimp','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(270,'widget_ocean_recent_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(273,'widget_ocean_twitter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(274,'widget_ocean_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(275,'widget_ocean_custom_header_logo','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(276,'widget_ocean_custom_header_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(278,'ocean_extra_installed_time','1522533844','yes'),(3859,'updraft_s3','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-09bf8617512624dd5aa77dd4e88f7792\";a:3:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(3860,'updraft_cloudfiles','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-30875973f59264a4f7e7e451fb62856a\";a:5:{s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"region\";s:3:\"DFW\";s:4:\"user\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(3861,'updraft_googledrive','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-8667d6e545ceb9e259d444398123c058\";a:9:{s:8:\"clientid\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:5:\"token\";s:0:\"\";s:6:\"folder\";s:11:\"UpdraftPlus\";s:7:\"user_id\";s:64:\"a9024c8ebde1df80522ce4742f2edb0b9abd201594302756ffce337617db5d7a\";s:16:\"tmp_access_token\";a:4:{s:12:\"access_token\";s:131:\"ya29.GlwJBtJbniRWJ5grhB98DX5Sm3vcsDbZicckarSS0ddfWaxmgbq-Ljir2PKwPxenDd9EAMwk3catK8DDnDv7DocLD6AsWeKMryl8VYfTST9Q050vA11dXB2R86tdYQ\";s:7:\"created\";i:1533080636;s:10:\"expires_in\";i:3600;s:13:\"refresh_token\";s:0:\"\";}s:10:\"expires_in\";i:1533084206;s:9:\"ownername\";s:9:\"Qizhi Gao\";s:16:\"instance_enabled\";i:1;}}}','yes'),(3862,'updraft_onedrive','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(3863,'updraft_ftp','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-ee38c83a5082756748632659d97a6685\";a:5:{s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"path\";s:0:\"\";s:7:\"passive\";s:1:\"1\";}}}','yes'),(3864,'updraft_azure','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(3887,'updraft_include_uploads_exclude','backup*,*backups,backwpup*,wp-clone,snapshots','yes'),(3865,'updraft_sftp','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(3886,'updraft_include_uploads','1','yes'),(3866,'updraft_googlecloud','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(3885,'updraft_include_themes','1','yes'),(3867,'updraft_backblaze','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(3884,'updraft_include_plugins','1','yes'),(3868,'updraft_webdav','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(3869,'updraft_s3generic','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-d9e5cc3878204f1c2a4da53c595af9e4\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:0:\"\";}}}','yes'),(3870,'updraft_openstack','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-cd7ef01b05005b66634a9fde7e529bda\";a:6:{s:7:\"authurl\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:6:\"region\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(3871,'updraft_dreamobjects','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-c9f9ae11c24a29ad9e2d82bfc6496bd3\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:26:\"objects-us-west-1.dream.io\";}}}','yes'),(3872,'updraftplus-addons_siteid','b9a069c1e248cdd5cc03c9ea3cef0dae','no'),(3873,'updraft_retain_extrarules','a:0:{}','yes'),(3874,'updraft_email','','yes'),(3875,'updraft_report_warningsonly','a:0:{}','yes'),(3876,'updraft_report_wholebackup','a:0:{}','yes'),(3877,'updraft_extradbs','a:0:{}','yes'),(3878,'updraft_include_more_path','a:0:{}','yes'),(3879,'updraft_interval','manual','yes'),(3880,'updraft_retain','2','yes'),(3881,'updraft_interval_database','manual','yes'),(3882,'updraft_retain_db','2','yes'),(3883,'updraft_service','googledrive','yes'),(3888,'updraft_include_others','1','yes'),(3889,'updraft_include_others_exclude','upgrade,cache,updraft,backup*,*backups,mysql.sql,debug.log','yes'),(3857,'updraft_updraftvault','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-0f7fc827261178c3d9641bf051b90a15\";a:3:{s:5:\"token\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"quota\";i:-1;}}}','yes'),(3858,'updraft_dropbox','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-49e736db797ef7e6489be318e6d7308e\";a:4:{s:6:\"appkey\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:1:\"0\";}}}','yes'),(3890,'updraft_split_every','400','yes'),(3891,'updraft_delete_local','1','yes'),(3892,'updraft_dir','updraft','yes'),(3893,'updraft_debug_mode','0','yes'),(3894,'updraft_ssl_useservercerts','0','yes'),(3895,'updraft_ssl_disableverify','0','yes'),(3896,'updraft_ssl_nossl','0','yes'),(3897,'updraft_lastmessage','The backup apparently succeeded and is now complete (Jul 31 23:52:25)','yes'),(3898,'updraftplus_unlocked_fd','1','no'),(3899,'updraftplus_last_lock_time_fd','2018-07-31 23:51:49','no'),(3900,'updraftplus_semaphore_fd','0','no'),(3901,'updraft_last_scheduled_fd','1533081109','yes'),(3903,'updraft_backup_history','a:2:{i:1533081109;a:18:{s:7:\"plugins\";a:1:{i:0;s:68:\"backup_2018-07-31-2351_evergreenwellnesscom_de2f13101776-plugins.zip\";}s:12:\"plugins-size\";i:10651479;s:6:\"themes\";a:1:{i:0;s:67:\"backup_2018-07-31-2351_evergreenwellnesscom_de2f13101776-themes.zip\";}s:11:\"themes-size\";i:16474799;s:7:\"uploads\";a:1:{i:0;s:68:\"backup_2018-07-31-2351_evergreenwellnesscom_de2f13101776-uploads.zip\";}s:12:\"uploads-size\";i:19485781;s:6:\"others\";a:1:{i:0;s:67:\"backup_2018-07-31-2351_evergreenwellnesscom_de2f13101776-others.zip\";}s:11:\"others-size\";i:1971;s:2:\"db\";s:62:\"backup_2018-07-31-2351_evergreenwellnesscom_de2f13101776-db.gz\";s:7:\"db-size\";i:378048;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"84b900f95598088a11f2ae5abcabaf3d6187b076\";s:7:\"themes0\";s:40:\"10b14836e78a3a61064ed598a260c166845295c3\";s:8:\"uploads0\";s:40:\"e40c21fc9fdad7b601d40c19fd24145a90ebb855\";s:7:\"others0\";s:40:\"f5bca8076bde57f5a34f935c893f2e64cbe373a8\";s:3:\"db0\";s:40:\"85238efe487a868990189c18602d2f8c68d4eaf6\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"6c05be0ce820df3f7c19b2949a5d2c20faff185bd8e1d5cd7ac708951e4bc8e9\";s:7:\"themes0\";s:64:\"91d68858f2dbed149e19ecfb66219c6d27bba2755a5df2b181f55ce03b85d89d\";s:8:\"uploads0\";s:64:\"e2bb4336061a146e78abcfe2e22da5f28000f380ed1b3592477ac0b34bf36dc0\";s:7:\"others0\";s:64:\"4614fdbf7af5fd934b94df8479f2929df00e91fe40b9a303f75b9250cf553aa4\";s:3:\"db0\";s:64:\"0936d8c7c673cc0011161d562ee81db3ea309db0f5557dc6c256bf3083cfdb84\";}}s:5:\"nonce\";s:12:\"de2f13101776\";s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-8667d6e545ceb9e259d444398123c058\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1533081109;s:6:\"themes\";i:1533081111;s:7:\"uploads\";i:1533081112;s:6:\"others\";i:1533081113;}s:18:\"created_by_version\";s:7:\"1.14.12\";s:12:\"is_multisite\";b:0;}i:1533080716;a:18:{s:7:\"plugins\";a:1:{i:0;s:68:\"backup_2018-07-31-2345_evergreenwellnesscom_e46682b01cb5-plugins.zip\";}s:12:\"plugins-size\";i:10651479;s:6:\"themes\";a:1:{i:0;s:67:\"backup_2018-07-31-2345_evergreenwellnesscom_e46682b01cb5-themes.zip\";}s:11:\"themes-size\";i:16474799;s:7:\"uploads\";a:1:{i:0;s:68:\"backup_2018-07-31-2345_evergreenwellnesscom_e46682b01cb5-uploads.zip\";}s:12:\"uploads-size\";i:19485781;s:6:\"others\";a:1:{i:0;s:67:\"backup_2018-07-31-2345_evergreenwellnesscom_e46682b01cb5-others.zip\";}s:11:\"others-size\";i:1971;s:2:\"db\";s:62:\"backup_2018-07-31-2345_evergreenwellnesscom_e46682b01cb5-db.gz\";s:7:\"db-size\";i:378132;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"84b900f95598088a11f2ae5abcabaf3d6187b076\";s:7:\"themes0\";s:40:\"10b14836e78a3a61064ed598a260c166845295c3\";s:8:\"uploads0\";s:40:\"e40c21fc9fdad7b601d40c19fd24145a90ebb855\";s:7:\"others0\";s:40:\"f5bca8076bde57f5a34f935c893f2e64cbe373a8\";s:3:\"db0\";s:40:\"fe9e3aae581d11a3e23d46ebb00c0313a0570b2f\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"6c05be0ce820df3f7c19b2949a5d2c20faff185bd8e1d5cd7ac708951e4bc8e9\";s:7:\"themes0\";s:64:\"91d68858f2dbed149e19ecfb66219c6d27bba2755a5df2b181f55ce03b85d89d\";s:8:\"uploads0\";s:64:\"e2bb4336061a146e78abcfe2e22da5f28000f380ed1b3592477ac0b34bf36dc0\";s:7:\"others0\";s:64:\"4614fdbf7af5fd934b94df8479f2929df00e91fe40b9a303f75b9250cf553aa4\";s:3:\"db0\";s:64:\"4c2a4da53e8c969fd22c6cafb1fe085fbf681adb3e6bb12fd268154f2b55f6cd\";}}s:5:\"nonce\";s:12:\"e46682b01cb5\";s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-8667d6e545ceb9e259d444398123c058\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1533080717;s:6:\"themes\";i:1533080719;s:7:\"uploads\";i:1533080720;s:6:\"others\";i:1533080720;}s:18:\"created_by_version\";s:7:\"1.14.12\";s:12:\"is_multisite\";b:0;}}','yes'),(3904,'updraft_last_backup','a:5:{s:11:\"backup_time\";i:1533081109;s:12:\"backup_array\";a:11:{s:7:\"plugins\";a:1:{i:0;s:68:\"backup_2018-07-31-2351_evergreenwellnesscom_de2f13101776-plugins.zip\";}s:12:\"plugins-size\";i:10651479;s:6:\"themes\";a:1:{i:0;s:67:\"backup_2018-07-31-2351_evergreenwellnesscom_de2f13101776-themes.zip\";}s:11:\"themes-size\";i:16474799;s:7:\"uploads\";a:1:{i:0;s:68:\"backup_2018-07-31-2351_evergreenwellnesscom_de2f13101776-uploads.zip\";}s:12:\"uploads-size\";i:19485781;s:6:\"others\";a:1:{i:0;s:67:\"backup_2018-07-31-2351_evergreenwellnesscom_de2f13101776-others.zip\";}s:11:\"others-size\";i:1971;s:2:\"db\";s:62:\"backup_2018-07-31-2351_evergreenwellnesscom_de2f13101776-db.gz\";s:7:\"db-size\";i:378048;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"84b900f95598088a11f2ae5abcabaf3d6187b076\";s:7:\"themes0\";s:40:\"10b14836e78a3a61064ed598a260c166845295c3\";s:8:\"uploads0\";s:40:\"e40c21fc9fdad7b601d40c19fd24145a90ebb855\";s:7:\"others0\";s:40:\"f5bca8076bde57f5a34f935c893f2e64cbe373a8\";s:3:\"db0\";s:40:\"85238efe487a868990189c18602d2f8c68d4eaf6\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"6c05be0ce820df3f7c19b2949a5d2c20faff185bd8e1d5cd7ac708951e4bc8e9\";s:7:\"themes0\";s:64:\"91d68858f2dbed149e19ecfb66219c6d27bba2755a5df2b181f55ce03b85d89d\";s:8:\"uploads0\";s:64:\"e2bb4336061a146e78abcfe2e22da5f28000f380ed1b3592477ac0b34bf36dc0\";s:7:\"others0\";s:64:\"4614fdbf7af5fd934b94df8479f2929df00e91fe40b9a303f75b9250cf553aa4\";s:3:\"db0\";s:64:\"0936d8c7c673cc0011161d562ee81db3ea309db0f5557dc6c256bf3083cfdb84\";}}}s:7:\"success\";i:1;s:6:\"errors\";a:0:{}s:12:\"backup_nonce\";s:12:\"de2f13101776\";}','yes'),(482,'elementor_debug_log','a:2:{i:0;a:8:{s:4:\"type\";s:9:\"TypeError\";s:9:\"timestamp\";s:10:\"1522812239\";s:7:\"message\";s:43:\"Cannot read property \\\'index\\\' of undefined\";s:3:\"url\";s:99:\"http://evergreenwellness.com/wp-content/plugins/elementor/assets/lib/dialog/dialog.min.js?ver=4.2.1\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:4:\"5343\";s:12:\"customFields\";a:0:{}s:5:\"times\";i:166;}i:1;a:5:{s:4:\"type\";s:9:\"TypeError\";s:9:\"timestamp\";s:10:\"1522812239\";s:7:\"message\";s:43:\"Cannot read property \\\'index\\\' of undefined\";s:3:\"url\";s:99:\"http://evergreenwellness.com/wp-content/plugins/elementor/assets/lib/dialog/dialog.min.js?ver=4.2.1\";s:12:\"customFields\";a:0:{}}}','yes'),(574,'ocean_extra_dismiss_notice','1','yes'),(324,'_elementor_scheme_last_updated','1522790965','yes'),(285,'nav_menu_options','a:1:{s:8:\"auto_add\";a:1:{i:0;i:7;}}','yes'),(376,'theme_mods_custom-lite','a:55:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:4:\"top1\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:13:\"page_sidebars\";N;s:16:\"background_image\";s:61:\"http://evergreenwellness.com/wp-content/uploads/2018/04/9.jpg\";s:6:\"font_1\";s:8:\"Spectral\";s:6:\"font_2\";s:0:\"\";s:6:\"font_3\";s:9:\"Tangerine\";s:19:\"header_effect_class\";i:1;s:18:\"fixed_1_widget_num\";i:1;s:12:\"color_scheme\";s:1:\"2\";s:22:\"site_name_back_opacity\";i:0;s:29:\"site_description_back_opacity\";s:1:\"0\";s:10:\"link_color\";s:7:\"#1b5613\";s:11:\"hover_color\";s:7:\"#dd9933\";s:12:\"heading_link\";s:7:\"#1b5613\";s:18:\"box_shadow_opacity\";s:1:\"0\";s:11:\"menu1_color\";s:7:\"#25751a\";s:19:\"menu1_color_opacity\";s:1:\"1\";s:16:\"menu1_hover_back\";s:7:\"#ffffff\";s:11:\"menu1_hover\";s:7:\"#25751a\";s:14:\"sidebar3_color\";s:7:\"#dd9933\";s:22:\"sidebar3_color_opacity\";s:1:\"1\";s:13:\"sidebar3_link\";s:7:\"#1b5613\";s:14:\"sidebar3_hover\";s:7:\"#ffffff\";s:13:\"sidebar3_text\";s:7:\"#000000\";s:19:\"column_header_color\";s:7:\"#dd9933\";s:27:\"column_header_color_opacity\";i:0;s:18:\"column_main_border\";s:7:\"#dd9933\";s:14:\"sidebar2_color\";s:7:\"#25751a\";s:22:\"sidebar2_color_opacity\";s:1:\"1\";s:14:\"sidebar2_hover\";s:7:\"#dd9933\";s:13:\"sidebar2_text\";s:7:\"#b4ef99\";s:29:\"sidebar2_header_color_opacity\";s:1:\"0\";s:14:\"site_name_back\";s:7:\"#ffffff\";s:9:\"site_font\";s:1:\"1\";s:11:\"header_font\";s:1:\"1\";s:16:\"description_font\";s:1:\"3\";s:9:\"menu_font\";s:1:\"1\";s:12:\"submenu_font\";s:1:\"1\";s:10:\"title_font\";s:1:\"1\";s:9:\"link_font\";s:1:\"1\";s:8:\"cat_font\";s:1:\"1\";s:9:\"meta_font\";s:1:\"1\";s:6:\"w_font\";s:1:\"1\";s:12:\"w_title_font\";s:1:\"1\";s:11:\"w_link_font\";s:1:\"1\";s:10:\"reset_font\";i:7;s:19:\"is_display_post_cat\";s:0:\"\";s:14:\"is_home_footer\";s:0:\"\";s:11:\"layout_home\";s:10:\"no-sidebar\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1522805132;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:16:\"column-1-default\";a:0:{}s:16:\"column-2-default\";a:0:{}s:14:\"sidebar-header\";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:16:\"sidebar-footer-1\";a:0:{}s:16:\"sidebar-footer-2\";a:0:{}s:16:\"sidebar-footer-3\";a:0:{}}}s:6:\"icon_1\";s:8:\"fa-heart\";s:20:\"sidebar_effect_class\";i:0;s:17:\"blog_effect_class\";i:0;}','yes'),(377,'widget_meditation_socialicons_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(443,'widget_mh_custom_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(444,'widget_mh_slider_hp','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(445,'widget_mh_magazine_lite_tabbed','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(446,'widget_mh_magazine_lite_posts_large','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(447,'widget_mh_magazine_lite_posts_focus','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(448,'widget_mh_magazine_lite_posts_stacked','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4264,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1533539349','no'),(4265,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1533496149','no'),(4266,'_transient_timeout_feed_e0061ca2fa5b884e483872aa34d3e7eb','1533539349','no'),(4267,'_transient_feed_e0061ca2fa5b884e483872aa34d3e7eb','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:11:\"UpdraftPlus\";s:7:\"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:23:\"https://updraftplus.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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WordPress\'s leading backup plugin - backup, restore and clone WordPress sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Aug 2018 23:48:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"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:30:\"https://wordpress.org/?v=4.9.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:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:51:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"UpdraftPlus confirms development of Clone feature\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/9IjhsgFIFcE/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://updraftplus.com/updraftplus-confirms-development-of-clone-feature/#respond\";s: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, 25 Jul 2018 13:22:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:28:\"UpdraftPlus development 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:\"\";}i:1;a:5:{s:4:\"data\";s:13:\"Updraft Clone\";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:24:\"updraft plus 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:3;a:5:{s:4:\"data\";s:11:\"UpdraftPlus\";s:7:\"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:\"https://updraftplus.com/?p=295293\";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:738:\"<p>UpdraftPlus will soon be releasing a new and exciting feature that we want to share with you. Many of our users have been using UpdraftPlus to clone their website for years. But now we’re happy to announce a new feature &#8230; <a href=\"https://updraftplus.com/updraftplus-confirms-development-of-clone-feature/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-confirms-development-of-clone-feature/\">UpdraftPlus confirms development of Clone feature</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"wmullins\";s: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:1174:\"<p>UpdraftPlus will soon be releasing a new and exciting feature that we want to share with you.</p>\n<p>Many of our users have been using UpdraftPlus to clone their website for years. But now we’re happy to announce a new feature called UpdraftClone that will take all of the hassle and work out of cloning your website to a sandbox.</p>\n<p>UpdraftClone will enable you to set up a sandbox instantly and directly from UpdraftPlus so you can test out new versions of plugins, themes, PHP and WordPress before upgrading.</p>\n<p>The feature is scheduled for launch during Q3 2018, so be sure to keep an eye out for further updates and information about UpdraftClone.</p>\n<p><b>Visit </b><a href=\"https://updraftplus.com/\"><b>UpdraftPlus</b></a><b> today to keep up with the latest news and developments<br />\n</b></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-confirms-development-of-clone-feature/\">UpdraftPlus confirms development of Clone feature</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://updraftplus.com/updraftplus-confirms-development-of-clone-feature/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://updraftplus.com/updraftplus-confirms-development-of-clone-feature/\";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:51:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"UpdraftPlus 1.14.12 Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/du0oAlStSww/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://updraftplus.com/updraftplus-1-14-12/#respond\";s: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, 17 Jul 2018 14:09: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:28:\"UpdraftPlus development 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:\"\";}i:1;a:5:{s:4:\"data\";s:12:\"updraft plus\";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:24:\"updraft plus 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:3;a:5:{s:4:\"data\";s:11:\"UpdraftPlus\";s:7:\"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:\"https://updraftplus.com/?p=293839\";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:665:\"<p>We are pleased to launch an updated version of UpdraftPlus that now features lots of new helpful features and tweaks. Just some of the new features in the new update include marking a backup as “do not delete”, adding restore &#8230; <a href=\"https://updraftplus.com/updraftplus-1-14-12/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-1-14-12/\">UpdraftPlus 1.14.12 Released</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"wmullins\";s: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:6067:\"<p><span style=\"font-weight: 400;\">We are pleased to launch an updated version of UpdraftPlus that now features lots of new helpful features and tweaks. Just some of the new features in the new update include marking a backup as “do not delete”, adding restore command to WP-CLI and the fingerprint configuration for SFTP/SCP. These changes are for the free version of UpdraftPlus. We recommend this update for all.</span></p>\n<p><span style=\"font-weight: 400;\">The full change-log for this release are as follows: </span></p>\n<p><span style=\"font-weight: 400;\">* <strong>FEATURE</strong>: Added UpdraftCentral&#8217;s theme management module handler</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>FEATURE</strong>: User can mark any backup as &#8220;do not delete&#8221;, and it will then not be deleted even when retention limits are hit</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>FEATURE</strong>: WP-CLI &#8211; add a &#8216;restore&#8217; command</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>FEATURE</strong>: WP-CLI &#8211; Add an option &#8216;delete-during-restore&#8217; in the &#8216;restore&#8217; command</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>FEATURE</strong>: Add optional &#8216;fingerprint&#8217; configuration for sftp/scp remote storage, allowing the connection to be halted if the server&#8217;s fingerprint does not match what was entered</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>FEATURE</strong>: Added the ability to take an incremental backup via WP-CLI (note: incremental backups are still considered an experimental/work-in-progress feature)</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>FIX</strong>: If a user gave the wrong key to decrypt an encrypted database, the &#8220;Decryption failed&#8221; message did not display  </span></p>\n<p><span style=\"font-weight: 400;\">* <strong>FIX</strong>: The Migration was not changing an unsupported database table engine with the MyISAM  engine automatically</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>FIX</strong>: Issue with the Dropbox account API call on some installs</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>FIX</strong>: The web server disk space refresh link of the existing backups is not working</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>FIX</strong>: The UpdraftPlus News couldn&#8217;t print first time when the news cache was not made</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>FIX</strong>: Activating the &#8220;all addons&#8221; licence did not remove the corresponding &#8216;activate on this account&#8217; link in the &#8220;Premium / Extensions&#8221; tab</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>FIX</strong>: When set names query character set hadn&#8217;t support by the current MySQL server, the restoration process wasn&#8217;t gave replace the character set</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>TWEAK</strong>: Updated the plugin.php handler for UpdraftCentral&#8217;s new plugin management module</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>TWEAK</strong>: Update posts handler to fix and update pagination in UpdraftCentral</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>TWEAK</strong>: Refresh UpdraftCentral keys upon successful login or registration using the UpdraftCentral Cloud wizard </span></p>\n<p><span style=\"font-weight: 400;\">* <strong>TWEAK</strong>: Correct admin page URL in WP-CLI &#8216;restore&#8217; command when on multisite without multisite add-on</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>TWEAK</strong>: Prevent PHP notice when checking non-existent files in relation to an extraneous whitespace warning</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>TWEAK</strong>: Prevent PHP notices in add-ons with non-present settings</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>TWEAK:</strong> Add the &#8220;Migrate / Clone&#8221; tab in place of the &#8220;Migrate / Clone&#8221; dialog</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>TWEAK</strong>: Prevent call to the the wp_get_sites() deprecated function on WP 4.6 and newer</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>TWEAK</strong>: Prevent a potential PHP debugging notice when displaying the &#8216;Connect with your UpdraftPlus.com&#8217; form</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>TWEAK</strong>: Do not show the confusing JetPack &#8216;backup&#8217; notice on the &#8216;Updates&#8217; page</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>TWEAK</strong>: Added clone notices and commands for when UpdraftPlus is running on a UpdraftClone</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>TWEAK</strong>: Move &#8216;Log all messages to syslog (only server admins are likely to want this)&#8217; into the &#8216;expert&#8217; settings section</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>TWEAK</strong>: Replace a missing class constant in the Dropbox SDK (only relevant to people upgrading from Dropbox API v1 tokens &#8211; indicates upgrading UpdraftPlus from a very old version that previously used Dropbox APIv1 but never v2)</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>TWEAK</strong>: Prevent potential PHP debugging notices in restoration step 2</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>TWEAK:</strong> Allow non-Super Admins to access UpdraftPlus Premium if they have &#8216;manage_network_plugins&#8217; capability and the updraft_user_can_manage filter is used</span></p>\n<p><span style=\"font-weight: 400;\">* <strong>TWEAK</strong>: Improved code in a way that prevents continuous polling in the themes page, this plugins page and the updates page</span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-1-14-12/\">UpdraftPlus 1.14.12 Released</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://updraftplus.com/updraftplus-1-14-12/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"https://updraftplus.com/updraftplus-1-14-12/\";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:60:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Plugin &amp; Theme Manager from UpdraftCentral\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/u5DJuhN2lnA/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://updraftplus.com/plugin-theme-manager-from-updraftcentral/#respond\";s: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, 04 Jul 2018 14:46: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:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:14:\"UpdraftCentral\";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:12:\"new features\";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:11:\"new 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:\"\";}i:3;a:5:{s:4:\"data\";s:21:\"new wordpress 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:\"\";}i:4;a:5:{s:4:\"data\";s:14:\"plugin manager\";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:5:{s:4:\"data\";s:14:\"useful plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:9:\"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:33:\"https://updraftplus.com/?p=290581\";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:722:\"<p>As part of our commitment to the continual development of UpdraftCentral, we are pleased to share with you an exclusive preview of our soon to be available and brand new theme and plugin manager feature. In an attempt to make &#8230; <a href=\"https://updraftplus.com/plugin-theme-manager-from-updraftcentral/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/plugin-theme-manager-from-updraftcentral/\">Plugin &#038; Theme Manager from UpdraftCentral</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"wmullins\";s: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:1103:\"<p>As part of our commitment to the continual development of UpdraftCentral, we are pleased to share with you an exclusive preview of our soon to be available and brand new theme and plugin manager feature.</p>\n<p>In an attempt to make UpdraftCentral’s backup, update and management process quicker and easier, we will soon be launching an exciting feature that allows you to install and activate a chosen plugin on all your connected sites at once.</p>\n<p>We are sure the plugin &amp; theme manager will boost your productivity even further so be sure to check out the new feature, which we plan to be launch very soon.</p>\n<p><b>Try </b><a href=\"https://updraftplus.com/updraftcentral/\"><b>UpdraftCentral </b></a><b>today free for up to 5 sites</b></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/plugin-theme-manager-from-updraftcentral/\">Plugin &#038; Theme Manager from UpdraftCentral</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://updraftplus.com/plugin-theme-manager-from-updraftcentral/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://updraftplus.com/plugin-theme-manager-from-updraftcentral/\";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:69:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WP-Optimize confirms it is developing a leading image compression feature\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/wP3gw-Hqgao/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://updraftplus.com/smush-image-optimization/#respond\";s: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 2018 14:59:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:10:{i:0;a:5:{s:4:\"data\";s:11:\"WP Optimize\";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:18:\"image optimisation\";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:18:\"Image optimization\";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:5:{s:4:\"data\";s:27:\"Make website images smaller\";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:5:{s:4:\"data\";s:25:\"Make website load quicker\";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:5:{s:4:\"data\";s:5:\"Smush\";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:5:{s:4:\"data\";s:8:\"Smushing\";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:5:{s:4:\"data\";s:10:\"web images\";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:5:{s:4:\"data\";s:16:\"website pictures\";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:5:{s:4:\"data\";s:16:\"WordPress images\";s:7:\"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:\"https://updraftplus.com/?p=290149\";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:707:\"<p>As part of the continual development of WP-Optimize, we are pleased to share with you a sneak peek of our new and soon to be available image optimization tool. Image Compression is a handy and simple to use tool that &#8230; <a href=\"https://updraftplus.com/smush-image-optimization/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/smush-image-optimization/\">WP-Optimize confirms it is developing a leading image compression feature</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"wmullins\";s: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:1418:\"<p>As part of the continual development of WP-Optimize, we are pleased to share with you a sneak peek of our new and soon to be available image optimization tool.</p>\n<p>Image Compression is a handy and simple to use tool that uses the latest and best-in-class lossy compression techniques to quickly and easily optimise, compress and resize any or all the images on your website.</p>\n<p>With unnecessary large image files often slowing website loading speeds, we saw the need for an image compression option as we know how important loading speed is for a websites user experience and SEO ranking. With our leading image compression service we hope to improve the performance of your websites, but still give you strict quality control in choosing your preferred image compression quality setting.</p>\n<p>The feature will be launched very soon, so be sure to keep an eye out for further updates and information about Image Compression.</p>\n<p><b>Check out </b><a href=\"https://getwpo.com/blog/\"><b>getwpo.com</b></a><b> today for more WP-Optimize blogs</b></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/smush-image-optimization/\">WP-Optimize confirms it is developing a leading image compression feature</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://updraftplus.com/smush-image-optimization/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://updraftplus.com/smush-image-optimization/\";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:48:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Easy Updates Manager 7.0.2 Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/5JvnI5Rcx_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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://updraftplus.com/easy-updates-manager-7-0-2-released/#respond\";s: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, 20 Jun 2018 13:06: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:20:\"Easy Updates Manager\";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:11:\"new 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:\"\";}i:2;a:5:{s:4:\"data\";s:16:\"wordpress plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://updraftplus.com/?p=288860\";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:718:\"<p>We are pleased to launch an updated version of Easy Updates Manager that now features a few new helpful tweaks. The update now includes automatic refresh after you makes changes in option settings, complete bulk action or navigating to another &#8230; <a href=\"https://updraftplus.com/easy-updates-manager-7-0-2-released/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/easy-updates-manager-7-0-2-released/\">Easy Updates Manager 7.0.2 Released</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"wmullins\";s: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:1512:\"<p>We are pleased to launch an updated version of <a href=\"https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/\">Easy Updates Manager</a> that now features a few new helpful tweaks. The update now includes automatic refresh after you makes changes in option settings, complete bulk action or navigating to another set of items (pagination); all of which used to require a manual refresh. These changes will save you time and effort, which we hope will make the user experience easier and quicker. We recommend this update for all.</p>\n<p>The full changelog for this release are as follows:</p>\n<ul>\n<li><b>TWEAK</b>: Make all settings tabs work via ajax calls</li>\n<li><b>TWEAK</b>: Show and hide logs tab upon enable and disable</li>\n<li><b>TWEAK</b>: Add admin notices for insufficient php and wp versions</li>\n<li><b>TWEAK</b>: Remove flexbox mixin</li>\n<li><b>TWEAK</b>: Adding survey notice</li>\n<li><b>TWEAK</b>: Auto refresh page after force updates</li>\n<li><b>TWEAK</b>: Prevent users from excluding themselves</li>\n</ul>\n<p>Check out the updated <a href=\"https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/\">Easy Updates Manager</a> plugin</p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/easy-updates-manager-7-0-2-released/\">Easy Updates Manager 7.0.2 Released</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://updraftplus.com/easy-updates-manager-7-0-2-released/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://updraftplus.com/easy-updates-manager-7-0-2-released/\";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:25:\"MetaSlider 3.8.0 released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/9QD3AZ6Dflc/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Jun 2018 08:00:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"MetaSlider\";s:7:\"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:\"https://updraftplus.com/?p=286549\";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:716:\"<p>We’ve just released an update to MetaSlider. This contains a few fixes and small tweaks. It is a recommended update for all. The full changelog for this release follows. FEATURE: Adds compatibility with new Pro schedule feature FEATURE: Adds compatibility with retina &#8230; <a href=\"https://updraftplus.com/metaslider-3-8-0-released/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/metaslider-3-8-0-released/\">MetaSlider 3.8.0 released</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Romelch Otic\";s: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:1543:\"<p>We’ve just released an update to MetaSlider. This contains a few fixes and small tweaks. It is a recommended update for all.</p>\n<p>The full changelog for this release follows.</p>\n<ul>\n<li><strong>FEATURE:</strong> Adds compatibility with new Pro schedule feature</li>\n<li><strong>FEATURE:</strong> Adds compatibility with retina plugin https://wordpress.org/plugins/wp-retina-2x/</li>\n<li><strong>FEATURE:</strong> Adds option to enable or disable initial fade in</li>\n<li><strong>FEATURE:</strong> Improves Responsiveness</li>\n<li><strong>TWEAK:</strong> Adds default Flexslider fonts to repo for users that require them.</li>\n<li><strong>FIX:</strong> Fixes error when trying to save many slides</li>\n<li><strong>FIX: </strong>Fixes broken markup in settings in some languages.</li>\n<li><strong>FIX:</strong> Fixes bug that always strips referral tags.</li>\n<li><strong>FIX:</strong> Adds a check to the copy/paste element to make sure it exists before adding an event</li>\n<li><strong>REFACTOR:</strong> Removes plugin dependency on Notice class</li>\n<li><strong>REFACTOR:</strong> Standardizes the code to deny direct access</li>\n<li><strong>REFACTOR:</strong> Updates how the plugin handles setting updates.</li>\n</ul>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/metaslider-3-8-0-released/\">MetaSlider 3.8.0 released</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://updraftplus.com/metaslider-3-8-0-released/\";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:54:\"Top 5 AI driven m-commerce trends to watch out in 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/QUIjcgkjlcA/\";s: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, 28 May 2018 09:21:19 +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:20:\"Other 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://updraftplus.com/?p=284195\";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:489:\"<p>We would like to share a beautiful infographic that Mofluid and its co-founder, Roberto Garvin did. &#160; &#160;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/top-5-ai-driven-m-commerce-trends-to-watch-out-in-2018/\">Top 5 AI driven m-commerce trends to watch out in 2018</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Romelch Otic\";s: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:1400:\"<p>We would like to share a beautiful infographic that <a href=\"https://mofluid.com/\">Mofluid</a> and its co-founder, Roberto Garvin did.</p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2018/05/ai_28826235.png\"><img class=\"wp-image-284197 size-full alignleft\" src=\"https://updraftplus.com/wp-content/uploads/2018/05/ai_28826235.png\" alt=\"\" width=\"1648\" height=\"7410\" srcset=\"https://updraftplus.com/wp-content/uploads/2018/05/ai_28826235.png 1648w, https://updraftplus.com/wp-content/uploads/2018/05/ai_28826235-67x300.png 67w, https://updraftplus.com/wp-content/uploads/2018/05/ai_28826235-768x3453.png 768w, https://updraftplus.com/wp-content/uploads/2018/05/ai_28826235-228x1024.png 228w, https://updraftplus.com/wp-content/uploads/2018/05/ai_28826235-610x2743.png 610w, https://updraftplus.com/wp-content/uploads/2018/05/ai_28826235-1080x4856.png 1080w, https://updraftplus.com/wp-content/uploads/2018/05/ai_28826235-510x2293.png 510w\" sizes=\"(max-width: 1648px) 100vw, 1648px\" /></a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/top-5-ai-driven-m-commerce-trends-to-watch-out-in-2018/\">Top 5 AI driven m-commerce trends to watch out in 2018</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://updraftplus.com/top-5-ai-driven-m-commerce-trends-to-watch-out-in-2018/\";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: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:88:\"Important – new privacy centre &amp; how do YOU hold user data on your WordPress site?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/9o_3byqWvNs/\";s: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, 25 May 2018 14:38: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:2:{i:0;a:5:{s:4:\"data\";s:20:\"Other 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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://updraftplus.com/?p=283753\";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:845:\"<p>Do your WordPress sites contain EU user or customer data?  If so, today is GDPR day which means you now legally need to consider the privacy and security of their data whether or not you&#8217;re in the EU. If you backup your &#8230; <a href=\"https://updraftplus.com/important-new-privacy-centre-how-do-you-hold-user-data-on-your-wordpress-site/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/important-new-privacy-centre-how-do-you-hold-user-data-on-your-wordpress-site/\">Important &#8211; new privacy centre &#038; how do YOU hold user data on your WordPress site?</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Romelch Otic\";s: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:1467:\"<p>Do your WordPress sites contain EU user or customer data?  If so, today is GDPR day which means you now legally need to consider the privacy and security of their data whether or not you&#8217;re in the EU.</p>\n<p>If you backup your WordPress site with EU user data, then you need to consider the security of those backups. <a href=\"https://updraftplus.com/?mc_cid=4c5e2517fe&amp;mc_eid=[UNIQID]\" target=\"_blank\" rel=\"noopener noreferrer\">UpdraftPlus</a> Premium can protect the customer data in your backups by encryption and lock settings access. It can also delete old backups, which is another important consideration as you mustn&#8217;t keep unused EU user data under GDPR.</p>\n<p>If you&#8217;d like to see our own privacy policies on how we protect <em>your</em> data (or unsubscribe from this newsletter), then we&#8217;ve built a helpful <a href=\"https://updraftplus.com/data-protection-and-privacy-centre/?mc_cid=4c5e2517fe&amp;mc_eid=[UNIQID]\" target=\"_blank\" rel=\"noopener noreferrer\">privacy centre here.</a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/important-new-privacy-centre-how-do-you-hold-user-data-on-your-wordpress-site/\">Important &#8211; new privacy centre &#038; how do YOU hold user data on your WordPress site?</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://updraftplus.com/important-new-privacy-centre-how-do-you-hold-user-data-on-your-wordpress-site/\";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: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:110:\"UpdraftPlus releases seamless integration between UpdraftPlus and UpdraftCentral – (version 1.14.9 / 2.14.9)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/M1hQ_MD0l9M/\";s: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 May 2018 15:28:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:14:\"UpdraftCentral\";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:28:\"UpdraftPlus development 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://updraftplus.com/?p=283494\";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:960:\"<p>UpdraftCentral is our highly efficient service to manage, update and backup multiple websites from one place. Today we launched a new version of UpdraftPlus which makes connecting a site to UpdraftCentral seamless. Just enter your UpdraftPlus.com login details in settings &#8230; <a href=\"https://updraftplus.com/updraftplus-releases-seamless-integration-between-updraftplus-and-updraftcentral-version-1-14-9-2-14-9/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-releases-seamless-integration-between-updraftplus-and-updraftcentral-version-1-14-9-2-14-9/\">UpdraftPlus releases seamless integration between UpdraftPlus and UpdraftCentral &#8211; (version 1.14.9 / 2.14.9)</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Romelch Otic\";s: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:4396:\"<p>UpdraftCentral is our highly efficient service to manage, update and backup multiple websites from one place.</p>\n<p>Today we launched a new version of UpdraftPlus which makes connecting a site to UpdraftCentral seamless. Just enter your UpdraftPlus.com login details in settings and press a button, and you&#8217;ve connected the site!</p>\n<p>With many new features in recent months including managing users, comments, analytics and speed optimization, there&#8217;s never been a better time to try UpdraftCentral. Find out more here: <a href=\"https://updraftplus.com/updraftcentral/\">https://updraftplus.com/updraftcentral/</a></p>\n<p>The full changelog for this release follows.</p>\n<ul>\n<li><strong>FEATURE</strong>: Make it more seamless to sign up to UpdraftCentral Cloud</li>\n<li><strong>FEATURE</strong>: Microsoft Azure storage (Premium) compatibility with Azure Germany</li>\n<li><strong>FEATURE</strong>: Added the ability to create migration keys from WP-CLI (Premium)</li>\n<li><strong>FIX</strong>: A backup icon/storage shows for a storage type even if all instances were disabled</li>\n<li><strong>FIX</strong>: A PHP fatal error was occurring when a user tries to restore an encrypted DB when defining the &#8220;UPDRAFTPLUS_DECRYPTION_ENGINE&#8221; constant</li>\n<li><strong>FIX</strong>: WP CLI Updraftplus command was not running on few environments like the Windows command line</li>\n<li><strong>REFACTOR</strong>: Completed factoring for tabs of the settings page.</li>\n<li><strong>TWEAK</strong>: Some refactoring and tidying of the restoration code for easier maintenance</li>\n<li><strong>TWEAK:</strong> Add a longer timeout on SFTP logins to cope with a &#8216;long delay, but then worked&#8217; situation seen in the wild</li>\n<li><strong>TWEAK</strong>: An &#8220;Incremental backups&#8221; extension was displayed in the Premium / Extensions tab, causing confusion since it is not yet finished/launched</li>\n<li><strong>TWEAK</strong>: Displays a Byte Order Mark (BOM) warning by giving the file names along with the path in the &#8220;Existing Backups&#8221; tab, if a BOM is detected at the start of common files that people tend to edit</li>\n<li><strong>TWEAK</strong>: A WP CLI Existing backup command didn&#8217;t display a date time in the &#8220;job_identifier&#8221; column</li>\n<li><strong>TWEAK</strong>: Add links to the relevant app privacy policies within the settings sections for storage methods using OAuth authorization apps</li>\n<li><strong>TWEAK</strong>: Log user and group IDs of process and file/folder, when permissions for an operation is denied</li>\n<li><strong>TWEAK</strong>: Prevent a potential PHP debugging notice when showing the &#8216;Upload&#8217; button</li>\n<li><strong>TWEAK</strong>: Update an out-of-date &#8220;wrong password&#8221; link</li>\n<li><strong>TWEAK</strong>: Added the &#8220;Web-server disk space in use by UpdraftPlus&#8221; information to &#8220;Site information&#8221; section in the &#8220;Advanced Tools&#8221; tab; it won&#8217;t show in the &#8216;Existing Backups&#8217; tab if you are using less than 100MB.</li>\n<li><strong>TWEAK</strong>: When a Google Cloud token was invalid, a PHP Fatal could result instead of catching the error and informing/logging nicely</li>\n<li><strong>TWEAK</strong>: If php-xml (SimpleXMLElement) is not installed, then show an appropriate warning in the Azure configuration section</li>\n<li><strong>TWEAK</strong>: If the user tries to install another version of UpdraftPlus, then tweak the default error message that they are shown by WP, which is too obscure/cryptic for many users</li>\n<li><strong>TWEAK</strong>: When a WP user is deleted, make sure that their data is deleted from the UpdraftCentral database table</li>\n<li><strong>TWEAK</strong>: Displayed &#8220;Web-server disk space in use by UpdraftPlus&#8221; information in the Site information section for the advanced tools</li>\n</ul>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-releases-seamless-integration-between-updraftplus-and-updraftcentral-version-1-14-9-2-14-9/\">UpdraftPlus releases seamless integration between UpdraftPlus and UpdraftCentral &#8211; (version 1.14.9 / 2.14.9)</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"https://updraftplus.com/updraftplus-releases-seamless-integration-between-updraftplus-and-updraftcentral-version-1-14-9-2-14-9/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;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:21:\"Happy Birthday, Keyy!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/wvWQ3sFVwhM/\";s: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, 23 May 2018 11:23:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Keyy\";s:7:\"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:\"https://updraftplus.com/?p=283138\";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:663:\"<p>One year ago, our superhero 2-factor authentication plugin and app were born. Keyy allows you to login without the faff of usernames and passwords. Just open the Keyy app on your mobile, point it at your screen and viola! You&#8217;re &#8230; <a href=\"https://updraftplus.com/happy-birthday-keyy/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/happy-birthday-keyy/\">Happy Birthday, Keyy!</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Romelch Otic\";s: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:3376:\"<p><a href=\"https://updraftplus.com/wp-content/uploads/2017/03/keyy-logo-replacement-to-clef-two-factor-authentication-1.jpg\"><img class=\"size-medium wp-image-199160 aligncenter\" src=\"https://updraftplus.com/wp-content/uploads/2017/03/keyy-logo-replacement-to-clef-two-factor-authentication-1-300x142.jpg\" alt=\"\" width=\"300\" height=\"142\" srcset=\"https://updraftplus.com/wp-content/uploads/2017/03/keyy-logo-replacement-to-clef-two-factor-authentication-1-300x142.jpg 300w, https://updraftplus.com/wp-content/uploads/2017/03/keyy-logo-replacement-to-clef-two-factor-authentication-1-510x241.jpg 510w, https://updraftplus.com/wp-content/uploads/2017/03/keyy-logo-replacement-to-clef-two-factor-authentication-1-768x363.jpg 768w, https://updraftplus.com/wp-content/uploads/2017/03/keyy-logo-replacement-to-clef-two-factor-authentication-1-610x288.jpg 610w, https://updraftplus.com/wp-content/uploads/2017/03/keyy-logo-replacement-to-clef-two-factor-authentication-1.jpg 949w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a></p>\n<div dir=\"ltr\">\n<p>One year ago, our superhero 2-factor authentication plugin and app were born.</p>\n<p>Keyy allows you to login without the faff of usernames and passwords. Just open the Keyy app on your mobile, point it at your screen and viola! You&#8217;re in.</p>\n<p>Plus, because it uses RSA public-key cryptography, its security is second-to-none. There&#8217;s no vulnerable central database of the user profile and login details, there&#8217;s no risk of any of the usual password-stealing hacks (for the obvious reason that there aren&#8217;t any passwords to steal!). If you do lose your mobile, the digital key is safe with Android Keystore or Apple Keychain.</p>\n<p>Keyy is an absolute dream to use, and (unsurprisingly), the reviews have been glowing. One guy wrote: &#8220;Someday, all who draw breath will use Keyy! This app is meant to be used by all mankind.&#8221;</p>\n<p>And it&#8217;s true! If you haven&#8217;t yet experienced the wondrously simple login experience of Keyy, you&#8217;re missing out! It turns a chore into a pleasure. There&#8217;s something extraordinarily smug about a secure login that&#8217;s absurdly simple to use.</p>\n<p>What could be better? Ah, we know: a special, birthday deal: <b>get Keyy today, and enjoy 25% off with coupon code Keyy1stBirthday</b>. Make Keyy&#8217;s first birthday one to remember: find out more <a href=\"https://getkeyy.com/\" target=\"_blank\" rel=\"noopener noreferrer\">https://getkeyy.com.</a></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2018/05/image.png\"><img class=\"aligncenter wp-image-283142 size-full\" src=\"https://updraftplus.com/wp-content/uploads/2018/05/image.png\" alt=\"\" width=\"646\" height=\"372\" srcset=\"https://updraftplus.com/wp-content/uploads/2018/05/image.png 646w, https://updraftplus.com/wp-content/uploads/2018/05/image-300x173.png 300w, https://updraftplus.com/wp-content/uploads/2018/05/image-610x351.png 610w, https://updraftplus.com/wp-content/uploads/2018/05/image-510x294.png 510w\" sizes=\"(max-width: 646px) 100vw, 646px\" /></a></p>\n</div>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/happy-birthday-keyy/\">Happy Birthday, Keyy!</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"https://updraftplus.com/happy-birthday-keyy/\";s:7:\"attribs\";a:0:{}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:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";s:4:\"href\";s:39:\"http://feeds.feedburner.com/UpdraftPlus\";}}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:2:{s:3:\"rel\";s:3:\"hub\";s:4:\"href\";s:32:\"http://pubsubhubbub.appspot.com/\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:4:\"info\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"uri\";s:11:\"updraftplus\";}}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:11:{s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"etag\";s:27:\"pkJ+rzvrU/MT67ToT5DFvKHuznI\";s:13:\"last-modified\";s:29:\"Sun, 05 Aug 2018 18:40:07 GMT\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"date\";s:29:\"Sun, 05 Aug 2018 19:09:09 GMT\";s:7:\"expires\";s:29:\"Sun, 05 Aug 2018 19:09:09 GMT\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:6:\"server\";s:3:\"GSE\";s:7:\"alt-svc\";s:40:\"quic=\":443\"; ma=2592000; v=\"44,43,39,35\"\";}}s:5:\"build\";s:14:\"20180207075304\";}','no'),(4252,'_transient_timeout_feed_mod_c8dc84948ab55424f034a4ced348e013','1533539344','no'),(4253,'_transient_feed_mod_c8dc84948ab55424f034a4ced348e013','1533496144','no'),(4254,'_transient_timeout_owp_feed_data_4160b56c6811147b535098f09e780ee9','1533539344','no'),(4255,'_transient_owp_feed_data_4160b56c6811147b535098f09e780ee9','<ul><li><a class=\'rsswidget\' href=\'https://oceanwp.org/7-ways-to-protect-wordpress-pdf-files/?utm_source=wp-news-widget&utm_medium=wp-dash&utm_campaign=news-feed\' target=\'_blank\'>7 Ways to Protect WordPress PDF Files</a><div class=\"rssSummary\">Nowadays, PDF has become a standard file format for many important documents. Many people have used PDF files to create and share their knowledge and stories with others across different&hellip;</div></li><li><a class=\'rsswidget\' href=\'https://oceanwp.org/create-dynamic-slides-smart-slider-3-oceanwp/?utm_source=wp-news-widget&utm_medium=wp-dash&utm_campaign=news-feed\' target=\'_blank\'>How to Create Dynamic Slides with Smart Slider 3 in OceanWP?</a><div class=\"rssSummary\">Adding a slider to your website can be a good choice because that makes the first impression for your visitors. But after you’ve decided that you want to add sliders&hellip;</div></li><li><a class=\'rsswidget\' href=\'https://oceanwp.org/generate-email-subscriptions-traffic-volume-beginners-guide-lead-magnets/?utm_source=wp-news-widget&utm_medium=wp-dash&utm_campaign=news-feed\' target=\'_blank\'>How to Generate More Email Subscriptions With the Same Traffic Volume (A beginner’s Guide to Lead Magnets)</a><div class=\"rssSummary\">You might be tired of hearing people tell you that you “need to build an email list”. But you see this advice so much for a reason. For any business,&hellip;</div></li><li><a class=\'rsswidget\' href=\'https://oceanwp.org/oceanwp-lightning-fast-cloudways/?utm_source=wp-news-widget&utm_medium=wp-dash&utm_campaign=news-feed\' target=\'_blank\'>OceanWP is Lightning Fast on Cloudways [Stats Inside]</a><div class=\"rssSummary\">When you think about WordPress website optimization, loading time is one of the top priorities since it is vital for ranking. Every millisecond of your website can help improve your&hellip;</div></li></ul>','no'),(4256,'_site_transient_timeout_community-events-7ca54ca204f6e72c74a042bc29d038bc','1533539347','no'),(4257,'_site_transient_community-events-7ca54ca204f6e72c74a042bc29d038bc','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"216.54.31.0\";}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:40:\"Network: Ask, Advise, Discuss, and Learn\";s:3:\"url\";s:52:\"https://www.meetup.com/WordPresshr/events/251884215/\";s:6:\"meetup\";s:23:\"WordPress Hampton Roads\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/WordPresshr/\";s:4:\"date\";s:19:\"2018-09-12 09:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Norfolk, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:36.860805999999997;s:9:\"longitude\";d:-76.209952999999999;}}i:1;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:50:\"WordCamp Wilmington, North Carolina, United States\";s:3:\"url\";s:36:\"https://2018.wilmington.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2018-09-22 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:41:\"Wilmington, North Carolina, United States\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:34.240331699999999;s:9:\"longitude\";d:-77.949089299999997;}}i:2;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:26:\"WordCamp Pittsburgh PA USA\";s:3:\"url\";s:36:\"https://2018.pittsburgh.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2018-09-22 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Pittsburgh PA USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:40.424857000000003;s:9:\"longitude\";d:-80.189424500000001;}}i:3;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Baltimore\";s:3:\"url\";s:35:\"https://2018.baltimore.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2018-10-06 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Baltimore, MD, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.286100300000001;s:9:\"longitude\";d:-76.605708300000003;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:40:\"Network: Ask, Advise, Discuss, and Learn\";s:3:\"url\";s:55:\"https://www.meetup.com/WordPresshr/events/lkxhfpyxnbnb/\";s:6:\"meetup\";s:23:\"WordPress Hampton Roads\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/WordPresshr/\";s:4:\"date\";s:19:\"2018-10-10 09:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Norfolk, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:36.860805999999997;s:9:\"longitude\";d:-76.209952999999999;}}}}','no'),(4258,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1533539349','no'),(4259,'_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:34:\"\n	Thu, 02 Aug 2018 22:13: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: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=5.0-alpha-43555\";s:7:\"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: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:35:\"WordPress 4.9.8 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:71:\"https://wordpress.org/news/2018/08/wordpress-4-9-8-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:\"Thu, 02 Aug 2018 21:25: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=6165\";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:398:\"We are pleased to announce the immediate availability of WordPress 4.9.8.  This maintenance release fixes 46 bugs, enhancements and blessed tasks, including updating the Twenty Seventeen bundled theme. Following are the highlights of what is now available. “Try Gutenberg” callout Most users will now be presented with a notice in their WordPress dashboard. This “Try Gutenberg” [&#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:10:\"Paul Biron\";s: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:10398:\"<p>We are pleased to announce the immediate availability of WordPress 4.9.8.  This maintenance release fixes 46 bugs, enhancements and blessed tasks, including updating the Twenty Seventeen bundled theme.</p>\n<p><span style=\"font-weight: 400\">Following are the highlights of what is now available.</span></p>\n<h2>“Try Gutenberg” callout</h2>\n<p><span style=\"font-weight: 400\">Most users will now be presented with a notice in their WordPress dashboard. This </span>“Try Gutenberg” is an opportunity for users to use the Gutenberg block editor before it is released in WordPress 5.0.</p>\n<p><img class=\"alignnone wp-image-6168 size-full\" src=\"https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?resize=632%2C392&#038;ssl=1\" alt=\"\" width=\"632\" height=\"392\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?w=2528&amp;ssl=1 2528w, https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?resize=300%2C186&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?resize=768%2C476&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?resize=1024%2C634&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>In WordPress 4.9.8, the callout will be shown to the following users:</p>\n<ul>\n<li>If Gutenberg <em>is not</em> installed or activated, the callout will be shown to Admin users on single sites, and Super Admin users on multisites.</li>\n<li>If Gutenberg <em>is</em> installed and activated, the callout will be shown to Contributor users and above.</li>\n<li>If the Classic Editor plugin is installed and activated, the callout will be hidden for all users.</li>\n</ul>\n<p class=\"entry-title\"><span style=\"font-weight: 400\">You can learn more by reading  </span><a href=\"https://make.wordpress.org/core/2018/08/02/try-gutenberg-callout-in-wordpress-4-9-8/\">“Try Gutenberg” Callout in WordPress 4.9.8</a>.</p>\n<h2>Privacy fixes/enhancements</h2>\n<p>This release includes 18 Privacy fixes focused on ensuring consistency and flexibility in the new personal data tools <span style=\"font-weight: 400\">that were </span>added in 4.9.6, including:</p>\n<ul>\n<li>The type of request being confirmed is now included in the subject line for all privacy confirmation emails.</li>\n<li>Improved consistency with site name being used for privacy emails in multisite.</li>\n<li>Pagination for Privacy request admin screens can now be adjusted.</li>\n<li>Increased the test coverage for several core privacy functions.</li>\n</ul>\n<p><a href=\"https://make.wordpress.org/core/2018/08/02/wordpress-4-9-8/\">This post has more information about all of the issues fixed in 4.9.8 if you&#8217;d like to learn more</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.8</a> or venture over to Dashboard → Updates and click &#8220;Update Now.&#8221; Sites that support automatic background updates are already beginning to update automatically.</p>\n<p>Thank you to everyone who contributed to WordPress 4.9.8:</p>\n<p><a href=\"https://profiles.wordpress.org/1naveengiri/\">1naveengiri</a>, <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/abdullahramzan/\">Abdullah Ramzan</a>, <a href=\"https://profiles.wordpress.org/alejandroxlopez/\">alejandroxlopez</a>, <a href=\"https://profiles.wordpress.org/allendav/\">Allen Snook</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/andrewtaylor-1/\">Andrew Taylor</a>, <a href=\"https://profiles.wordpress.org/aryamaaru/\">Arun</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bjornw/\">BjornW</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chrislema/\">Chris Lema</a>, <a href=\"https://profiles.wordpress.org/coreymckrill/\">Corey McKrill</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danieltj/\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</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/dontstealmyfish/\">dontstealmyfish</a>, <a href=\"https://profiles.wordpress.org/dyrer/\">dyrer</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fclaussen/\">Fernando Claussen</a>, <a href=\"https://profiles.wordpress.org/garetharnold/\">Gareth</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/gm_alex/\">GM_Alex</a>, <a href=\"https://profiles.wordpress.org/idea15/\">Heather Burns</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">ibelanger</a>, <a href=\"https://profiles.wordpress.org/imath/\">imath</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jpry/\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">JJJ</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</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/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/joshuawold/\">JoshuaWold</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/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/khaihong/\">khaihong</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">kjellr</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/lbenicio/\">lbenicio</a>, <a href=\"https://profiles.wordpress.org/leanderiversen/\">Leander Iversen</a>, <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a>, <a href=\"https://profiles.wordpress.org/macbookandrew/\">macbookandrew</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a>, <a href=\"https://profiles.wordpress.org/mermel/\">mermel</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">metalandcoffee</a>, <a href=\"https://profiles.wordpress.org/michelleweber/\">michelleweber</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/xpertone/\">Muhammad Kashif</a>, <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nathanatmoz/\">Nathan Johnson</a>, <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pmbaldha/\">Prashant Baldha</a>, <a href=\"https://profiles.wordpress.org/presstigers/\">PressTigers</a>, <a href=\"https://profiles.wordpress.org/programmin/\">programmin</a>, <a href=\"https://profiles.wordpress.org/rafsuntaskin/\">Rafsun Chowdhury</a>, <a href=\"https://profiles.wordpress.org/redcastor/\">redcastor</a>, <a href=\"https://profiles.wordpress.org/littlerchicken/\">Robin Cornett</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/pross/\">Simon Prosser</a>, <a href=\"https://profiles.wordpress.org/skoldin/\">skoldin</a>, <a href=\"https://profiles.wordpress.org/spyderbytes/\">spyderbytes</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">Sébastien SERRE</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tharsheblows/\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a>, <a href=\"https://profiles.wordpress.org/timbowesohft/\">timbowesohft</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/usmankhalid/\">Usman Khalid</a>, <a href=\"https://profiles.wordpress.org/warmlaundry/\">warmlaundry</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, and <a href=\"https://profiles.wordpress.org/yuriv/\">YuriV</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:\"6165\";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: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:33:\"The Month in WordPress: July 2018\";s:7:\"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/2018/08/the-month-in-wordpress-july-2018/\";s: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 Aug 2018 09:11: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:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6158\";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:333:\"With WordPress 5.0 coming closer, there’s lots of work going on all across the project. Read on to learn about how we progressed in July. Release of WordPress 4.9.7 On July 5, WordPress 4.9.7 was released,  fixing one security issue and 17 other bugs across the platform. While this is a minor release, incremental fixes [&#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:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:6411:\"<p>With WordPress 5.0 coming closer, there’s lots of work going on all across the project. Read on to learn about how we progressed in July.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Release of WordPress 4.9.7</h2>\n\n<p>On July 5, <a href=\"https://wordpress.org/news/2018/07/wordpress-4-9-7-security-and-maintenance-release/\">WordPress 4.9.7 was released</a>,  fixing one security issue and 17 other bugs across the platform.<br /></p>\n\n<p>While this is a minor release, incremental fixes are essential to keep WordPress running smoothly. Everyone is encouraged to update as soon as possible and to make sure that automatic updates are switched on.<br /></p>\n\n<p>Would you like to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a> and join the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>The New WordPress Editor</h2>\n\n<p>In the upcoming minor release of WordPress, 4.9.8, a new section in the dashboard will feature Gutenberg, the upcoming content editor for WordPress.<br /></p>\n\n<p>While the official release of Gutenberg <a href=\"https://wordpress.org/news/2018/07/update-on-gutenberg/\">is scheduled</a> for the coming months, you can already install it as <a href=\"https://wordpress.org/plugins/gutenberg/\">a plugin</a> to test it out right now. Additionally, <a href=\"https://wordpress.org/gutenberg/\">a brand new demo page</a> is now available — play around with the many features the editor has to offer, without installing it on your own site.<br /></p>\n\n<p>Would you like to help build or test Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a> and join the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>Page Design Updates on WordPress.org</h2>\n\n<p>Bit by bit we’re refreshing the design of WordPress.org. The latest pages to get a new treatment have been <a href=\"https://wordpress.org/download/\">the Download page</a> and <a href=\"https://profiles.wordpress.org/matt/\">user profiles</a>.<br /></p>\n\n<p>The Meta and Design teams worked hard to make these new designs a reality, with notable contributions from <a href=\'https://profiles.wordpress.org/melchoyce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>melchoyce</a>, <a href=\'https://profiles.wordpress.org/obenland/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>obenland</a>, <a href=\'https://profiles.wordpress.org/mapk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mapk</a>, and <a href=\'https://profiles.wordpress.org/kjellr/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>kjellr</a>. The new designs enhance the overall look of the site and provide more relevant information to those searching.<br /></p>\n\n<p>Would you like to get involved in the design refresh? Follow the <a href=\"https://make.wordpress.org/meta/\">Meta</a> and <a href=\"https://make.wordpress.org/design/\">Design</a> team blogs and join the #meta and #design channels in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>The First WP-CLI Hack Day</h2>\n\n<p>On Friday July 20, the WP-CLI team <a href=\"https://make.wordpress.org/cli/2018/07/04/wp-cli-hack-day/\">held their first hack day</a> — a global event encouraging people to contribute to the official command line tool for WordPress.<br /></p>\n\n<p>Run by <a href=\'https://profiles.wordpress.org/schlessera/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>schlessera</a>, the event <a href=\"https://make.wordpress.org/cli/2018/07/21/wp-cli-hack-day-results/\"> was a great success</a>. Twelve pull requests were  merged and another 13 submitted. It also included a video chat to give all contributors a space to meet each other and connect directly.<br /></p>\n\n<p>Would  you like to get involved in contributing to WP-CLI? Follow <a href=\"https://make.wordpress.org/cli/\">the team blog</a> and join the #cli channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul><li>The WordPress Foundation is <a href=\"https://wordpressfoundation.org/2018/call-for-organizers-introduction-to-open-source-workshops-for-2018/\">looking for local community organizers to run introductory open-source workshops</a> in 2018.</li><li><a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> compiled <a href=\"https://wordpress.org/news/2018/07/quarterly-updates-q2-2018/\">updates for the last quarter</a> from the contribution teams all across the WordPress project.</li><li>In a great move for internationalization, <a href=\"https://en.blog.wordpress.com/2018/03/29/the-wordpress-mobile-apps-now-support-right-to-left-languages/\">the WordPress Mobile Apps now support right-to-left languages</a>.</li><li><a href=\"https://make.wordpress.org/community/2018/07/10/stripe-is-now-available-to-all-wordcamps/\">WordCamp events can now accept payment via Stripe</a> — PayPal remains an alternative option.</li><li>The WP-CLI team will soon <a href=\"https://make.wordpress.org/cli/2018/07/19/details-on-the-upcoming-major-release/\">release v2.0</a> of the official WordPress command line tool.</li><li>The Fields API project in WordPress Core <a href=\"https://wptavern.com/wordpress-core-fields-api-project-is-seeking-new-leadership\">is looking for a new lead</a> to drive it forward.</li><li>In WordPress 4.9.8, <a href=\"https://make.wordpress.org/core/2018/07/27/registering-metadata-in-4-9-8/\">it will  be possible</a> for developers to fully register the meta fields used by their plugins and themes.</li><li>After many years of hard work, <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards\">v1.0.0 of the WordPress Coding Standards for PHP_CodeSniffer</a> has been released.</li><li>The Mobile team <a href=\"https://make.wordpress.org/mobile/2018/07/31/call-for-testing-wordpress-for-ios-10-6/\">is looking for people to help test</a> v10.6 of WordPress for iOS.</li></ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</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:\"6158\";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: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:27:\"Quarterly Updates | Q2 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2018/07/quarterly-updates-q2-2018/\";s: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 Jul 2018 14:50:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Updates\";s:7:\"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=6140\";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:347:\"To keep everyone aware of big projects and efforts across WordPress contributor teams, I&#8217;ve reached out to each team&#8217;s listed representatives. I asked each of them to share their Top Priority (and when they hope for it to be completed), as well as their biggest Wins and Worries. Have questions? I&#8217;ve included a link to [&#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:7:\"Josepha\";s: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:15622:\"<p><em>To keep everyone aware of big projects and efforts across WordPress contributor teams, I&#8217;ve reached out to each team&#8217;s <a href=\"https://make.wordpress.org/updates/team-reps/\">listed representatives</a>. I asked each of them to share their Top Priority (and when they hope for it to be completed), as well as their biggest Wins and Worries. Have questions? I&#8217;ve included a link to each team&#8217;s site in the headings.﻿</em></p>\n\n<h2><a href=\"https://make.wordpress.org/accessibility/\">Accessibility</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/rianrietveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rianrietveld</a>, <a href=\'https://profiles.wordpress.org/joedolson/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joedolson</a>, <a href=\'https://profiles.wordpress.org/afercia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>afercia</a></li>\n	<li><strong>Priority</strong>: Working to make sure that Gutenberg is reasonably accessible prior to merge. ETA is before 5.0</li>\n	<li><strong>Struggle</strong>: Lack of developers and accessibility experts to help test and code the milestone issues. <em>The team is doing outreach to help solve this problem.</em></li>\n	<li><strong>Big Win</strong>: Interest from companies like The Paciello Group and Tenon.io to help out with Gutenberg code review and testing tools.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/cli/\">CLI</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: @danielbachhuber, <a href=\'https://profiles.wordpress.org/schlessera/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>schlessera</a></li>\n	<li><strong>Priority</strong>: Very first global <a href=\"https://make.wordpress.org/cli/2018/07/04/wp-cli-hack-day/\">Hack Day</a> is coming up July 20. Version 2.0.0 is still in progress (new <a href=\"https://github.com/wp-cli/wp-cli/issues/4752\">ETA</a> is end of July).</li>\n	<li><strong>Struggle</strong>: The team continues to need new contributors. The current team is tiny but tough.</li>\n	<li><strong>Big Win</strong>: WP-CLI is currently one of the project&#8217;s four main focuses, as mentioned in the Summer Update at WordCamp Europe.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/community/\">Community</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/francina/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>francina</a>, <a href=\'https://profiles.wordpress.org/hlashbrooke/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hlashbrooke</a></li>\n	<li><strong>Priority</strong>: Focusing on smoothing out the processes in our community management by building up our team of volunteers and establishing what tools we need to keep things running well. ETA is ongoing.</li>\n	<li><strong>Struggle</strong>: Our two biggest struggles at the moment are tracking what we need to get done, and making final decisions on things. <em>There is current work on the tools available to assist with tracking progress.﻿</em></li>\n	<li><strong>Big Win</strong>: After making a concerted effort to get more contributors on the Community Team, we now have a much larger group of volunteers working as deputies and WordCamp mentors</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/core/\">Core</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a></li>\n	<li><strong>Priority</strong>: Following the <a href=\"https://wordpress.tv/2018/07/04/matt-mullenweg-a-summertime-update-keynote-and-qa/\">WordCamp Europe summer update</a> ﻿(and the companion post <a href=\"https://wordpress.org/news/2018/07/update-on-gutenberg/\">here</a>), the team is getting Gutenberg (the new WordPress editing experience) into a strong state for the 5.0 release. Potential ETA as soon as August.</li>\n	<li><strong>Struggle</strong>: Coordinating momentum and direction as we start seeing more contributors offering their time. Still working our way through open issues. <em>﻿The team is starting multiple bug scrubs each week to work through these more quickly and transparently.</em></li>\n	<li><strong>Big Win</strong>: Had a <a href=\"https://wordpress.org/news/2018/05/wordpress-4-9-6-privacy-and-maintenance-release/\">sizable release in 4.9.6</a> which featured major updates around privacy tools and functionality in Core.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/design/\">Design</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/melchoyce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>melchoyce</a>, <a href=\'https://profiles.wordpress.org/karmatosed/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>karmatosed</a>, <a href=\'https://profiles.wordpress.org/boemedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>boemedia</a>, <a href=\'https://profiles.wordpress.org/joshuawold/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joshuawold</a>, <a href=\'https://profiles.wordpress.org/mizejewski/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mizejewski</a></li>\n	<li><strong>Priority</strong>: Better on-boarding of new contributors, especially creating better documentation. ETA is end of July.</li>\n	<li><strong>Struggle</strong>: It&#8217;s hard to identify reasonably small tasks for first-time contributors.</li>\n	<li><strong>Big Win</strong>: The team is much more organized now which has helped clear out the design backlog, bring in new contributors, and also keep current contributors coming back. <em>Bonus: Joshua Wold will co-lead the upcoming release.</em></li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/docs/\">Documentation</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/kenshino/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>kenshino</a><br /></li>\n	<li><strong>Priority</strong>: Opening up the work on <a href=\"https://make.wordpress.org/docs/2018/02/26/state-of-helphub-february-2018/\">HelpHub</a> to new contributors and easing the onboarding process. No ETA.<br /></li>\n	<li><strong>Struggle</strong>: Some blockers with making sure the code and database can be ready to launch on https://wordpress.org/support/<br /></li>\n	<li><strong>Big Win</strong>: The <a href=\"https://wp-helphub.com/\">first phase of HelpHub</a> creation is complete, which means content updates (current info, more readable, easier discovery), internal search, design improvements, and REST API endpoints.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/hosting/\">Hosting</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/mikeschroder/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mikeschroder</a>, <a href=\'https://profiles.wordpress.org/jadonn/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jadonn</a></li>\n	<li><strong>Priority</strong>: Preparing hosts for supporting Gutenberg, especially support questions they&#8217;re likely to see when the &#8220;Try Gutenberg&#8221; callout is released. ETA July 31st, then before WordPress 5.0<br /><strong></strong></li>\n	<li><strong>Struggle</strong>: Most contributions are still made a by a small team of volunteers. Seeing a few more people join, but progress is slow.<br /><strong></strong></li>\n	<li><strong>﻿Big Win</strong>: New team members and hosting companies have joined the #hosting-community team and have started contributing.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/marketing/\">Marketing</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/bridgetwillard/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bridgetwillard</a></li>\n	<li><strong>Priority</strong>: Continuing to write and publish case studies from the community. ETA is ongoing.</li>\n	<li><strong>Struggle</strong>: No current team struggles.</li>\n	<li><strong>Big Win</strong>: Wrote and designed a short <a href=\"https://make.wordpress.org/marketing/2018/04/24/contributor-day-onboarding-pdf/\">Contributor Day onboarding card</a>. It was used at Contributor Day at WCEU and onboarding time went down to 1 hour instead of 3 hours.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/meta/\">Meta</a> (WordPress.org Site)</h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/tellyworth/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>tellyworth</a>, <a href=\'https://profiles.wordpress.org/coffee2code/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>coffee2code</a></li>\n	<li><strong>Priority</strong>: Reducing manual work around the contributor space (theme review, GDPR/privacy, plugin review). ETA for small wins is end of quarter, larger efforts after that.</li>\n	<li><strong>Struggle</strong>: Maintaining momentum on tickets. <em>There are also some discussions about updating the ticket management process across teams that use the Meta trac system.</em></li>\n	<li><strong>Big Win</strong>: The new About page launched and has been translated across most locale sites.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/mobile/\">Mobile</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/elibud/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>elibud</a></li>\n	<li><strong>Priority</strong>: Getting Gutenberg in the mobile applications. ETA is late December.</li>\n	<li><strong>Struggle</strong>: Consuming the Gutenberg source in the ReactNative app directly. <em>More info can be found here: https://make.wordpress.org/mobile/2018/07/09/next-steps-for-gutenberg-mobile/</em></li>\n	<li><strong>Big Win</strong>: The WordPress mobile applications now fully support right-to-left languages and are compliant with the latest standards for accessibility.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/plugins/\">Plugins</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/ipstenu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ipstenu</a></li>\n	<li><strong>Priority</strong>: Clearing ~8,000 unused plugins from the queues. Likely ETA is September.<br /></li>\n	<li><strong>Struggles</strong>: Had to triage a lot of false claims around plugins offering GDPR compliance.</li>\n	<li><strong>Big Win</strong>: Released 4.9.6 and <a href=\"https://make.wordpress.org/plugins/2018/05/17/wp-4-9-6-privacy-hooks-and-you/\">updated expectations</a> with plugin authors. Huge thanks to the Core Privacy team for their hard work on this.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/polyglots/\">Polyglots</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/petya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>petya</a>, <a href=\'https://profiles.wordpress.org/ocean90/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ocean90</a>, <a href=\'https://profiles.wordpress.org/nao/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nao</a>, <a href=\'https://profiles.wordpress.org/chantalc/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chantalc</a>, <a href=\'https://profiles.wordpress.org/deconf/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>deconf</a>, <a href=\'https://profiles.wordpress.org/casiepa/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>casiepa</a></li>\n	<li><strong>Priority</strong>: Keep WordPress releases translated to 100% and then concentrate on the top 100 plugins and themes. ETA is ongoing.<br /><strong></strong></li>\n	<li><strong>﻿Struggle</strong>: Getting new PTEs fast enough, and complex tools/systems. Overall, the volume of strings awaiting approval.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/support/\">Support</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/clorith/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>clorith</a></li>\n	<li><strong>Priority:</strong> Getting ready for the Gutenberg callout (it got pushed last quarter). Needing a better presence on the official support forums, and outreach for that is underway, ETA end of July. <br /></li>\n	<li><strong>Struggle</strong>: Keeping contributors participating post-contributor days/drives. <em>﻿Considering the creation of a dedicated post-contributor day survey to get some insight here.</em></li>\n	<li><strong>Big Win</strong>: The increase in international liaisons joining for weekly meetings, helping bring the wider support community together.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/themes/\">Theme Review</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/acosmin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>acosmin</a>, <a href=\'https://profiles.wordpress.org/rabmalin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rabmalin</a>, <a href=\'https://profiles.wordpress.org/thinkupthemes/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>thinkupthemes</a>, <a href=\'https://profiles.wordpress.org/williampatton/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>williampatton</a></li>\n	<li><strong>Priority</strong>: Building a better Theme Check/Sniffer in order to automate most of the checks done right now by reviewers. ETA late 2018, early 2019.</li>\n	<li><strong>Struggle</strong>: Bringing in new contributors to the team.</li>\n	<li><strong>Big Win</strong>: <a href=\"https://make.wordpress.org/themes/2018/04/30/trusted-authors-program/\">Trusted Authors program﻿</a></li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/tide/\">Tide</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/valendesigns/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>valendesigns</a> (but usually <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a>)</li>\n	<li><strong>Priority</strong>: Storing PHPCompatibilty results inside the WordPress.org API and building a UI to display those results, an endpoint to request an audit is required for this work to continue.</li>\n	<li><strong>Struggle</strong>: Development has dramatically slowed down while team members are on leave or pulled into internal client work.</li>\n	<li><strong>Big Win</strong>: Migration to Google Cloud Platform (GCP) from Amazon Web Services (AWS) is complete and the audit servers have all been rewritten in Go. (This allows us to be faster with greater capacity and less cost.)</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/training/\">Training</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/bethsoderberg/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bethsoderberg</a>, <a href=\'https://profiles.wordpress.org/juliek/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>juliek</a></li>\n	<li><strong>Priority:</strong> Lesson plan production. ETA is ongoing.</li>\n	<li><strong>Struggle:</strong> The workflow is a little complex, so recruiting and training enough contributors to keep the process moving is a struggle.</li>\n	<li><strong>Big Win</strong>: WordCamp Europe&#8217;s Contributor Day was very productive. New tools/workflow are in place and two team representatives were there to lead and help.</li>\n</ul>\n\n<p><em>Interested in updates from the first quarter of this year? You can find those here: <a href=\"https://make.wordpress.org/updates/2018/04/24/quarterly-updates-q1-2018/\"><em>https://make.wordpress.org/updates/2018/04/24/quarterly-updates-q1-2018/</em></a>\n	</em>\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:\"6140\";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			\";s: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:19:\"Update on Gutenberg\";s:7:\"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/news/2018/07/update-on-gutenberg/\";s: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, 06 Jul 2018 19:23: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:2:{i:0;a:5:{s:4:\"data\";s:5:\"Focus\";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:9:\"Gutenberg\";s:7:\"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=6118\";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:\"Progress on the Gutenberg project, the new content creating experience coming to WordPress, has come a long way. Since the start of the project, there have been 30 releases and 12 of those happened after WordCamp US 2017. In total since then, there have been 1,764 issues opened and 1,115 closed as of WordCamp Europe. [&#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:13:\"Tammie Lister\";s: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:2261:\"<p>Progress on the Gutenberg project, the new content creating experience coming to WordPress, has come a long way. Since the start of the project, there have been 30 releases and 12 of those happened after WordCamp US 2017. In total since then, there have been 1,764 issues opened and 1,115 closed as of WordCamp Europe. As the work on phase one moves into its final stretch, here is what you can expect.<br /></p>\n\n<h4>In Progress</h4>\n\n<ul>\n	<li>Freeze new features in Gutenberg (the feature list can be found <a href=\"https://github.com/WordPress/gutenberg/issues/4894\">here</a>).</li>\n	<li>Hosts, agencies, teachers invited to opt-in sites they have influence over.</li>\n	<li>WordPress.com has opt-in for wp-admin users. The number of sites and posts will be tracked.</li>\n	<li>Mobile app support for Gutenberg will be across iOS and Android.</li>\n</ul>\n\n<h4>July</h4>\n\n<ul>\n	<li>4.9.x release with an invitation to install either Gutenberg or Classic Editor plugin.</li>\n	<li>WordPress.com will move to opt-out. There will be tracking to see who opts out and why.</li>\n	<li>Triage increases and bug gardening escalates to get blockers in Gutenberg down to zero.</li>\n	<li>Gutenberg phase two, Customization exploration begins by moving beyond the post.</li>\n</ul>\n\n<h4>August and beyond</h4>\n\n<ul>\n	<li>All critical issues within Gutenberg are resolved.</li>\n	<li>There is full integration with Calypso and there is opt-in for users there.</li>\n	<li>A goal will be 100k+ sites having made 250k+ posts using Gutenberg.</li>\n	<li>Core merge of Gutenberg begins the 5.0 release cycle.</li>\n	<li>5.0 moves into beta releases and translations are completed.</li>\n	<li>There will be a mobile version of Gutenberg by the end of the year.</li>\n</ul>\n\n<p>WordPress 5.0 could be as soon as August with hundreds of thousands of sites using Gutenberg before release. Learn more about Gutenberg <a href=\"https://wordpress.org/gutenberg/\">here</a>, take it for a <a href=\"https://testgutenberg.com/\">test drive</a>, <a href=\"https://wordpress.org/plugins/gutenberg/\">install</a> on your site, follow along on <a href=\"https://github.com/WordPress/gutenberg\">GitHub</a> and give your <a href=\"https://wordpressdotorg.polldaddy.com/s/gutenberg-support\">feedback</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:\"6118\";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: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.9.7 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/2018/07/wordpress-4-9-7-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:\"Thu, 05 Jul 2018 17:00: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: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=6091\";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:360:\"WordPress 4.9.7 is now available. This is a security and maintenance release for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately. WordPress versions 4.9.6 and earlier are affected by a media issue that could potentially allow a user with certain capabilities to attempt to delete files outside the uploads [&#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:3984:\"<p>WordPress 4.9.7 is now available. This is a <strong>security and maintenance release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n<p>WordPress versions 4.9.6 and earlier are affected by a media issue that could potentially allow a user with certain capabilities to attempt to delete files outside the uploads directory.</p>\n\n<p>Thank you to <a href=\"https://hackerone.com/slavco\">Slavco</a> for reporting the original issue and <a href=\"https://www.wordfence.com/\">Matt Barry</a> for reporting related issues.</p>\n\n<p>Seventeen other bugs were fixed in WordPress 4.9.7. Particularly of note were:</p>\n\n<ul>\n	<li>Taxonomy: Improve cache handling for term queries.</li>\n	<li>Posts, Post Types: Clear post password cookie when logging out.</li>\n	<li>Widgets: Allow basic HTML tags in sidebar descriptions on Widgets admin screen.</li>\n	<li>Community Events Dashboard: Always show the nearest WordCamp if one is coming up, even if there are multiple Meetups happening first.</li>\n	<li>Privacy: Make sure default privacy policy content does not cause a fatal error when flushing rewrite rules outside of the admin context.</li>\n</ul>\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.7</a> or venture over to Dashboard → Updates and click &#8220;Update Now.&#8221; Sites that support automatic background updates are already beginning to update automatically.</p>\n\n<p>The previously scheduled 4.9.7 is now referred to as 4.9.8, and will follow the <a href=\"https://make.wordpress.org/core/2018/07/04/dev-chat-summary-july-4th-4-9-7-week-7/\">release schedule posted yesterday</a>.</p>\n\n<p>Thank you to everyone who contributed to WordPress 4.9.7:</p>\n\n<p><a href=\"https://profiles.wordpress.org/1naveengiri/\">1naveengiri</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abdullahramzan/\">abdullahramzan</a>, <a href=\"https://profiles.wordpress.org/alejandroxlopez/\">alejandroxlopez</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/aryamaaru/\">Arun</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/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/garetharnold/\">Gareth</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">ibelanger</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/khaihong/\">khaihong</a>, <a href=\"https://profiles.wordpress.org/lbenicio/\">lbenicio</a>, <a href=\"https://profiles.wordpress.org/leanderiversen/\">Leander Iversen</a>, <a href=\"https://profiles.wordpress.org/mermel/\">mermel</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">metalandcoffee</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Migrated to @jeffpaul</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/skoldin/\">skoldin</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/warmlaundry/\">warmlaundry</a>, and <a href=\"https://profiles.wordpress.org/yuriv/\">YuriV</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:\"6091\";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:33:\"The Month in WordPress: June 2018\";s:7:\"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/2018/07/the-month-in-wordpress-june-2018/\";s: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, 02 Jul 2018 09:28:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6087\";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:366:\"With one of the two flagship WordCamp events taking place this month, as well as some important WordPress project announcements, there’s no shortage of news. Learn more about what happened in the WordPress community in June. Another Successful WordCamp Europe On June 14th, WordCamp Europe kicked off three days of learning and contributions in Belgrade. [&#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:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:4627:\"<p>With one of the two flagship WordCamp events taking place this month, as well as some important WordPress project announcements, there’s no shortage of news. Learn more about what happened in the WordPress community in June.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Another Successful WordCamp Europe</h2>\n\n<p>On June 14th, WordCamp Europe kicked off three days of learning and contributions in Belgrade. Over 2,000 people attended in person, with hundreds more watching live streams of the sessions.</p>\n\n<p>The WordCamp was a great success with plenty of first-time attendees and new WordPress contributors getting involved in the project and community. Recorded sessions from the 65 speakers at the event will be available on WordPress.tv in the coming weeks. In the meantime, check out the <a href=\"https://www.flickr.com/photos/wceu/albums\">photos from the event</a>.</p>\n\n<p><a href=\"https://2018.europe.wordcamp.org/2018/06/16/wordcamp-europe-2019/\">The next WordCamp Europe</a> takes place on June 20-22 2019 in Berlin, Germany. If you’re based in Europe and would like to serve on the organizing team, <a href=\"https://2019.europe.wordcamp.org/2018/06/16/call-wordcamp-europe-2019-organizers/\">fill in the application form</a>.</p>\n\n<h2>Updated Roadmap for the New WordPress Content Editor</h2>\n\n<p>During his keynote session at WordCamp Europe, Matt Mullenweg presented <a href=\"https://gutenbergtimes.com/mullenweg-on-gutenberg-roll-out-plan/\">an updated roadmap</a> for <a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a>, the new content editor coming in WordPress 5.0.</p>\n\n<p>While the editor is in rapid development, <a href=\"https://make.wordpress.org/core/2018/06/21/whats-new-in-gutenberg-21st-june/\">with v3.1 being released this past month</a>, the team is aiming to ship Gutenberg with WordPress Core in August, 2018. This is not set in stone — the release date may shift as development progresses — but this gives the first realistic idea of when we can expect the editor to be released.</p>\n\n<p>If you would like to contribute to Gutenberg, read <a href=\"https://wordpress.org/gutenberg/handbook/\">the handbook</a>, follow the <a href=\"https://make.wordpress.org/core/\">Core team blog</a>, and join the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>WordCamp Incubator Cities Announced</h2>\n\n<p>The WordCamp Incubator program helps spread WordPress to underserved communities by providing organizing support for their first WordCamp. The first iteration of this program ran successfully in 2016 and empowered three cities to start their own WordPress communities.</p>\n\n<p>This year, the Community Team is running the Incubator program again. After receiving applications from 104 communities, <a href=\"https://make.wordpress.org/community/2018/06/26/wordcamp-incubator-program-2018-locations-announcement/\">they have selected</a> Montevideo, Uruguay and Kota Kinabalu, Malaysia to participate in the program. Both cities will receive direct help from experienced WordCamp organizers to run their first-ever WordCamp as a way to help their WordPress community get started.</p>\n\n<p>To find out more about the Incubator program follow the <a href=\"https://make.wordpress.org/community/\">Community team blog</a>, and join the #community-events channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n	<li>The WordPress community of Spain recently <a href=\"https://twitter.com/wp_es/status/1004681694660603904\">received an award</a> for being the best open-source community in the country.</li>\n	<li>This month, WordPress reached <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\">the milestone of powering 31% of websites</a>.</li>\n	<li><a href=\"https://wprig.io/introducing-wprig-wordpress/\">WP Rig</a> is a brand new tool to help WordPress developers build better themes.</li>\n	<li><a href=\"https://richtabor.com/gutenberg-block-unit-test/\">Block Unit Test</a> is a new plugin to help theme developers prepare for Gutenberg.</li>\n	<li>Near the end of the month, Zac Gordon hosted <a href=\"https://javascriptforwp.com/conference/\">an online conference</a> focused on JavaScript development in WordPress &#8211; the session videos will be available on YouTube soon.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</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:\"6087\";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:32:\"The Month in WordPress: May 2018\";s:7:\"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/2018/06/the-month-in-wordpress-may-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Jun 2018 09:09: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6065\";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:360:\"This month saw two significant milestones in the WordPress community — the 15th anniversary of the project, and GDPR-related privacy tools coming to WordPress Core. Read on to find out more about this and everything else that happened in the WordPress community in May. Local Communities Celebrate the 15th Anniversary of WordPress Last Sunday, May [&#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:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:4537:\"<p>This month saw two significant milestones in the WordPress community — the 15th anniversary of the project, and GDPR-related privacy tools coming to WordPress Core. Read on to find out more about this and everything else that happened in the WordPress community in May.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Local Communities Celebrate the 15th Anniversary of WordPress</h2>\n\n<p>Last Sunday, May 27, WordPress turned 15 years old. This is a noteworthy occasion for an open-source project like WordPress and one well worth celebrating. To mark the occasion, <a href=\"https://wp15.wordpress.net/\">WordPress communities across the world gathered</a> for parties and meetups in honor of the milestone.</p>\n\n<p>Altogether, there were 224 events globally, with <a href=\"https://wp15.wordpress.net/about/\">a few more of those still scheduled</a> to take place in some communities — attend one in your area if you can.</p>\n\n<p>If your city doesn’t have a WordPress meetup group, this is a great opportunity to start one! Learn how with <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/welcome/\">the Meetup Organizer Handbook</a>, and join the #community-events channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>Privacy Tools added to WordPress core</h2>\n\n<p>In light of recent changes to data privacy regulations in the EU, WordPress Core shipped important updates <a href=\"https://wordpress.org/news/2018/05/wordpress-4-9-6-privacy-and-maintenance-release/\">in the v4.9.6 release</a>, giving site owners tools to help them comply with the new General Data Protection Regulation (GDPR). It is worth noting, however, that WordPress cannot ensure you are compliant — this is still a site owner’s responsibility.</p>\n\n<p>The new privacy tools include a number of features focused on providing privacy and personal data management to all site users — asking commenters for explicit consent to store their details in a cookie, providing site owners with an easy way to publish a Privacy Policy, and providing data export and erasure tools to all site users that can be extended by plugins to allow the handling of data that they introduce.</p>\n\n<p>To find out more about these features and the other updates, read the <a href=\"https://make.wordpress.org/core/2018/05/17/4-9-6-update-guide/\">4.9.6 update guide</a>. You can also get involved in contributing to this part of WordPress Core by jumping into the #core-privacy channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>, and following<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a>.</p>\n\n<h2>Updates to the WordPress.org Privacy Policy</h2>\n\n<p>In a similar vein, WordPress.org itself has received <a href=\"https://wordpress.org/about/privacy/\">an updated Privacy Policy</a> to make clear what is being tracked and how your data is handled. Along with that, a <a href=\"https://wordpress.org/about/privacy/cookies/\">Cookie Policy</a> has also been added to explain just what is collected and stored in your browser when using the site.</p>\n\n<p>These policies cover all sites on the WordPress.org network — including WordPress.org, WordPress.net, WordCamp.org, BuddyPress.org, bbPress.org, and other related domains and subdomains. It’s important to note that this does not mean that anything has changed in terms of data storage; rather that these documents clarify what data is stored and how it is handled.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n	<li>WordCamp US 2018 has <a href=\"https://2018.us.wordcamp.org/2018/05/29/speak-at-wordcamp-us/\">opened up speaker submissions</a> for the December event.</li>\n	<li><a href=\"https://2018.europe.wordcamp.org/2018/05/15/wceu-live-stream-tickets/\">Live stream tickets are now available for WordCamp Europe</a>, happening on June 14-16.</li>\n	<li>Gutenberg, the new editor for WordPress Core, is getting ever closer to the final stages with <a href=\"https://make.wordpress.org/core/2018/05/18/whats-new-in-gutenberg-18th-may/\">a major update</a> this month.</li>\n	<li>In preparation for Gutenberg, <a href=\"https://core.trac.wordpress.org/changeset/43309\">significant work has been done</a> to improve WordPress Core’s build process.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</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:\"6065\";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: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:36:\"WordPress.org Privacy Policy Updates\";s:7:\"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:72:\"https://wordpress.org/news/2018/05/wordpress-org-privacy-policy-updates/\";s: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, 25 May 2018 08:06: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:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"privacy\";s:7:\"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=6047\";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:325:\"The WordPress.org privacy policy has been updated, hurray! While we weren&#8217;t able to remove all the long sentences, we hope you find the revisions make it easier to understand: how we collect and use data, how long the data we collect is retained, and how you can request a copy of the data you&#8217;ve shared [&#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:16:\"Andrea Middleton\";s: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:657:\"<p>The <a href=\"https://wordpress.org/about/privacy/\">WordPress.org privacy policy</a> has been updated, hurray! While we weren&#8217;t able to remove <strong>all</strong> the long sentences, we hope you find the revisions make it easier to understand:</p>\n<ul>\n<li>how we collect and use data,</li>\n<li>how long the data we collect is retained, and</li>\n<li>how you can request a copy of the data you&#8217;ve shared with us.</li>\n</ul>\n<p>There hasn&#8217;t been any change to the data that WordPress.org collects or how that data is used; the privacy policy just provides more detail now. Happy reading, and thanks for using WordPress!</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:\"6047\";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: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:47:\"WordPress 4.9.6 Privacy 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:83:\"https://wordpress.org/news/2018/05/wordpress-4-9-6-privacy-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:\"Thu, 17 May 2018 19:21:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=5920\";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:358:\"WordPress 4.9.6 is now available. This is a privacy and maintenance release. We encourage you to update your sites to take advantage of the new privacy features. Privacy The European Union&#8217;s General Data Protection Regulation (GDPR) takes effect on May 25. The GDPR requires companies and site owners to be transparent about how they collect, [&#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:\"Allen Snook\";s: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:13399:\"<p>WordPress 4.9.6 is now available. This is a <strong>privacy and maintenance release</strong>. We encourage you to update your sites to take advantage of the new privacy features.</p>\n\n<figure class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/05/GDPR-Banner.png?w=632&#038;ssl=1\" alt=\"A decorative header featuring the text &quot;GDPR&quot; and a lock inside of a blue shield, on multicolor green background.\" class=\"wp-image-5988\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2018/05/GDPR-Banner.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2018/05/GDPR-Banner.png?resize=300%2C150&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2018/05/GDPR-Banner.png?resize=768%2C384&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2018/05/GDPR-Banner.png?resize=1024%2C512&amp;ssl=1 1024w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n<h2 style=\"text-align:left\">Privacy</h2>\n\n<p>The European Union&#8217;s General Data Protection Regulation (<strong>GDPR</strong>) takes effect on May 25. The GDPR requires companies and site owners to be transparent about how they collect, use, and share personal data. It also gives individuals more access and choice when it comes to how their own personal data is collected, used, and shared.<br /></p>\n\n<p>It’s important to understand that while the GDPR is a European regulation, its requirements apply to all sites and online businesses that collect, store, and process personal data about EU residents no matter where the business is located.<br /></p>\n\n<p>You can learn more about the GDPR from the European Commission&#8217;s <a href=\"http://ec.europa.eu/justice/smedataprotect/index_en.htm\">Data Protection page</a>.<br /></p>\n\n<p>We&#8217;re committed to supporting site owners around the world in their work to comply with this important law. As part of that effort, we’ve added a number of new privacy features in this release.</p>\n\n<h2 style=\"text-align:left\">Comments</h2>\n\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/05/comments-border.png?w=632&#038;ssl=1\" alt=\"A screenshot of a comment form, where the new &quot;Save my name, email, and website in this browser for the next time I comment&quot; checkbox is featured.\" class=\"wp-image-5986\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/05/comments-border.png?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2018/05/comments-border.png?resize=300%2C291&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/05/comments-border.png?resize=768%2C744&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2018/05/comments-border.png?resize=1024%2C992&amp;ssl=1 1024w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n<p>Logged-out commenters will be given a choice on whether their name, email address, and website are saved in a cookie on their browser.</p>\n\n<h2 style=\"text-align:left\">Privacy Policy Page</h2>\n\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?w=632&#038;ssl=1\" alt=\"A screenshot of the new Privacy Settings page.\" class=\"wp-image-5995\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?w=1898&amp;ssl=1 1898w, https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?resize=300%2C177&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?resize=768%2C453&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?resize=1024%2C604&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n<p>Site owners can now designate a privacy policy page. This page will be shown on your login and registration pages. You should manually add a link to your policy to every page on your website. If you have a footer menu, that’s a great place to include your privacy policy.<br /></p>\n\n<p>In addition, we’ve created a guide that includes insights from WordPress and participating plugins on how they handle personal data. These insights can be copied and pasted into your site&#8217;s privacy policy to help you get started.<br /></p>\n\n<p>If you maintain a plugin that collects data, we recommend including that information in WordPress’ privacy policy guide. <a href=\"https://developer.wordpress.org/plugins/privacy/\">Learn more in our Privacy section of the Plugin Handbook</a>.</p>\n\n<h2 style=\"text-align:left\">Data Handling</h2>\n\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?w=632&#038;ssl=1\" alt=\"A screenshot of the new Export Personal Data tools page. Several export requests are listed on the page, to demonstrate how the new feature will work.\" class=\"wp-image-5999\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?w=2372&amp;ssl=1 2372w, https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?resize=300%2C221&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?resize=768%2C565&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?resize=1024%2C753&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n<div class=\"wp-block-columns has-2-columns\">\n		<h3 class=\"layout-column-1\">Data Export</h3>\n	\n		<p class=\"layout-column-1\">Site owners can export a ZIP file containing a user&#8217;s personal data, using data gathered by WordPress and participating plugins.</p>\n	\n		<h3 class=\"layout-column-2\">Data Erasure</h3>\n	\n		<p class=\"layout-column-2\">Site owners can erase a user&#8217;s personal data, including data collected by participating plugins.</p>\n	</div>\n\n<blockquote class=\"wp-block-quote\">\n	<p>Howdy,</p>\n	<p>A request has been made to perform the following action on your account:<br /> </p>\n	<p><strong>Export Personal Data</strong><br /> </p>\n	<p>To confirm this, please click on the following link:<br /><a href=\"#\">http://.wordpress.org/wp-login.php?action=confirmaction&#8230;</a><br /> </p>\n	<p>You can safely ignore and delete this email if you do not want to<br /> take this action.<br /> </p>\n	<p>This email has been sent to <a href=\"#\">you@example.com</a>.<br /> </p>\n	<p>Regards,<br /><em>Your friends at WordPress</em><br /><a href=\"http://wordpress.org\"><em> http://wordpress.org</em></a></p>\n</blockquote>\n\n<p>Site owners have a new email-based method that they can use to confirm personal data requests. This request confirmation tool works for both export and erasure requests, and for both registered users and commenters.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2 style=\"text-align:left\">Maintenance</h2>\n\n<p>95 updates were made in WordPress 4.9.6. In addition to the above, particularly of note were:<br /></p>\n\n<ul>\n	<li>&#8220;Mine&#8221; has been added as a filter in the media library.</li>\n	<li>When viewing a plugin in the admin, it will now tell you the minimum PHP version required.</li>\n	<li>We&#8217;ve added new PHP polyfills for forwards-compatibility and proper variable validation.</li>\n	<li>TinyMCE was updated to the latest version (4.7.11).<br /></li>\n</ul>\n\n<p><a href=\"https://make.wordpress.org/core/2018/05/17/4-9-6-update-guide/\">This post has more information about all of the issues fixed in 4.9.6 if you&#8217;d like to learn more</a>.</p>\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.6</a> or venture over to Dashboard → Updates and click &#8220;Update Now.&#8221; Sites that support automatic background updates will start updating soon.<br /></p>\n\n<p class=\"has-background has-very-light-gray-background-color\">Please note that if you’re currently on WordPress 4.9.3, you should manually update your site immediately.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<p>Thank you to everyone who contributed to WordPress 4.9.6:<br /><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/abdullahramzan/\">abdullahramzan</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/allendav/\">allendav</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton/\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bridgetwillard/\">bridgetwillard</a>, <a href=\"https://profiles.wordpress.org/burlingtonbytes/\">Burlington Bytes</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/claudiu/\">claudiu</a>, <a href=\"https://profiles.wordpress.org/coreymckrill/\">Corey McKrill</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/ericdaams/\">Eric Daams</a>, <a href=\"https://profiles.wordpress.org/fclaussen/\">Fernando Claussen</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/idea15/\">Heather Burns</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">herregroen</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">ibelanger</a>, <a href=\"https://profiles.wordpress.org/imath/\">imath</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jesperher/\">Jesper V Nielsen</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">JJJ</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/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/jrf/\">jrf</a>, <a href=\"https://profiles.wordpress.org/dejliglama/\">Kåre Mulvad Steffensen</a>, <a href=\"https://profiles.wordpress.org/lakenh/\">Laken Hafner</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/lbenicio/\">lbenicio</a>, <a href=\"https://profiles.wordpress.org/macbookandrew/\">macbookandrew</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mnelson4/\">Michael Nelson</a>, <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley</a>, <a href=\"https://profiles.wordpress.org/casiepa/\">Pascal Casier</a>, <a href=\"https://profiles.wordpress.org/pbarthmaier/\">pbrocks</a>, <a href=\"https://profiles.wordpress.org/postphotos/\">postphotos</a>, <a href=\"https://profiles.wordpress.org/pmbaldha/\">Prashant Baldha</a>, <a href=\"https://profiles.wordpress.org/presstigers/\">PressTigers</a>, <a href=\"https://profiles.wordpress.org/programmin/\">programmin</a>, <a href=\"https://profiles.wordpress.org/littlerchicken/\">Robin Cornett</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/satollo/\">Stefano Lissa</a>, <a href=\"https://profiles.wordpress.org/stephdau/\">Stephane Daury (stephdau)</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/teddytime/\">teddytime</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">thomasplevy</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/voneff/\">voneff</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, and <a href=\"https://profiles.wordpress.org/xkon/\">Xenos (xkon) Konstantinos</a>.<br /></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:\"5920\";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: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:\"The Month in WordPress: April 2018\";s:7:\"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/news/2018/05/the-month-in-wordpress-april-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 May 2018 08:30: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5891\";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:324:\"This past month saw a lot of preparation for upcoming events and releases across the WordPress project. Read on to find out more about these plans, and everything else that happened around the community in April. The WordPress 15th Anniversary is Coming On May 27 2018, WordPress will turn 15 years old — this is [&#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:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:4981:\"<p>This past month saw a lot of preparation for upcoming events and releases across the WordPress project. Read on to find out more about these plans, and everything else that happened around the community in April.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>The WordPress 15th Anniversary is Coming</h2>\n\n<p>On May 27 2018, <a href=\"https://wordpress.org/news/2018/04/celebrate-the-wordpress-15th-anniversary-on-may-27/\">WordPress will turn 15 years old</a> — this is a huge milestone for the project, or, indeed, for any open-source platform. The Community Team has been hard at work helping communities around the world plan local anniversary parties.</p>\n\n<p>Check <a href=\"https://wp15.wordpress.net/\">the central anniversary website</a> to see if there’s already a party being planned near you. These parties are all organized by local communities — if there’s no local community in your area, you can <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/welcome/#starting-a-new-meetup-com-group\">start one today</a> and host a party yourself.</p>\n\n<h2>Work has Started on a Gutenberg Migration Guide</h2>\n\n<p>With Gutenberg, the upcoming WordPress content editor, in rapid development, a lot of people have been wondering how they will convert their existing plugins to work with the new features. To mitigate the issues here and help people overcome any migration hurdles, <a href=\"https://make.wordpress.org/core/2018/04/26/your-help-wanted-gutenberg-migration-guide/\">a Gutenberg Migration Guide is underway</a> to assist developers with making their code Gutenberg-compatible.</p>\n\n<p>If you’d like to contribute to this guide, you can review <a href=\"https://github.com/danielbachhuber/gutenberg-migration-guide\">the existing documentation on GitHub</a> and <a href=\"https://github.com/danielbachhuber/gutenberg-migration-guide/issues\">open a new issue</a> if you find something to add.</p>\n\n<h2>Theme Review Team Launches Trusted Authors Program</h2>\n\n<p>Reviews of themes submitted to the Theme Directory can take quite a while to complete. In order to combat this issue and to make the theme submission process smoother for everyone, <a href=\"https://make.wordpress.org/themes/2018/04/30/trusted-authors-program/\">the Theme Review Team is introducing a Trusted Authors Program</a>.</p>\n\n<p>This program will allow frequent and reliable theme authors to apply for trusted status, allowing them to upload themes more frequently and to have their themes automatically approved. This will allow more high-quality themes to be added to the directory, as well as recognize the hard work that authors put in to build their themes.</p>\n\n<p>If you would like to get involved with reviewing themes, you can read <a href=\"https://make.wordpress.org/themes/handbook/get-involved/become-a-reviewer/\">their getting started guide</a>, follow the <a href=\"https://make.wordpress.org/themes/\">team blog</a> and join the #themereview channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n    <li><a href=\"https://wordpress.org/news/2018/04/wordpress-4-9-5-security-and-maintenance-release/\">WordPress 4.9.5 was released</a> early this month, fixing numerous bugs and potential security issues. The two leads for this release <a href=\"https://make.wordpress.org/core/2018/04/20/4-9-5-feedback-leading-a-wordpress-minor-release/\">published some interesting feedback</a> about the process.</li>\n    <li>In addition to the Trusted Authors Program mentioned above, the Theme Review Team is <a href=\"https://make.wordpress.org/themes/2018/04/09/changes-in-theme-review-process/\">making some changes to their review process</a> to minimize theme review delays.<br /></li>\n    <li>The Marketing Team produced <a href=\"https://make.wordpress.org/marketing/2018/04/24/contributor-day-onboarding-pdf/\">a handy Contributor Day onboarding PDF</a> for organizers to hand out to contributors attending WordCamps.</li>\n    <li>The Accessibility Team is actively looking for contributors for <a href=\"https://make.wordpress.org/accessibility/handbook/\">their handbook</a>.</li>\n    <li>A new type of WordCamp, <a href=\"https://make.wordpress.org/community/2018/04/03/want-to-help-organize-a-wordcamp-for-organizers/\">targeted at organizers</a>, is in the planning stages now.</li>\n    <li><a href=\"https://wordpress.org/about/\">The WordPress.org About pages</a> received a significant redesign to make them more clear and useful.</li>\n    <li>The Community Team <a href=\"https://make.wordpress.org/community/2018/04/27/wordcamp-incubator-program-2018-2019-roadmap/\">posted the roadmap</a> for this year’s WordCamp Incubator program.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</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:\"5891\";s: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:9:\"\n	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:4:\"\n	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:\"Sun, 05 Aug 2018 19:09:08 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:\"Thu, 02 Aug 2018 22:13:06 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:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20180207075304\";}','no'),(4260,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1533539349','no'),(4261,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1533496149','no'),(4262,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1533539349','no'),(4263,'_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:92:\"Post Status: Considerations for eCommerce merchants, with Andrew Youderian of eCommerce Fuel\";s:7:\"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=46845\";s:7:\"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://poststatus.com/considerations-for-ecommerce-merchants-with-andrew-youderian-of-ecommerce-fuel/\";s: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:1768:\"<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 co-host Brian Richards.</p>\n<p>In this episode, I bring on <a href=\"https://twitter.com/youderian\">Andrew Youderian</a>. Andrew runs eCommerce Fuel &#8212; a great website geared toward eCommerce store owners, specifically those making high six figures or seven figures in revenue per year.</p>\n<p>Andrew keeps his ear low to the ground in the eCommerce landscape and carries no specific WordPress bias. If anything his experience is in other platforms &#8212; making a discussion with him both on platforms and also just eCommerce in general particularly valuable to me.</p>\n<p></p>\n<h3>Episode Links</h3>\n<ul>\n<li><a href=\"https://ecommercefuel.com\">eCommerce Fuel</a></li>\n<li><a href=\"https://www.ecommercefuel.com/ecommerce-report-2018/#info-anchor\">State of the merchant</a></li>\n</ul>\n<h3>Sponsor: SiteGround</h3>\n<p>Engineered for speed, built for security, crafted for WordPress. <a href=\"https://www.siteground.com/poststatus\">SiteGround</a> offers feature-rich managed WordPress hosting with premium support, and is officially recommended by WordPress.org. Thanks to <a href=\"https://www.siteground.com/poststatus\">SiteGround</a> for being a Post Status partner.</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 Aug 2018 21:17: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:15:\"Brian Krogsgard\";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:34:\"WPTavern: WordPress 4.9.8 Released\";s:7:\"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=82870\";s:7:\"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://wptavern.com/wordpress-4-9-8-released\";s: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:1203:\"<p>WordPress 4.9.8 is <a href=\"https://wordpress.org/news/2018/08/wordpress-4-9-8-maintenance-release/\">available for download</a> and is a maintenance release. Headlining this version is the &#8220;Try Gutenberg&#8221; callout. Note that not everyone will see the callout. Its visibility is determined <a href=\"https://wptavern.com/wordpress-4-9-8-rc-3-released-limits-try-gutenberg-callout-visibility\">based on certain criteria.</a></p>\n\n<img />Gutenberg Callout in WordPress 4.9.8\n\n<p>WordPress 4.9.8 continues to improve the foundation set forth by the privacy improvements that went into core earlier this year. For example, the type of request that is being confirmed is now included in the subject line for privacy confirmation emails. </p>\n\n<p>In total, this release has 46 bug fixes from more than 50 contributors. It was lead by <a href=\"https://profiles.wordpress.org/pbiron\">Paul Biron</a> and <a href=\"https://profiles.wordpress.org/joshuawold\">Joshua Wold</a>. Since 4.9.8 is a maintenance release, sites that are able will update automatically. To see a full list of changes, check out the <a href=\"https://make.wordpress.org/core/2018/08/02/wordpress-4-9-8/\">detailed changelog</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Aug 2018 00:12:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:87:\"WPTavern: WordPress.com Partners with Pexels to Offer Diverse, Free Stock Photo Library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=82856\";s:7:\"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/wordpress-com-partners-with-pexels-to-offer-diverse-free-stock-photo-library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2952:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/pexels-photo-1181618.jpeg?ssl=1\"><img /></a>image credit: <a href=\"https://www.pexels.com/photo/three-women-in-front-of-desk-1181618/\">Christina Morillo from Pexels</a>\n<p>WordPress.com has partnered with <a href=\"https://www.pexels.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Pexels</a>, a popular stock photo library, to offer convenient access to stock photos inside the post editor. Hundreds of high quality free stock photo sites have cropped up on the web over the past few years, but Pexels is differentiating itself with a commitment to hosting diversity-focused images and videos that represent a wide range of experiences. WordPress.com is working with them and other partners to <a href=\"https://wordpress.com/read/feeds/25823/posts/1945569908\" rel=\"noopener noreferrer\" target=\"_blank\">make more diverse images available to users</a>:</p>\n<blockquote><p>Stock-image libraries have historically struggled to represent all experiences, and often excluded photos of people of color, people with disabilities, or non-binary individuals. Pexels is working to change that, and since partnering with them we’ve helped incorporate diversity-focused libraries to their collection. Ultimately, we believe it’s on us to help find a solution to this problem, and avoid generic stock images that often perpetuate stereotypes.</p></blockquote>\n<p>WordPress.com users can access the images via the Add Media button. Self-hosted site owners with Jetpack-enabled sites can also access the library when composing new posts on WordPress.com. Automattic happiness engineer Anne McCarthy posted a demo of where to find the new images:</p>\n<p><a href=\"https://cloudup.com/c-ZzCzFS1Rn\"><img src=\"https://i2.wp.com/cldup.com/mJOr5iicyD.gif?resize=627%2C348&ssl=1\" alt=\"Media\" width=\"627\" height=\"348\" /></a></p>\n<p>More than 1,000 developers and companies are using the <a href=\"https://www.pexels.com/api/\" rel=\"noopener noreferrer\" target=\"_blank\">Pexels API</a>. The site regularly hosts diversity-focused photo <a href=\"https://www.pexels.com/challenges/\" rel=\"noopener noreferrer\" target=\"_blank\">challenges</a> with prizes for the best submissions. Photographers who are inspired to contribute can submit their work to the library but should be aware of its <a href=\"https://www.pexels.com/photo-license\" rel=\"noopener noreferrer\" target=\"_blank\">open license</a>.</p>\n<p>&#8220;I like the idea, and, as a photoblogger, I’m open to sharing my images,&#8221; one reader commented on the announcement. &#8220;But I [think] the license rules are too open (for me). I’m happy to share, attribution would be nice (not necessary), but editing of my photos seems a step too far.&#8221;</p>\n<p>Feedback on the library has been overwhelmingly positive so far and WordPress.com users have already downloaded more than 1 million images since the free stock image library was introduced.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2018 23:45: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: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:45:\"Dev Blog: WordPress 4.9.8 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=6165\";s:7:\"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/news/2018/08/wordpress-4-9-8-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:9492:\"<p>We are pleased to announce the immediate availability of WordPress 4.9.8.  This maintenance release fixes 46 bugs, enhancements and blessed tasks, including updating the Twenty Seventeen bundled theme.</p>\n<p><span>Following are the highlights of what is now available.</span></p>\n<h2>“Try Gutenberg” callout</h2>\n<p><span>Most users will now be presented with a notice in their WordPress dashboard. This </span>“Try Gutenberg” is an opportunity for users to use the Gutenberg block editor before it is released in WordPress 5.0.</p>\n<p><img class=\"alignnone wp-image-6168 size-full\" src=\"https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?resize=632%2C392&ssl=1\" alt=\"\" width=\"632\" height=\"392\" /></p>\n<p>In WordPress 4.9.8, the callout will be shown to the following users:</p>\n<ul>\n<li>If Gutenberg <em>is not</em> installed or activated, the callout will be shown to Admin users on single sites, and Super Admin users on multisites.</li>\n<li>If Gutenberg <em>is</em> installed and activated, the callout will be shown to Contributor users and above.</li>\n<li>If the Classic Editor plugin is installed and activated, the callout will be hidden for all users.</li>\n</ul>\n<p class=\"entry-title\"><span>You can learn more by reading  </span><a href=\"https://make.wordpress.org/core/2018/08/02/try-gutenberg-callout-in-wordpress-4-9-8/\">“Try Gutenberg” Callout in WordPress 4.9.8</a>.</p>\n<h2>Privacy fixes/enhancements</h2>\n<p>This release includes 18 Privacy fixes focused on ensuring consistency and flexibility in the new personal data tools <span>that were </span>added in 4.9.6, including:</p>\n<ul>\n<li>The type of request being confirmed is now included in the subject line for all privacy confirmation emails.</li>\n<li>Improved consistency with site name being used for privacy emails in multisite.</li>\n<li>Pagination for Privacy request admin screens can now be adjusted.</li>\n<li>Increased the test coverage for several core privacy functions.</li>\n</ul>\n<p><a href=\"https://make.wordpress.org/core/2018/08/02/wordpress-4-9-8/\">This post has more information about all of the issues fixed in 4.9.8 if you&#8217;d like to learn more</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.8</a> or venture over to Dashboard → Updates and click &#8220;Update Now.&#8221; Sites that support automatic background updates are already beginning to update automatically.</p>\n<p>Thank you to everyone who contributed to WordPress 4.9.8:</p>\n<p><a href=\"https://profiles.wordpress.org/1naveengiri/\">1naveengiri</a>, <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/abdullahramzan/\">Abdullah Ramzan</a>, <a href=\"https://profiles.wordpress.org/alejandroxlopez/\">alejandroxlopez</a>, <a href=\"https://profiles.wordpress.org/allendav/\">Allen Snook</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/andrewtaylor-1/\">Andrew Taylor</a>, <a href=\"https://profiles.wordpress.org/aryamaaru/\">Arun</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bjornw/\">BjornW</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chrislema/\">Chris Lema</a>, <a href=\"https://profiles.wordpress.org/coreymckrill/\">Corey McKrill</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danieltj/\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</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/dontstealmyfish/\">dontstealmyfish</a>, <a href=\"https://profiles.wordpress.org/dyrer/\">dyrer</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fclaussen/\">Fernando Claussen</a>, <a href=\"https://profiles.wordpress.org/garetharnold/\">Gareth</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/gm_alex/\">GM_Alex</a>, <a href=\"https://profiles.wordpress.org/idea15/\">Heather Burns</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">ibelanger</a>, <a href=\"https://profiles.wordpress.org/imath/\">imath</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jpry/\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">JJJ</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</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/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/joshuawold/\">JoshuaWold</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/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/khaihong/\">khaihong</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">kjellr</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/lbenicio/\">lbenicio</a>, <a href=\"https://profiles.wordpress.org/leanderiversen/\">Leander Iversen</a>, <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a>, <a href=\"https://profiles.wordpress.org/macbookandrew/\">macbookandrew</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a>, <a href=\"https://profiles.wordpress.org/mermel/\">mermel</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">metalandcoffee</a>, <a href=\"https://profiles.wordpress.org/michelleweber/\">michelleweber</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/xpertone/\">Muhammad Kashif</a>, <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nathanatmoz/\">Nathan Johnson</a>, <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pmbaldha/\">Prashant Baldha</a>, <a href=\"https://profiles.wordpress.org/presstigers/\">PressTigers</a>, <a href=\"https://profiles.wordpress.org/programmin/\">programmin</a>, <a href=\"https://profiles.wordpress.org/rafsuntaskin/\">Rafsun Chowdhury</a>, <a href=\"https://profiles.wordpress.org/redcastor/\">redcastor</a>, <a href=\"https://profiles.wordpress.org/littlerchicken/\">Robin Cornett</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/pross/\">Simon Prosser</a>, <a href=\"https://profiles.wordpress.org/skoldin/\">skoldin</a>, <a href=\"https://profiles.wordpress.org/spyderbytes/\">spyderbytes</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">Sébastien SERRE</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tharsheblows/\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a>, <a href=\"https://profiles.wordpress.org/timbowesohft/\">timbowesohft</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/usmankhalid/\">Usman Khalid</a>, <a href=\"https://profiles.wordpress.org/warmlaundry/\">warmlaundry</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, and <a href=\"https://profiles.wordpress.org/yuriv/\">YuriV</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:\"Thu, 02 Aug 2018 21:25:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Paul Biron\";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:84:\"WPTavern: Official Gutenberg Information Site Updated with Interactive Frontend Demo\";s:7:\"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=82821\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wptavern.com/official-gutenberg-information-site-updated-with-interactive-frontend-demo\";s: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:2132:\"<p>The official <a href=\"https://wordpress.org/gutenberg/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg information site</a> has been updated to feature an interactive demo that can be manipulated on the frontend. It is based on <a href=\"https://wptavern.com/frontenberg-lets-users-test-gutenberg-on-the-frontend\" rel=\"noopener noreferrer\" target=\"_blank\">Frontenberg</a>, a <a href=\"https://testgutenberg.com/\" rel=\"noopener noreferrer\" target=\"_blank\">site</a> created by Tom Nowell, VIP Wrangler at Automattic. It loads an instance of WordPress with Gutenberg on the frontend so visitors don&#8217;t have to login or create a test site to try it.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/gutenberg-demo.png?ssl=1\"><img /></a></p>\n<p>Gutenberg&#8217;s new demo <a href=\"https://web.archive.org/web/20180730083424/https://wordpress.org/gutenberg/\" rel=\"noopener noreferrer\" target=\"_blank\">replaces the walls of text that were there previously</a>, which described the vision and approach for the new editor and explained blocks in depth with screenshots. Instead, the updated page features shorter, more succinct explanations of the new editor as an interactive part of demo.</p>\n<p>The demo is also live on all Rosetta sites, like <a href=\"http://fr.wordpress.org/gutenberg\" rel=\"noopener noreferrer\" target=\"_blank\">fr.wordpress.org/gutenberg</a>, so WordPress users from around the world can view it in their own languages.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/gutenberg-demo-rosetta-sites.png?ssl=1\"><img /></a></p>\n<p>WordPress contributors are feverishly working to prepare for the &#8220;Try Gutenberg&#8221; callout that will ship with WordPress 4.9.8, which is scheduled for Thursday, August 2nd. It will be many users&#8217; first exposure to the new editor and the demo gives them a chance to experience it in a hands-on way before making a decision about installing it. Instead of dismissing Gutenberg out of hand based on a quick glance at the screenshots and text, users have the opportunity to test drive it without breaking anything.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2018 05:01: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:\"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:68:\"WPTavern: WPWeekly Episode 325 – A Different Facebook for Everyone\";s:7:\"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=82830&preview=true&preview_id=82830\";s:7:\"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/wpweekly-episode-325-a-different-facebook-for-everyone\";s: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:2387:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I discuss what&#8217;s new in Gutenberg 3.4 and share our recent experiences with the editor. We talk about Facebook&#8217;s decision to shut down its API for apps to publish to user&#8217;s profiles on their behalf. This leads to a side rant of our user experience with Facebook and the history between it and Twitter.</p>\n<p>We talk about what&#8217;s new in WordPress 4.9.8 RC 3 and when you can expect a final release. Last but not least, we discuss Slack&#8217;s acquisition of HipChat and share our reasons for joining Twitter.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/gutenberg-3-4-adds-new-warning-to-classic-editor-when-editing-posts-containing-blocks\">Gutenberg 3.4 Adds New Warning to Classic Editor When Editing Posts Containing Blocks</a></p>\n<p><a href=\"https://wptavern.com/wordpress-4-9-8-rc-3-released-limits-try-gutenberg-callout-visibility\">WordPress 4.9.8 RC 3 Released, Limits ‘Try Gutenberg’ Callout Visibility</a></p>\n<p><a href=\"https://wptavern.com/facebook-shuts-down-api-for-publishing-to-user-timelines-impacts-jetpacks-publicize-feature\">Facebook Shuts Down API for Publishing to User Timelines, Impacts Jetpack’s Publicize Feature</a></p>\n<p><a href=\"https://wptavern.com/wordpress-coding-standards-1-0-0-released\">WordPress Coding Standards 1.0.0 Released</a></p>\n<p><a href=\"https://wptavern.com/woosesh-virtual-woocommerce-conference-to-be-held-october-18-19\">WooSesh Virtual WooCommerce Conference to be Held October 18-19</a></p>\n<p><a href=\"https://wptavern.com/slack-acquires-hipchat-moves-blog-from-medium-to-wordpress\">Slack Acquires HipChat, Moves Blog from Medium to WordPress</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 8th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #325:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2018 02:02: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: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:82:\"WPTavern: Easy Digital Downloads Substantially Reduces Prices for Extension Passes\";s:7:\"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=82825\";s:7:\"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/easy-digital-downloads-substantially-reduces-prices-for-extension-passes\";s: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:3693:\"<p>Pippin Williamson, founder of <a href=\"https://wordpress.org/plugins/easy-digital-downloads/\">Easy Digital Downloads</a>, published <a href=\"https://easydigitaldownloads.com/blog/we-have-lowered-prices-for-extension-access-passes/?utm_source=Twitter&utm_medium=social&utm_term=we-have-lowered-prices-for-extension-access-passes&utm_content=0&utm_campaign=PostPromoterPro\">an apology</a> on the company&#8217;s blog today admitting that it made a mistake in its pricing model for extension passes. </p>\n\n<p>In mid-June, the <a href=\"https://easydigitaldownloads.com/blog/easy-digital-downloads-pricing-options/\">company introduced</a> a new set of pricing options or passes. The passes come with a single license that provide access to a group of extensions. The prices for each pass were as follows:</p>\n\n<ul><li>Personal Pass: $199</li><li>Extended Pass: $399</li><li>Professional Pass: $699</li><li>All Access Pass: $899</li></ul>\n\n<p>After six weeks, Williamson noticed that customers were continuing to purchase individual extensions instead of the passes. </p>\n\n<p>&#8220;Our expectation and intent in creating the passes was for store owners to be able to purchase access to multiple individual extensions in a more economical way, but that’s not what happened,&#8221; he said. </p>\n\n<p>&#8220;Instead, store owners continued to purchase only the individual extensions they needed because the price tags of the passes were still too high. It is clear that we made a mistake in our pass pricing, and so today we’d like to apologize for that and announce new, lower prices.&#8221;</p>\n\n<p>After two weeks of testing, the prices of each pass have been significantly reduced to the following amounts:</p>\n\n<ul><li>Personal Pass: <strong>$99</strong></li><li>Extended Pass: <strong>$199</strong></li><li>Professional Pass: <strong>$299</strong></li><li>All Access Pass: <strong>$499</strong><strong></strong><strong></strong></li></ul>\n\n<p>In addition to the pricing changes, customers who purchased a pass between June 1st and August 1st are eligible for a refund. The refund is equal to the difference of the purchased price and the new price. Customers have until August 15th, to <a href=\"https://easydigitaldownloads.com/support\">request a refund</a>. <br /></p>\n\n<p>Customers who purchased passes before the reduction will have their renewal amounts automatically changed to the lower price. </p>\n\n<p>Pricing WordPress products and services is tough and requires experimentation. There are numerous <a href=\"https://wordpress.tv/?s=pricing\">WordCamp sessions</a>, <a href=\"https://kinsta.com/blog/how-to-price-a-product-wordpress/\">articles</a>, and <a href=\"https://premium.wpmudev.org/blog/pricing-your-wordpress-services/\">in-depth guides</a> on the subject but there&#8217;s not one answer that&#8217;s best for every business. </p>\n\n<p>Publicly admitting to a pricing mistake is one thing, but offering refunds to try to get customers on equal footing is going the extra mile.</p>\n\n<p>The company could have handled things in a way that&#8217;s not as beneficial to customers, but they chose what I think is a commendable way. Williamson&#8217;s closing statement speaks about the way he leads his company and how he makes these types of decisions.</p>\n\n<blockquote class=\"wp-block-quote\"><p>While we are far from perfect, as this pricing mistake clearly indicates, we are dedicated to doing right by our customers. To each of you, we would like to extend our most sincere thanks for sticking with us as we work through these changes</p><cite>Pippin Williamson</cite></blockquote>\n\n<p>It&#8217;s a luxury to have business owners like Williamson in the WordPress economy. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2018 01:00:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:95:\"WPTavern: Gutenberg 3.4 Adds New Warning to Classic Editor When Editing Posts Containing Blocks\";s:7:\"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=82772\";s:7:\"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/gutenberg-3-4-adds-new-warning-to-classic-editor-when-editing-posts-containing-blocks\";s: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:2614:\"<p><a href=\"https://make.wordpress.org/core/2018/07/31/whats-new-in-gutenberg-30th-july/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg 3.4</a> was released yesterday with fixes intended to prepare the plugin for converting existing content to blocks. A wave of new users will soon be testing the new plugin as the result of the &#8220;Try Gutenberg&#8221; prompt in WordPress 4.9.8. The release date has been <a href=\"https://wptavern.com/wordpress-4-9-8-rc-3-released-limits-try-gutenberg-callout-visibility\" rel=\"noopener noreferrer\" target=\"_blank\">pushed back to Thursday, August 2nd</a>.</p>\n<p>In early July, the Gutenberg team froze new features on the plugin and shifted to focus on bugs, enhancements, compatibility, and API stability. An overview of the <a href=\"https://github.com/WordPress/gutenberg/issues/4894\" rel=\"noopener noreferrer\" target=\"_blank\">major functionality shipping in Gutenberg</a> is available as a list on GitHub. Gutenberg 3.4 continues refinements on these features.</p>\n<p>In preparation for users switching back and forth between the new and old editors, this release <a href=\"https://github.com/WordPress/gutenberg/pull/8247\" rel=\"noopener noreferrer\" target=\"_blank\">adds a warning in the classic editor</a> when users attempt to edit posts that contain blocks.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/07/Screen-Shot-2018-08-01-at-11.16.41-AM.png?ssl=1\"><img /></a></p>\n<p>Shared blocks have been renamed to &#8220;<a href=\"https://github.com/WordPress/gutenberg/pull/8123\" rel=\"noopener noreferrer\" target=\"_blank\">Reusable blocks</a>&#8221; to better convey their function.</p>\n<p>Theme developers can now <a href=\"https://github.com/WordPress/gutenberg/pull/6628\" rel=\"noopener noreferrer\" target=\"_blank\">configure font sizes</a> that show in the editor.</p>\n<p>This release also adds other little enhancements, including an <a href=\"https://github.com/WordPress/gutenberg/pull/8084\" rel=\"noopener noreferrer\" target=\"_blank\">edit button</a> for embed blocks, the ability to create a video block by <a href=\"https://github.com/WordPress/gutenberg/pull/8122\" rel=\"noopener noreferrer\" target=\"_blank\">dropping a video on an insertion point</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/8187\" rel=\"noopener noreferrer\" target=\"_blank\">RTL CSS</a>, and accessibility improvements.</p>\n<p>Check out the release post for a full list of all the enhancements and bugs fixes in <a href=\"https://make.wordpress.org/core/2018/07/31/whats-new-in-gutenberg-30th-july/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg 3.4</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 Aug 2018 16:46: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:\"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: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:43:\"Dev Blog: The Month in WordPress: July 2018\";s:7:\"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=6158\";s:7:\"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/2018/08/the-month-in-wordpress-july-2018/\";s: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:6410:\"<p>With WordPress 5.0 coming closer, there’s lots of work going on all across the project. Read on to learn about how we progressed in July.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Release of WordPress 4.9.7</h2>\n\n<p>On July 5, <a href=\"https://wordpress.org/news/2018/07/wordpress-4-9-7-security-and-maintenance-release/\">WordPress 4.9.7 was released</a>,  fixing one security issue and 17 other bugs across the platform.<br /></p>\n\n<p>While this is a minor release, incremental fixes are essential to keep WordPress running smoothly. Everyone is encouraged to update as soon as possible and to make sure that automatic updates are switched on.<br /></p>\n\n<p>Would you like to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a> and join the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>The New WordPress Editor</h2>\n\n<p>In the upcoming minor release of WordPress, 4.9.8, a new section in the dashboard will feature Gutenberg, the upcoming content editor for WordPress.<br /></p>\n\n<p>While the official release of Gutenberg <a href=\"https://wordpress.org/news/2018/07/update-on-gutenberg/\">is scheduled</a> for the coming months, you can already install it as <a href=\"https://wordpress.org/plugins/gutenberg/\">a plugin</a> to test it out right now. Additionally, <a href=\"https://wordpress.org/gutenberg/\">a brand new demo page</a> is now available — play around with the many features the editor has to offer, without installing it on your own site.<br /></p>\n\n<p>Would you like to help build or test Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a> and join the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>Page Design Updates on WordPress.org</h2>\n\n<p>Bit by bit we’re refreshing the design of WordPress.org. The latest pages to get a new treatment have been <a href=\"https://wordpress.org/download/\">the Download page</a> and <a href=\"https://profiles.wordpress.org/matt/\">user profiles</a>.<br /></p>\n\n<p>The Meta and Design teams worked hard to make these new designs a reality, with notable contributions from <a href=\"https://profiles.wordpress.org/melchoyce/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>melchoyce</a>, <a href=\"https://profiles.wordpress.org/obenland/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>obenland</a>, <a href=\"https://profiles.wordpress.org/mapk/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>mapk</a>, and <a href=\"https://profiles.wordpress.org/kjellr/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>kjellr</a>. The new designs enhance the overall look of the site and provide more relevant information to those searching.<br /></p>\n\n<p>Would you like to get involved in the design refresh? Follow the <a href=\"https://make.wordpress.org/meta/\">Meta</a> and <a href=\"https://make.wordpress.org/design/\">Design</a> team blogs and join the #meta and #design channels in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>The First WP-CLI Hack Day</h2>\n\n<p>On Friday July 20, the WP-CLI team <a href=\"https://make.wordpress.org/cli/2018/07/04/wp-cli-hack-day/\">held their first hack day</a> — a global event encouraging people to contribute to the official command line tool for WordPress.<br /></p>\n\n<p>Run by <a href=\"https://profiles.wordpress.org/schlessera/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>schlessera</a>, the event <a href=\"https://make.wordpress.org/cli/2018/07/21/wp-cli-hack-day-results/\"> was a great success</a>. Twelve pull requests were  merged and another 13 submitted. It also included a video chat to give all contributors a space to meet each other and connect directly.<br /></p>\n\n<p>Would  you like to get involved in contributing to WP-CLI? Follow <a href=\"https://make.wordpress.org/cli/\">the team blog</a> and join the #cli channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul><li>The WordPress Foundation is <a href=\"https://wordpressfoundation.org/2018/call-for-organizers-introduction-to-open-source-workshops-for-2018/\">looking for local community organizers to run introductory open-source workshops</a> in 2018.</li><li><a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a> compiled <a href=\"https://wordpress.org/news/2018/07/quarterly-updates-q2-2018/\">updates for the last quarter</a> from the contribution teams all across the WordPress project.</li><li>In a great move for internationalization, <a href=\"https://en.blog.wordpress.com/2018/03/29/the-wordpress-mobile-apps-now-support-right-to-left-languages/\">the WordPress Mobile Apps now support right-to-left languages</a>.</li><li><a href=\"https://make.wordpress.org/community/2018/07/10/stripe-is-now-available-to-all-wordcamps/\">WordCamp events can now accept payment via Stripe</a> — PayPal remains an alternative option.</li><li>The WP-CLI team will soon <a href=\"https://make.wordpress.org/cli/2018/07/19/details-on-the-upcoming-major-release/\">release v2.0</a> of the official WordPress command line tool.</li><li>The Fields API project in WordPress Core <a href=\"https://wptavern.com/wordpress-core-fields-api-project-is-seeking-new-leadership\">is looking for a new lead</a> to drive it forward.</li><li>In WordPress 4.9.8, <a href=\"https://make.wordpress.org/core/2018/07/27/registering-metadata-in-4-9-8/\">it will  be possible</a> for developers to fully register the meta fields used by their plugins and themes.</li><li>After many years of hard work, <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards\">v1.0.0 of the WordPress Coding Standards for PHP_CodeSniffer</a> has been released.</li><li>The Mobile team <a href=\"https://make.wordpress.org/mobile/2018/07/31/call-for-testing-wordpress-for-ios-10-6/\">is looking for people to help test</a> v10.6 of WordPress for iOS.</li></ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</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:\"Wed, 01 Aug 2018 09:11: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:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:33:\"HeroPress: Begin at the Beginning\";s:7:\"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=2601\";s:7:\"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://heropress.com/essays/begin-at-the-beginning/#utm_source=rss&utm_medium=rss&utm_campaign=begin-at-the-beginning\";s: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:10624:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2018/08/080118-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I owe it all to a little bit of gumption and to the amazing community of WordPressers who opened their world to me.\" /><p>With this story, as with most things in my life, I never really know where to start. Because of that strange sense of time and action I’ve always been quite fond of the quote from Lewis Carroll’s Alice in Wonderland</p>\n<p>“Begin at the beginning and go on till you come to the end: then stop.”<br />\nBut where, for this story, is the beginning?</p>\n<p>It was a lifetime of choices and serendipitous encounters that led me down the path to WordPress and eventually Automattic. And those same types of choices and encounters that keep me here.</p>\n<h2>Begin at the Beginning&#8230;</h2>\n<p>I was a youngish mother of a youngish child and a full time stay at home parent. I didn’t work outside the home; I was raising my kid. That was both a privilege and a problem. I realized that, as a mother consumed with caring for this new human, I was beginning to lose the very strong sense of identity that I’d always had.</p>\n<p>This was my first experience with not knowing who I was. I always knew who I was, even if I didn’t know who I wanted to be. As a mother though, most of who I am was sucked into caring for my family. Not sleeping. Not taking proper care of myself. Not taking time for my interests. Putting the others in my house before me and saying that it was what I wanted.</p>\n<p><em>Narrator: It wasn’t.</em></p>\n<p>There was a pivot point. A moment before my daughter turned three. When I realized that if she were to choose to become a mother I would not want her to go down the same path of self denial that I had. I would want her to be who she is first and a mother second so that she could be the best self and mother she could be.</p>\n<p>And I realized that was something I could only show by example. But how to start? I’d always been a writer. I often say that I only learned to read so that I could write. Journaling, short stories, poetry. Sometimes just long strings of thoughts and observations that wouldn’t leave my head until I wrote them down. I would write out long “stories” on MySpace about my experiences and realizations. I would scrawl poetry on scrap paper laying around the house. None of it was enough.</p>\n<p>Also, as I understand is fairly typical for a stay at home parent, I had no one to talk to most of the time except for my small child. And while she was super awesome and receptive to any conversation I may want to start, they all tended to transition to discussion of My Little Ponies or a request for ice cream or screen time. So I looked for something more. For a place to discuss the mommified version of myself with no one and everyone. I started a blog.</p>\n<p>But it wasn’t on WordPress.</p>\n<h2>Go On…</h2>\n<p>I wrote and I wrote and I wrote. My experiences, my kid’s experiences. Dreams and hopes and bad poetry. And I found a group of people who shared with me their struggles and dreams as they dove into mine. A web of women and men who got me. Who got what I was going through. Who got what I was doing. A community of individuals, not all like minded, but all understanding.</p>\n<p>And then one day I was asked to write for a city blog, and then another. And as my writing began to expand I found other communities. My sense of self was first preserved but then invigorated and it grew and I stretched my arms and I stretched my wings and I realized I was beginning to feel whole for the first time in a long while.</p>\n<p>But using multiple platforms for my blogging gave me the understanding that the platform I was using was restrictive and unsatisfying. Clunky.</p>\n<p>And that’s when a friend mentioned WordCamp Portland. It was this new thing. We were doing it for the first time. A bunch of bloggers getting together to talk about WordPress and blogging and stuff.</p>\n<p>I had no idea what WordPress was. But my friend said they needed some volunteers to help out, and I’m always one to support my friends, my community. So I asked what I needed to do to help.</p>\n<p>“Move your blog to WordPress”</p>\n<p>And so I did. And something clicked. Once I had moved to a WordPress site I found my passion for blogging was something more. I played with themes, I made headers that felt like art pieces, I helped others transfer their content, set up their sites. I introduced them to a community that I was just beginning to get to know.</p>\n<p>And then there was a cascade of activity. More blogs, podcasting, events, community, and every year there was WordCamp Portland. And I continued to learn and grow my skills as a writer, as a blogger, as a podcaster, and as a WordPresser. I continued to volunteer, and then to speak, and to help organize.</p>\n<h2>And on…</h2>\n<p>But life changes. Sometimes for the better sometimes for the worse. But change is hard. People change or stay the same. Relationships change. Life changes. Sometimes all of the above. So I ended a marriage and found myself stumped. I knew who I was, but who I happened to be was a stay at home mom who hadn’t worked outside the home in eight years and had no marketable skills that I could find that would also allow me to continue to be home for my kid.</p>\n<p>And I panicked and I procrastinated and then I found an opening. A small startup I knew through my interactions with the community needed a customer support person who also knew WordPress.</p>\n<p>A light went on. And I had a job for the first time in eight years. And I knew what I was doing. And I was good at it. And I continued to blog. A little. And I stuck to the little tiny fringes of the WordPress community I knew. Still not realizing how big the rest of it was.</p>\n<p>The Portland WordPress folks were like a river feeding into the ocean of the worldwide community. But I’d only ever stood on the shores of the river and dipped my toes in. All that was about to change.</p>\n<h2>Till You Come to the End…</h2>\n<p>But as I said at the beginning, it’s not that simple. There is no end. There is just more. More stories, more people, more learning, more community. And that’s where we begin the part of the story that tells us where I am today.</p>\n<p>This part begins with an email from a community friend with a link to a job posting. And a new beginning.</p>\n<p>I was working happily at that small startup, spreading my wings. But starting to feel a little bit like my passion wasn’t being put to use when that email arrived. A link to a job posting working as a sponsored volunteer within the WordPress community and question. It was a simple question. “Do you know anyone who would kick ass at this job?”</p>\n<p>DID I? I was reeling from the possibility and doubled over with imposter syndrome and fear. Fear that I wasn’t good enough. Fear that they wouldn’t like me. Fear that I’d be leaving my boss in the lurch.</p>\n<p>So I did what I always did at that time. And what I still do to this day. I procrastinated. I talked. I thought. I woke up in the middle of the night in a panic thinking I had forgotten something. Thinking I had done something wrong.</p>\n<p>But as I sat there one day tinkering on the startup’s site, scheduling posts, checking in on our customers all while getting my daughter ready for school that morning I realized that it was time to set aside those fears. To look that imposter syndrome right in the eye and say “not today” and I started putting together my resume and working on the cover email.</p>\n<p>No one was more surprised than I when I found myself two months later starting my first day at Automattic.</p>\n<p>It’s been about 5 and a half years since that email landed in my inbox. It’s been more than a decade since WordPress landed in my heart and I’m proud to make my living in the wide wonderful world of WordPress. As I write this story for all of you to read—not a cautionary tale I hope, but an inspirational one—I’m just a few days away from the end of my three-month sabbatical (a benefit that all Automatticians are eligible for after 5 years.)</p>\n<p>It’s been a time of rest, readjustment, relaxation. Of edification. But it’s also been a renewal. A time to look back at how I got where I am and remember how lucky I am to be here today. And I owe it all to a little bit of gumption and to the amazing community of WordPressers who opened their world to me. And also to everyone else who is willing to be a part of this great big community founded on open source. On WordPress.</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: Begin at the Beginning\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Begin%20at%20the%20Beginning&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbegin-at-the-beginning%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Begin at the Beginning\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbegin-at-the-beginning%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%2Fbegin-at-the-beginning%2F&title=Begin+at+the+Beginning\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Begin at the Beginning\"></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/begin-at-the-beginning/&media=https://heropress.com/wp-content/uploads/2018/08/080118-150x150.jpg&description=Begin at the Beginning\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Begin at the Beginning\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/begin-at-the-beginning/\" title=\"Begin at the Beginning\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/begin-at-the-beginning/\">Begin at the Beginning</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 Aug 2018 08:00:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Cami Kaos\";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:86:\"WPTavern: WordPress 4.9.8 RC 3 Released, Limits ‘Try Gutenberg’ Callout Visibility\";s:7:\"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=82803\";s:7:\"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/wordpress-4-9-8-rc-3-released-limits-try-gutenberg-callout-visibility\";s: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:1701:\"<p>WordPress 4.9.8 Release Candidate 3 <a href=\"https://make.wordpress.org/core/2018/07/31/wordpress-4-9-8-release-candidate-3/\">is available</a> for testing. This version includes one important enhancement that limits the visibility of the <a href=\"https://wptavern.com/first-look-at-try-gutenberg-prompt-in-wordpress-4-9-8-beta-2\">&#8216;Try Gutenberg&#8217; callout</a>. </p>\n\n<p>If Gutenberg is not installed or activated on a site, the callout will be displayed to users with the <a href=\"https://codex.wordpress.org/Roles_and_Capabilities#install_plugins\">install_plugins</a> capability. If Gutenberg is activated, the callout will be shown to users with the <a href=\"https://codex.wordpress.org/Roles_and_Capabilities#edit_posts\">edit_posts</a> capability. </p>\n\n<p>Limiting the visibility of the callout to a specific subset of users will avoid inundating the WordPress.org support forums with Gutenberg support requests. A concern that was <a href=\"https://core.trac.wordpress.org/ticket/41316#comment:98\">expressed by</a> Daniel Bachhuber four months ago. </p>\n\n<p>&#8220;There&#8217;s a good amount of fit and finish to be desired before rolling out to a large number of unacquainted users,&#8221; Bachhuber said. &#8220;We&#8217;re not quite over the hump on the issues we do already know about. There&#8217;s not a ton of sense in having 10,000 users re-report them.&#8221;</p>\n\n<p>Other than this change, the <a href=\"https://make.wordpress.org/core/2018/07/24/wordpress-4-9-8-release-candidate-1/#change-log\">change log</a> from WordPress 4.9.8 RC 1 remains the same. WordPress 4.9.8 was originally scheduled to be released today, but has been rescheduled for Thursday, August 2nd. </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 Aug 2018 00:14:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:105:\"WPTavern: Facebook Shuts Down API for Publishing to User Timelines, Impacts Jetpack’s Publicize Feature\";s:7:\"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=82768\";s:7:\"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:112:\"https://wptavern.com/facebook-shuts-down-api-for-publishing-to-user-timelines-impacts-jetpacks-publicize-feature\";s: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:4690:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/07/logo-facebook-1600.png?ssl=1\"><img /></a></p>\n<p>In the aftermath of the <a href=\"https://en.wikipedia.org/wiki/Facebook%E2%80%93Cambridge_Analytica_data_scandal\" rel=\"noopener noreferrer\" target=\"_blank\">Cambridge Analytica data scandal</a>, Facebook is tightening its control on third-party applications and will no longer allow apps to post to user profiles. In April, the platform <a href=\"https://developers.facebook.com/blog/post/2018/04/24/new-facebook-platform-product-changes-policy-updates/\" rel=\"noopener noreferrer\" target=\"_blank\">announced</a> sweeping changes to the publish_actions permission, which allowed apps to publish to users&#8217; timeline on their behalf.</p>\n<blockquote><p>On August 1st, 2018, the Live API publish_actions permission, which allows an app to publish on behalf of its Users, will be reserved for approved partners. A new permission model that allows apps to publish Videos to their User&#8217;s Groups and Timeline will be created instead.</p>\n<p>Access to the Pages APIs requires re-submission of the application for review before August 1, 2018. This will be required to continue publishing live and VOD video to Pages, as well as reading insights.</p></blockquote>\n<p>Facebook is notorious for swiftly changing its APIs in ways that break apps (sometimes without warning), often sending developers scrambling. For a long time, apps auto-posting to user timelines was part of the wild west of app permissions granted without much oversight from Facebook. Users often unknowingly gave permission to apps that would collect data and spam their Facebook connections with posts made on their behalf.</p>\n<p>Those days are over, but an unfortunate byproduct of this restriction is that apps like WordPress.com and Jetpack&#8217;s Publicize feature can no longer automatically publish posts to user timelines. This change also adversely affects apps like Buffer and Hootsuite that allow users to schedule and publish posts to their social accounts.</p>\n<p><a href=\"https://jetpack.com/2018/07/30/jetpack-6-3-3-facebook-publicize/\" rel=\"noopener noreferrer\" target=\"_blank\">Jetpack 6.3.3</a> removes the ability for users to select Facebook Profile connections and displays a notice regarding existing connections, so users will be aware of which auto-posting connections they are losing. Besides Jetpack, this Facebook API change affects tens of thousands of users who have this functionality implemented through one of many other plugins on WordPress.org.</p>\n<p>Users are now required to manually share their posts to their timelines. They can no longer schedule content to be shared to Facebook at specific times for different audiences.</p>\n<p>Auto-posting to <a href=\"https://www.facebook.com/help/175644189234902/\" target=\"_blank\" rel=\"noopener noreferrer\">Facebook Pages</a> still works, and one option users have is to convert their Profile to a Page or set up a new page. This may not be a suitable alternative for bloggers and those whose writing is not attached to a business or an organization.</p>\n<p>In a recent <a href=\"https://ma.tt/2018/07/my-recode-decode-interview-with-kara-swisher/\" rel=\"noopener noreferrer\" target=\"_blank\">post</a> on his blog, Automattic CEO Matt Mullenweg commented on Facebook&#8217;s decision to turn off auto-posting to profiles.</p>\n<p>&#8220;As it turns out, Facebook also is turning off the ability for WordPress sites — and all websites — to post directly to users’ profile pages,&#8221; Mullenweg said. &#8220;The decision to shut down the API is ostensibly to fight propaganda and misinformation on the platform, but I think it’s a big step back for their embrace of the open web. I hope they change their minds.&#8221;</p>\n<p>If only a select few &#8220;approved partners&#8221; are allowed to automatically broadcast to user timelines, it puts smaller players at a disadvantage, requiring manual sharing each time they publish. Facebook is setting itself up as a gatekeeper that enables news from a small selection of partners to keep pumping through the platform on schedule. Individual voices on smaller websites are no longer able to syndicate to the Facebook platform unless they decide to create a Page.</p>\n<p>Put a different way, the only syndicated content allowed on Facebook will be through channels the company can monetize &#8211; business/organization Pages or partners who are approved to post to user timelines. Users who care about retaining their Facebook audiences will need to remember to manually post their content to the social network after August 1, 2018, when the API changes go into effect.</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, 31 Jul 2018 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: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:50:\"Matt: My Recode Decode Interview with Kara Swisher\";s:7:\"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=48262\";s:7:\"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://ma.tt/2018/07/my-recode-decode-interview-with-kara-swisher/\";s: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:1780:\"<blockquote class=\"wp-block-quote\"><p>&#8220;We want to make the best tools in the world, and we want to do it for decades to come. I&#8217;ve been doing WordPress for 15 years, I want to do it the rest of my life.&#8221; <br /></p></blockquote>\n\n<p>The last time I chatted with <a href=\"https://twitter.com/karaswisher?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor\">Kara</a> was in 2013 <a href=\"https://www.wsj.com/video/wordpress-mullenweg-on-the-future-of-blogging/51B2A49C-EE8D-42EC-911D-370064A4829F.html\">in the back of a pedicab in Austin</a>. This time I got to <a href=\"https://art19.com/shows/recode-decode/episodes/3d56208e-a4b9-4c74-861e-8fec105a4ee8\">sit in the red chair</a> at Vox headquarters in San Francisco, and per usual Kara was thoughtful, thorough and to the point: we talked about WordPress and the future of the open web, the moral imperative of user privacy, and how it all relates to what&#8217;s going on at Facebook. </p>\n\n<p>(As it turns out, Facebook also is <a href=\"https://en.blog.wordpress.com/2018/07/23/sharing-options-from-wordpress-com-to-facebook-are-changing/\">turning off the ability for WordPress sites &#8212; and all websites</a> &#8212; to post directly to users&#8217; profile pages. The decision to shut down the API is ostensibly to fight propaganda and misinformation on the platform, but I think it&#8217;s a big step back for their embrace of the open web. I hope they change their minds.)<br /></p>\n\n<p>Kara and I also talked about distributed work, Automattic&#8217;s <a href=\"https://ma.tt/2018/06/atavist-automattic/\">acquisition of Atavist</a> and <a href=\"https://longreads.com/\">Longreads</a>, and why every tech company should have an editorial team. Thanks again to Kara and the Recode team for having me.</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, 31 Jul 2018 08:31: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: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:51:\"WPTavern: WordPress Coding Standards 1.0.0 Released\";s:7:\"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=82761\";s:7:\"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://wptavern.com/wordpress-coding-standards-1-0-0-released\";s: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:2215:\"<p>After nine years <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards#project-history\">since the project began</a>, version 1.0.0 of the <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards\">WordPress Coding Standards</a> is available for download. The WordPress Coding Standards is a collection of <a href=\"https://github.com/squizlabs/PHP_CodeSniffer\">PHP_CodeSniffer</a> rules or sniffs to validate code developed for WordPress. It ensures code quality and adherence to coding conventions, including the official <a href=\"https://make.wordpress.org/core/handbook/best-practices/coding-standards/\">WordPress Coding Standards</a>.</p>\n\n<p>In addition to being a big milestone, 1.0.0 contains breaking changes. &#8220;A number of sniffs have been moved between categories and the old sniff names have been deprecated,&#8221; <a href=\"https://github.com/jrfnl\">Juliette Reinders Folmer</a>, a significant contributor to the project, said. </p>\n\n<p>&#8220;If you selectively include any of these sniffs in your custom ruleset or set custom property values for these sniffs, your custom ruleset will need to be updated.&#8221;</p>\n\n<p>The WordPress-VIP ruleset has been deprecated as well. &#8220;This ruleset has not been valid for some time, as we have <a href=\"https://github.com/Automattic/VIP-Coding-Standards\">our own VIP coding standards</a>, available for public use,&#8221; David Artiss, a member of the WordPress.com VIP support team, said.</p>\n\n<p>&#8220;If you are a VIP client and you are not using the alternative rulesets, then we would strongly recommend switching to these. If you used the WordPress-VIP ruleset for any other reason, you should use WordPress-Extra or WordPress instead.&#8221;</p>\n\n<p>Those who use the WordPress Coding Standards Sniffs are strongly encouraged to read the <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/1.0.0\">changelog</a> before updating. WordPress Coding Standards is a free, open source project, that&#8217;s <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards\">available on GitHub</a> where contributions are welcomed.</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, 30 Jul 2018 23:43:43 +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:101:\"WPTavern: David Needham Chats about Venturing Outside WordCamp to Visit Other Open Source 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=82750\";s:7:\"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:112:\"https://wptavern.com/david-needham-chats-about-venturing-outside-wordcamp-to-visit-other-open-source-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:1439:\"<p>While at WordCamp Europe I had the chance to chat with <a href=\"http://davidneedham.me\" rel=\"noopener noreferrer\" target=\"_blank\">David Needham</a>, a developer advocate at Pantheon, about his session titled &#8220;<a href=\"https://davidneedham.me/wceu2018/\" rel=\"noopener noreferrer\" target=\"_blank\">Intro to Drupal for WordPress Folks</a>.&#8221; Needham frequently travels between the WordPress and Drupal communities, representing his company as a developer liaison. He has spoken at various Drupal camps and WordCamps and is also one of the organizers for WordCamp US 2018 in Nashville.</p>\n<p>During our chat, Needham discussed some of the more notable differences between the WordPress and Drupal communities and how the two can inspire each other in various ways. He encouraged attendees at his session to venture outside of WordCamps and said he hopes to see more collaboration across the platforms in the future. From his unique vantage point, Needham said he doesn&#8217;t think CMS rivalries are as big of a deal as they used to be.</p>\n<p>&#8220;We&#8217;re realizing that we&#8217;re really not competing,&#8221; Needham said. &#8220;The internet is a big place and there&#8217;s plenty of room for all of our communities to work together &#8211; especially since our values are so closely aligned already. If there is a rivalry, it feels a little bit more like a friendly sibling rivalry than anything.&#8221;</p>\n<p></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, 30 Jul 2018 21:50: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:\"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:83:\"WPTavern: WordPress Developers: Learn How to Convert Shortcodes to Gutenberg Blocks\";s:7:\"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=82737\";s:7:\"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/wordpress-developers-learn-how-to-convert-shortcodes-to-gutenberg-blocks\";s: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:2208:\"<p>Gutenberg contributor <a href=\"http://pento.net\" rel=\"noopener noreferrer\" target=\"_blank\">Gary Pendergast</a> has published a handy <a href=\"https://gist.github.com/pento/cf38fd73ce0f13fcf0f0ae7d6c4b685d\" rel=\"noopener noreferrer\" target=\"_blank\">sample plugin</a> that demonstrates how to convert shortcode functionality to a Gutenberg block.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Do you have a bunch of shortcodes that you’d like to really easily turn into blocks? Here’s a sample plugin showing how to re-use your exisiting shortcode functionality in a block!<a href=\"https://t.co/bppHcumBlB\">https://t.co/bppHcumBlB</a></p>\n<p>&mdash; Gary (@GaryPendergast) <a href=\"https://twitter.com/GaryPendergast/status/1023560781617487872?ref_src=twsrc%5Etfw\">July 29, 2018</a></p></blockquote>\n<p></p>\n<p>The first file shows a basic example of how to register a block with JavaScript and add block inspector controls to the sidebar. The second file is the PHP code for the plugin that converts the existing shortcode logic into a block that will work inside the new editor.</p>\n<p>&#8220;This sample uses the ServerSideRender element,&#8221; Pendergast said. &#8220;It’s critical to remember that ServerSideRender is a stepping stone to a full block editing experience: having to call back to the server to re-render is a worse UX than native JS rendering. Use ServerSideRender to get your existing functionality ready for WordPress 5.0 now, and plan to phase it out over time.&#8221;</p>\n<p>With WordPress 4.9.8&#8217;s <a href=\"https://wptavern.com/first-look-at-try-gutenberg-prompt-in-wordpress-4-9-8-beta-2\" rel=\"noopener noreferrer\" target=\"_blank\">&#8220;Try Gutenberg&#8221; callout</a> just around the corner, this sample plugin may be helpful for developers who have created custom shortcode plugins for clients. If you&#8217;re not sure where to start, Pendergast&#8217;s sample plugin makes Gutenberg block creation more approachable. The <a href=\"https://wordpress.org/gutenberg/handbook/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg handbook</a> has more in-depth documentation for developers who want to improve their blocks beyond this basic example.</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, 30 Jul 2018 13:47: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:\"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: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:52:\"WPTavern: Plugin Review: Theme Support for Gutenberg\";s:7:\"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=82710\";s:7:\"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://wptavern.com/plugin-review-theme-support-for-gutenberg\";s: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:2655:\"<p>As Gutenberg nears a merge with WordPress, Theme Authors are running out of time to ensure that their themes are compatible. The Gutenberg handbook has an <a href=\"https://wordpress.org/gutenberg/handbook/extensibility/theme-support/\">excellent article</a> on how to opt-in and add support for enhanced features.</p>\n\n<p>Most themes will present the default blocks without any issues as the blocks themselves provide their own styles. If you use a theme that does not fully support Gutenberg such as the Wide or Full Block Alignment options, the <a href=\"https://wordpress.org/plugins/theme-support-for-gutenberg/\">Theme Support for Gutenberg</a> plugin may be for you. </p>\n\n<p>Created by <a href=\"https://weavertheme.com/about/\">Weweaver</a>, Theme Support for Gutenberg claims to allow most WordPress themes to be compatible with Gutenberg. In addition to theme support, the plugin adds a Classic Editor button to the admin bar to easily switch between Gutenberg and the Classic Editor.</p>\n\n<p>Since a default WordPress theme is used to show how this plugin is beneficial, I decided to try it for myself. I installed the plugin on a fresh install of WordPress 4.9.7, Gutenberg 3.3, and the latest version of Twenty Sixteen. I published a Gutenberg Demo post which uses many of the default blocks.<br /></p>\n\n<h2>Twenty Sixteen Looks Better Without It<br /></h2>\n\n<p>Here is what the Gallery block looks like in Twenty Sixteen with the plugin disabled. The content looks good and fits within the content column.</p>\n\n<img />Theme Support for Gutenberg Disabled\n\n<p>When the plugin is enabled, the images are so large, a horizontal scroll bar appears. </p>\n\n<img />Theme Support for Gutenberg Enabled\n\n<p>The plugin includes additional styling for default blocks. One block that doesn&#8217;t benefit from the enhanced styles is the Video block. With the plugin disabled, the video block appears normally. </p>\n\n<img />Video Block With The Plugin Disabled<br />\n\n<p>With the plugin enabled, the video block overflows the content column and breaches into the left sidebar.</p>\n\n<img />Video Block With The Plugin Enabled \n\n<p>Although the plugin initially shipped with no options, version 0.2 includes new settings that provide better compatibility for some themes. I checked the box to disable Fitvids support which solved the video block issue. However, the other options had no effect on the oversized image blocks. <br /></p>\n\n<img />Theme Support Options\n\n<p>Twenty Sixteen and Twenty Seventeen do not work well with this plugin. There may be themes, particularly older ones that benefit, but more modern themes will likely be ok without 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:\"Fri, 27 Jul 2018 22:42:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: WooSesh Virtual WooCommerce Conference to be Held October 18-19\";s:7:\"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=82508\";s:7:\"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/woosesh-virtual-woocommerce-conference-to-be-held-october-18-19\";s: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:4964:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/07/woosesh-2018.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://woosesh.com/\" rel=\"noopener noreferrer\" target=\"_blank\">WooSesh</a>, a new two-day virtual conference focused on WooCommerce topics, will be held October 18-19. While wrapping up another successful edition of WordSesh, Brian Richards announced WooSesh as the next event coming under the WordSesh brand. On Wednesday, nearly 500 attendees joined WordSesh. People tuned in from around the world, although the audience was heavily US-based due to the time the event was scheduled.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/07/wordsesh-july-2018.png?ssl=1\"><img /></a></p>\n<p>Since WooConf is not happening this year, WooSesh is an exciting alternative that will be accessible to anyone in the world. Co-organizers Brian Richards and Patrick Rauland will be hosting eight presentations each day, so the event will last between 8-10 hours both days, including breaks and announcements.</p>\n<p>&#8220;Once we learned that WooConf wouldn’t be taking place this year we reached out to our friends at Automattic to see if we could work with them as well to still provide a high-quality event but for a much more global audience,&#8221; Richards said.</p>\n<p>WooCommerce is sponsoring the entire event, making it free for all live attendees. Richards said they are working with other prominent companies in the WooCommerce space who are lending their knowledgeable staff as presenters, as well as providing the event with digital swag for attendees.</p>\n<p>WooSesh organizers are employing an interesting concept for encouraging attendance and engagement. The conference will have a $200 ticket price for those who do not attend live. Those who register in advance and attend live will receive the $200 ticket for free.</p>\n<p>&#8220;That means if a person joins the mailing list and shows up for the event, they’ll be able to experience the whole thing at no cost to them,&#8221; Richards said. &#8220;Similar to WordSesh, a ticket grants attendees access to the entire broadcast, chat, recordings, real-time transcriptions, and some cool digital swag. But with WooSesh they’ll also get some targeted follow-up content, and perhaps a private community, to further help them succeed and increase the impact of this conference.</p>\n<p>&#8220;And I think it’s in everyone’s best interest to register and attend live – at least trying to make it to one of the sessions across the two days – so they can get all of that for free.&#8221;</p>\n<p>Richards said recordings may still make it out there for people to view afterwards but none of the other perks and follow-ups will be available without purchasing a ticket or attending live.</p>\n<p>&#8220;We talked about asking people for a credit card up front and building a mechanism that would either charge them after the fact (like a pre-order) or charge them up-front but then refund them after the fact,&#8221; Richards said. &#8220;Instead we’re going with the simpler route and asking only for a person’s name and email address up-front. If they come to the live event they’ll be able to access all of the content afterwards just as if they had paid, and if they don’t attend live they’ll instead be greeted with a payment form.&#8221;</p>\n<p>Building on their collective knowledge of organizing successful in-person and virtual conferences, Richards said he and his co-organizer wanted to reduce the friction as much as possible for people getting into their seats and engaged with the speakers and other attendees.</p>\n<p>&#8220;Making it a virtual event already knocks down a ton of barriers,&#8221; Richard said. &#8220;Making the content available for free eliminates even more. Except that, people will often discredit free things and we didn’t want anyone to think of this content as any less valuable or serious than it really is.&#8221;</p>\n<p>WooSesh organizers plan to host compelling case studies, as well as talks about SEO, security, tips for building different kinds of e-commerce stores, and share advice from others’ hard-earned lessons. The event will also host sessions for developers that delve into WooCommerce architecture, performance, how to build and support custom extensions, and how to expand service offerings to better support e-commerce projects.</p>\n<p>&#8220;Our biggest goal with WooSesh is that it will help store builders as well as coders to have more impact with what they build,&#8221; Richards said. &#8220;Specifically, we’d like to see them make some measurable progress in their own goals, whether that’s more sales, better customer experiences, greater depth of knowledge, or otherwise. We’re also hoping that some of these talks will inspire attendees to do more than they originally thought possible – either for their own e-commerce stores or for their customers/clients.&#8221;</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, 27 Jul 2018 22:34: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:\"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: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:69:\"WPTavern: Slack Acquires HipChat, Moves Blog from Medium to 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=82681\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wptavern.com/slack-acquires-hipchat-moves-blog-from-medium-to-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:2732:\"<p>Slack <a href=\"https://slackhq.com/atlassian-and-slack-partnership\" rel=\"noopener noreferrer\" target=\"_blank\">announced</a> today that it has acquired HipChat from Atlassian. The friendly rivalry between the two competing group chat platforms will be laid to rest as Slack plans to retire HipChat and Stride. Atlassian will receive a stake in Slack&#8217;s business in exchange for shutting down its chat collaboration services and migrating all of its customers over.</p>\n<p><a href=\"https://www.atlassian.com/blog/archives/press-release-atlassian-acquires-hipcha\" rel=\"noopener noreferrer\" target=\"_blank\">Atlassian acquired HipChat in 2012</a> with the intention of scaling the business but found a formidable challenge in taking on the well-funded, market-dominating Slack app. As of May 2018, <a href=\"https://slackhq.com/from-tokyo-to-tallahassee-target-to-ticketmaster-slack-is-where-work-happens\" rel=\"noopener noreferrer\" target=\"_blank\">Slack reported 8 million daily active users</a> and 70,000 paid teams. More than half of the app&#8217;s users are outside the U.S. and 65% of companies in the Fortune 100 pay to use Slack.</p>\n<p>Atlassian and Slack are now joining forces to compete against Microsoft, who jumped into the enterprise collaboration market in 2016 with its Teams product. Teams&#8217; free tier offers support for up to 300 people, with unlimited chat messages and search, and is aimed squarely at competing with Slack.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/07/slack-blog-e1532659145946.png?ssl=1\"><img /></a></p>\n<p>The news was announced on &#8220;<a href=\"https://slackhq.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Several People Are Typing</a>,&#8221; the official Slack blog, which has just <a href=\"https://medium.com/several-people-are-typing/weve-moved-9cf5941a66fe\" rel=\"noopener noreferrer\" target=\"_blank\">moved from Medium to WordPress</a>. It is being hosted on the WordPress.com VIP platform.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><img src=\"https://s.w.org/images/core/emoji/11/72x72/1f485.png\" alt=\"?\" class=\"wp-smiley\" /> I can’t really answer the question (bias, yada yada), but it sure is good to be hosting the Slack blog at <a href=\"https://twitter.com/WordPressVIP?ref_src=twsrc%5Etfw\">@WordPressVIP</a> <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f60e.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://t.co/86aQQ5Pkaz\">https://t.co/86aQQ5Pkaz</a></p>\n<p>&mdash; Simon Wheatley (@simonwheatley) <a href=\"https://twitter.com/simonwheatley/status/1022360132053807104?ref_src=twsrc%5Etfw\">July 26, 2018</a></p></blockquote>\n<p></p>\n<p>The answer to that question, by the way, is &#8216;yes.&#8217;</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, 27 Jul 2018 02:55: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: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:61:\"WPTavern: How to Create A Gutenberg Block Attributes Glossary\";s:7:\"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=82684\";s:7:\"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:72:\"https://wptavern.com/how-to-create-a-gutenberg-block-attributes-glossary\";s: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:1242:\"<p>If you want to see what Gutenberg blocks are available on a site along with their attributes, check out the <a href=\"https://github.com/OIT-Design/block-attributes-glossary\">Block Attributes Glossary</a> plugin by <a href=\"https://design.oit.ncsu.edu/\">NC State&#8217;s Office of Information Technology and Design</a>.</p>\n\n<img />Block Attributes Glossary Index\n\n<p>The plugin adds a Glossary Attributes Block to Gutenberg that when added to a post or page, displays an index of blocks that are available. Clicking on a block name will display its attributes. </p>\n\n<img />Atomic Blocks Drop Cap Block Attributes\n\n<p>This is especially useful for creating block templates. Note that if you install plugins that add new blocks, you&#8217;ll need to visit the post or page that has the glossary, remove the Glossary block, and re-add it. </p>\n\n<p>You can see a live demo of this plugin in action by visiting <a href=\"https://design.oit.ncsu.edu/docs/gutenberg/block-attributes/\">NC State&#8217;s OIT Block Attributes Glossary</a>. The plugin is not available from the WordPress plugin directory but you can download it for free from the <a href=\"https://github.com/OIT-Design/block-attributes-glossary\">project&#8217;s Github page</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:\"Thu, 26 Jul 2018 20:47: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:\"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:93:\"WPTavern: Font Awesome 5.2 Adds 372 New Icons, Introduces Automotive and Education Categories\";s:7:\"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=82617\";s:7:\"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/font-awesome-5-2-adds-372-new-icons-introduces-automotive-and-education-categories\";s: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:3091:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/07/Screen-Shot-2018-07-25-at-5.15.52-PM.png?ssl=1\"><img /></a>image credit: <a href=\"https://fontawesome.com/\">Font Awesome</a>\n<p><a href=\"https://blog.fontawesome.com/font-awesome-5-2-372-new-icons-adfb42c6c35\" rel=\"noopener noreferrer\" target=\"_blank\">Font Awesome</a> 5.2 was released yesterday with two new categories and 372 new icons, bringing the total number of free icons to 1,295. The open source vector icon font is used on more than <a href=\"https://trends.builtwith.com/widgets/Font-Awesome\" rel=\"noopener noreferrer\" target=\"_blank\">22 million sites</a> across the internet. It&#8217;s also a popular icon font with WordPress theme and plugin developers.</p>\n<p>Version 5.2 introduces automotive and education categories, which should be useful to fill the gaps for designers and developers creating sites around these subjects. The release also adds 66 new and updated icons to the Medical category and 126 new and updated Maps icons.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/07/medical.png?ssl=1\"><img /></a></p>\n<p>Font Awesome, originally created by Dave Gandy, is an SIL OFL-licensed icon font, with the code under the MIT License. Thanks to its GPL-friendly license, the icon font is widely used in WordPress&#8217; theme and plugin ecosystem in both commercial and free products. Font Awesome&#8217;s <a href=\"https://github.com/FortAwesome/Font-Awesome/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+wordpress\" rel=\"noopener noreferrer\" target=\"_blank\">Github issues queue</a> is also loaded with icon requests that would be used in niche WordPress themes, as well as icons for WordPress-related company logos.</p>\n<p>Two years ago, Font Awesome announced the <a href=\"https://wptavern.com/font-awesome-cdn-now-in-beta-loads-icons-asynchronously-with-automatic-accessibility-best-practices\" rel=\"noopener noreferrer\" target=\"_blank\">beta release of its new CDN</a>, which allows developers to implement it using a single line of code to bring the icons and CSS toolkit into their projects. At that time, Font Awesome was used by more than 300 plugins on WordPress.org. In 2018, searching the official plugin directory turns up more than 800 plugins that make use of the icon font in some way. Thousands of free and commercial themes also use it to provide users with easy customization options.</p>\n<p>Font Awesome support for Gutenberg is going to be fairly important, as hundreds of thousands of websites are using plugins like <a href=\"https://wordpress.org/plugins/better-font-awesome/\" target=\"_blank\" rel=\"noopener noreferrer\">Better Font Awesome</a>, <a href=\"https://wordpress.org/plugins/font-awesome-shortcodes/\" target=\"_blank\" rel=\"noopener noreferrer\">Font Awesome Shortcodes</a>, and <a href=\"https://wordpress.org/plugins/font-awesome-4-menus/\" target=\"_blank\" rel=\"noopener noreferrer\">Font Awesome for Menus</a> to allow users to add icons to content and menus. Currently there are no Gutenberg-compatible plugins for adding Font Awesome icons to content.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Jul 2018 18:08: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: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: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:62:\"WPTavern: WPWeekly Episode 324 – Getting NC State Gutenready\";s:7:\"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=82650&preview=true&preview_id=82650\";s:7:\"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://wptavern.com/wpweekly-episode-324-getting-nc-state-gutenready\";s: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:1804:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by <a href=\"https://design.oit.ncsu.edu/people/jmriehle/\">Jen McFarland</a>, Web Services Coordinator at NC state&#8217;s Office of Information and Technology. McFarland describes how the campus is using WordPress, what they&#8217;re doing to prepare students and staff for Gutenberg, and what they&#8217;ve experienced thus far in the transition.</p>\n<p>Near the end of the show, we cover WordPress 4.9.8 RC 1 and provide an update on WP-CLI Hack Day.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/gutenberg-3-3-released-adds-archives-and-recent-comments-blocks\">Gutenberg 3.3 Released, Adds Archives and Recent Comments Blocks</a><br />\n<a href=\"https://make.wordpress.org/core/2018/07/24/wordpress-4-9-8-release-candidate-1/\">WordPress 4.9.8 RC 1 Released</a><br />\n<a href=\"https://wptavern.com/wp-cli-hack-day-is-a-success\">WP-CLI Hack Day Is A Success</a><br />\n<a href=\"https://wptavern.com/google-chrome-rolls-out-not-secure-warning-for-plain-http-sites\">Google Chrome Rolls Out “Not Secure” Warning for Plain HTTP Sites</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 1st 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #324:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Jul 2018 01:01: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:\"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: Frontenberg Lets Users Test Gutenberg on the Frontend\";s:7:\"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=82526\";s:7:\"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/frontenberg-lets-users-test-gutenberg-on-the-frontend\";s: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:2733:\"<p>WordPress 5.0 will bring the world a brand new editor that is currently code-named Gutenberg. If you have been hearing the buzz around Gutenberg but have yet to try it, <a href=\"https://testgutenberg.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Frontenberg</a> (<a href=\"https://testgutenberg.com/\" rel=\"noopener noreferrer\" target=\"_blank\">testgutenberg.com</a>) is the easiest way to check it out.</p>\n<p>Frontenberg allows visitors to try Gutenberg without having to set up a separate test site of their own. It loads an instance of WordPress plus the Gutenberg plugin on the frontend so visitors don&#8217;t have to log in to play around with the new editor.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/07/frontenberg-e1532540010736.png?ssl=1\"><img /></a></p>\n<p>Frontenberg has a limited range of capabilities for testing purposes. Users have access to a pre-populated media library but cannot upload images to the test site. It&#8217;s also not possible to create shared blocks or save the post. Attempting to save an action will trigger an &#8220;updating failed&#8221; notice. Apart from those few limitations, Frontenberg allows users to test nearly all of Gutenberg&#8217;s features.</p>\n<p>The tool was created by <a href=\"https://tomjn.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Tom Nowell</a>, VIP Wrangler at <a href=\"https://automattic.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Automattic</a>. He launched the frontend testing instance on his own website at <a href=\"https://frontenberg.tomjn.com/\" rel=\"noopener noreferrer\" target=\"_blank\">frontenberg.tomjn.com</a> and the WordPress VIP team built its own version to handle more traffic. Frontenberg contains links to numerous Gutenberg resources, including <a href=\"http://vipgutenberg.com\" rel=\"noopener noreferrer\" target=\"_blank\">vipgutenberg.com</a>, which has some free training videos the team created for VIP clients.</p>\n<p>Nowell has written a post called <a href=\"https://tomjn.com/2018/01/22/how-frontenberg-works/\" rel=\"noopener noreferrer\" target=\"_blank\">How Frontenberg Works</a> for developers who are interested in the tech behind the tool. In it he describes the challenges he encountered in building Frontenberg and the solutions he wrote to make it work.</p>\n<p>The <a href=\"https://wptavern.com/first-look-at-try-gutenberg-prompt-in-wordpress-4-9-8-beta-2\" rel=\"noopener noreferrer\" target=\"_blank\">&#8220;Try Gutenberg&#8221; prompt</a> will soon be going out to millions of users in WordPress 4.9.8. Those who conservatively opt to use the Classic Editor plugin can still give Gutenberg a try using the Frontenberg tool or install it on a test site to see how interacts with themes and plugins.</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, 25 Jul 2018 19:59: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: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:69:\"WPTavern: WordPress Core Fields API Project is Seeking New Leadership\";s:7:\"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=82602\";s:7:\"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-core-fields-api-project-is-seeking-new-leadership\";s: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:10702:\"<p>In 2014, <a href=\"https://pods.io/\">Pods</a> lead developer, Scott Kingsley Clark, <a href=\"https://make.wordpress.org/core/2014/02/25/metadata-project-update/\">took over</a> the primary lead role for the Metadata UI project. In 2015, the Metadata UI project <a href=\"https://make.wordpress.org/core/2015/05/27/metadata-api-project-reborn-the-new-fields-api-project/\">was reborn</a> as the <a href=\"https://github.com/sc0ttkclark/wordpress-fields-api\">Fields API</a>.</p>\n\n<p>The Fields API was developed to allow registering fields to different screens in the admin area through a single API. New meta boxes and fields within them could be added to posts while new sections and fields could be added to the profile screen.</p>\n\n<p>The goal of the API is to integrate with all of the various admin screens including, Posts, Terms, Users, Media, and Comments and provide standardization.</p>\n\n<p>Clark has been leading the project for three years and despite seeing <a href=\"https://wptavern.com/wordpress-core-fields-api-project-sees-renewed-interest\">renewed interest</a> last year, <a href=\"https://wordpress.slack.com/messages/C04MWK7PZ/\">announced</a> in the project&#8217;s Slack channel that he is stepping down. <br /></p>\n\n<blockquote class=\"wp-block-quote\"><p>It is with a heavy heart that I must pass the torch on this project. After hundreds of hours of my time, I no longer believe I can effect change within WordPress core. </p><p>The Fields API vision was too big, too much of an undertaking for any one person. I believe so deeply that WordPress needs a Fields API, but the journey to where we are at with the Fields API has been long and arduous. </p><p>The truth is, I burned out years ago while building the first and second prototypes. Not everyone agreed on how to architect the code, it went through many revisions based on core contributor feedback. I just couldn&#8217;t get enough people excited about it, I couldn&#8217;t get enough companies and people interested in supporting it.</p><p>I need to let someone else have their chance, I am dragging it down. If someone steps up to lead in the future, then I would be happy to assist where I am able to. But I am unable to continue leading the Fields API proposal/project. I am sorry, please accept my apology and I hope you can forgive me for failing to take this project over the finish line. I still believe to be such a vital part of WordPress&#8217; future success.</p><cite>Scott Kingsley Clark</cite></blockquote>\n\n<h2>The Trials and Tribulations of Leading an Open Source Project</h2>\n\n<p>In the following interview, Clark explains why he feels personally responsible for the project&#8217;s lack of progress, why the API is important for WordPress&#8217; future, and reflects on what he could have done differently.</p>\n\n<p><strong>Are you looking to pass the torch on to anyone in particular?</strong><br /><br /></p>\n\n<p>No, I&#8217;m not sure who would have the drive and the clout to see the project through. It&#8217;s a large scale project that should be approached with a long-term vision but in small enough increments to make it into WordPress core. It&#8217;s a lot to ask of somebody, it&#8217;s also not a priority for people right now since they are distracted by Gutenberg being released in the near future.<br /></p>\n\n<p><strong>Why is the Fields API a vital part of WordPress&#8217; future?</strong><br /><br /></p>\n\n<p>People look at WordPress today and wonder how they ever survived without the REST API. Well, at least I know I do! The same thing can be said about the Fields API even though it&#8217;s not there yet. There are so many cases where it&#8217;s frustrating to build solutions for WordPress across all of the different hooks.<br /></p>\n\n<p>For consistency, it&#8217;s the wild west out there. You get a meta box registered and you fill it with whatever you want. You need your own CSS to style the form fields and everyone has their own idea of how this interface should look. You are in charge of your own responsive layouts that are mobile-friendly, there&#8217;s just so much you have to handle on your own. You should be able to customize appearances, but every place you want to add a field or form to should really have a proper API.<br /></p>\n\n<p>Long-term, imagine registering fields to WordPress like you register post types. Imagine fields and their configurations being available to the REST API and accessible through the WordPress App or other custom apps. </p>\n\n<p>The whole world opens up because you have a consistent API, the whole world make sense because you have a consistent interface for those fields across the various edit screens. Posts, terms, comments, users, media, even the Customizer would all have the same underlying API to add groups, panels, and fields to their screens.<br /></p>\n\n<p>If Gutenberg was done after the Fields API was in, migration for folks wouldn&#8217;t have been as difficult. Gutenberg could have automatically shown all of the Fields API interfaces like it does for the meta box backward compatibility. It would have looked so much nicer too.<br /></p>\n\n<p><strong>Taking some time to reflect, what could you have done differently to get more core contributors to buy into the project and turn it into a higher priority?</strong><br /><br /></p>\n\n<p>I&#8217;m not sure, it&#8217;s a delicate balance of taking input and being confident in the end result. At first, the feedback was about how the API was foreign for WordPress, they asked if it could be similar in structure to other APIs such as the Customizer. </p>\n\n<p>We scrapped the code and rebuilt from the ground up as a fork of the Customizer, it even supported having the Customizer utilizing the Fields API too. At the height of development, we had all areas of the Fields API implemented.<br /></p>\n\n<p>Core releases were moving pretty fast, there was a lot of code changes from WordPress release to release that we had to keep up with because we had essentially created a project that was a giant patch for WordPress. </p>\n\n<p>There weren&#8217;t enough hooks in place to do what we needed to do, and many sections were not extensible because of code decisions that marked themselves as &#8216;final&#8217;, which means you can&#8217;t extend a specific class to customize how it works.<br /></p>\n\n<p>I wish I could have been at all the big WordCamps in the US and Europe, essentially lobbying for this feature. Gathering supporters and such, it feels like politics in a way. I hung around in Core dev meetings, trying to bring it up. I tried to legitimize the feature by having a dedicated channel in the official WordPress Slack, posting updates on<a href=\"https://make.wordpress.org/core/\"> https://make.wordpress.org/core/</a>, and holding weekly meetings.<br /></p>\n\n<p>Ultimately, I prioritized my time for development over the time to gather the troops. That was the downfall, I began to burn out quickly after the first few rewrites as I had many other responsibilities elsewhere on top of Fields API.</p>\n\n<p>It’s not like companies will easily want to pay you to work on a project like this indefinitely, even though both WebDevStudios and 10up gave me time to push it forward. It wasn’t a blank check, at some point I had to get back to billable work. From then on, it was all in my free time and that was difficult to manage during times of financial stress and house selling/buying.<br /></p>\n\n<p><strong>There&#8217;s demand for a Fields API in core but not enough hands to build it. Why do you think that is?</strong><br /><br /></p>\n\n<p>Everyone is focused elsewhere. There’s a lot of areas of WordPress that need people’s attention. There are things like Accessibility that deserve a lot more attention than it gets. But the focus to me, seems to be on Gutenberg and REST API. </p>\n\n<p>Gutenberg especially has been a huge time sink for people contributing and people implementing. It’s a really large feature. It’s definitely larger in scale than Fields API, it’s like a whole new app that lives in WordPress. Integration with it has required a lot of education and trial/error. People’s focus is where it needs to be right now. It’s just unfortunate that Gutenberg came before Fields API in terms of priority and interest level.<br /></p>\n\n<p><strong>What advice would you give to the next Fields API project leader?</strong><br /><br /></p>\n\n<p>This is a big project, everyone will want to say it should be a certain way. You have to evaluate the options and put forth something bite sized for core to start with. Build upon that, but never lose sight of the long-term goal of integration across all of the WordPress screens. Even the front-end comment forms could thrive with the Fields API.<br /></p>\n\n<p><strong>Why do you feel personally responsible for the project not being a core priority?</strong><br /><br /></p>\n\n<p>At one point, we had momentum. We had at least three to four people who were active. It fell apart because I ran out of time. It’s my shortsightedness, it’s my fault. I spent hundreds of hours developing the project over a couple of years. I should have left myself much more time for organizing the feature proposal text and keeping the fires burning in our contributors’ hearts.<br /></p>\n\n<p><strong>Considering the time and effort you&#8217;ve put into the project the last few years, do you feel any sense of relief passing the torch on?</strong><br /><br /></p>\n\n<p>If the torch gets passed or picked up, I will feel a ton better. The main relief is that it’s officially not a weight I have to carry alone any longer. It’s okay to try and fail, it’s still sad though. </p>\n\n<p>I hope that someone or some company steps up and puts time into this. They could even reignite the fire in my own heart that burned itself out. For now, I have one less major to-do item. I still have a hefty plate but it’s no longer as heavy of a burden.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<p>While the immediate future of the project is unclear, those interested in taking it over are encouraged to read posts marked with the <a href=\"https://make.wordpress.org/core/tag/fields-api/\">Fields API tag</a> on <a href=\"https://make.wordpress.org/core\">Make.WordPress.Core</a> to learn about its history. You can also check out the <a href=\"https://github.com/sc0ttkclark/wordpress-fields-api\">project&#8217;s Github page</a>. </p>\n\n<p>If you&#8217;re interested in taking over the project, you can contact Clark on <a href=\"https://twitter.com/scottkclark\">Twitter</a>, <a href=\"https://wordpress.slack.com/team/U02RSB1LH\">Slack</a>, or through <a href=\"https://www.scottkclark.com/\">his website</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, 25 Jul 2018 16:53: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:\"\";}}}}}i:24;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:23:\"HeroPress: Global Unity\";s:7:\"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=2596\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://heropress.com/global-unity/#utm_source=rss&utm_medium=rss&utm_campaign=global-unity\";s: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:3268:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2017/04/041217-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I am quite lucky to wake up every morning and work, all on my own, in a country where 54% of the population are unemployed and over 70% are youth.\" /><p>One of the things I&#8217;ve loved most about HeroPress is getting to know people far away. It&#8217;s getting harder and harder to name a country where I can&#8217;t say &#8220;Hey, I have a friend there!&#8221;.  This week I&#8217;m in Australia for WordCamp Sydney, and I&#8217;m crazy excited about all the people I&#8217;m going to meet. The global unity of the WordPress community is exhilarating.</p>\n<p>The replay essay I picked for this week is titled &#8220;<strong>A Bottomless World of Possibilities</strong>&#8221; by Jamaal Jaamac in Mogadishu, Somalia. His world is so completely different from mine that sometimes I even have a hard time asking the right questions to find out what it&#8217;s like.</p>\n<p>Jamaal doesn&#8217;t live in a place where good work comes easy or often. It&#8217;s chiseled out of society with labor and love. There&#8217;s a stereotype that people in poor countries are lazy, but I think they have to be stronger and work harder just to make it. Jamaal is one of my heroes.</p>\n<p>Check out his essay.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/bottomless-world-possibilities/\">A Bottomless World of Possibilities</a></p></blockquote>\n<p></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: Global Unity\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Global%20Unity&via=heropress&url=https%3A%2F%2Fheropress.com%2Fglobal-unity%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Global Unity\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fglobal-unity%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%2Fglobal-unity%2F&title=Global+Unity\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Global Unity\"></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/global-unity/&media=https://heropress.com/wp-content/uploads/2017/04/041217-min-150x150.jpg&description=Global Unity\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Global Unity\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/global-unity/\" title=\"Global Unity\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/global-unity/\">Global Unity</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, 25 Jul 2018 10:52: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:\"\";}}}}}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:79:\"WPTavern: Google Chrome Rolls Out “Not Secure” Warning for Plain HTTP Sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=82489\";s:7:\"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-chrome-rolls-out-not-secure-warning-for-plain-http-sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7926:\"<p>As part of a long term plan to push the web to adopt HTTPS encryption, <a href=\"https://www.blog.google/products/chrome/milestone-chrome-security-marking-http-not-secure/\" rel=\"noopener noreferrer\" target=\"_blank\">Google Chrome is now marking all plain HTTP sites as &#8220;not secure,&#8221;</a> as of July 24, 2018, with the release of <a href=\"https://chromereleases.googleblog.com/2018/07/stable-channel-update-for-desktop.html\" rel=\"noopener noreferrer\" target=\"_blank\">Chrome 68</a>. Previously, the &#8220;not secure&#8221; warning was hidden behind the security indicator in the URL bar as shown below.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/07/Screen-Shot-2018-07-23-at-8.51.52-PM.png?ssl=1\"><img /></a></p>\n<p>That warning has become more prominent with the release of Chrome 68. The browser now immediately displays the &#8220;Not secure&#8221; message in the omnibox for all HTTP pages.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/07/warning-update.jpg?ssl=1\"><img /></a></p>\n<p>Today Google announced a time frame for eventually marking HTTP sites with a red &#8220;not secure&#8221; warning:</p>\n<blockquote><p>Eventually, our goal is to make it so that the only markings you see in Chrome are when a site is not secure, and the default unmarked state is secure. We will roll this out over time, starting by removing the “Secure” wording in September 2018. And in October 2018, we’ll start showing a red “not secure” warning when users enter data on HTTP pages.</p></blockquote>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/07/not-secure-eventual-warning.png?ssl=1\"><img /></a>image source: <a href=\"https://security.googleblog.com/2016/09/moving-towards-more-secure-web.html\">Google Security Blog</a>\n<p>Google Chrome currently captures <a href=\"http://gs.statcounter.com/browser-market-share\" rel=\"noopener noreferrer\" target=\"_blank\">60% of the browser marketshare worldwide</a>, making it one of the company&#8217;s most effective vehicles for driving HTTPS adoption. <a href=\"https://letsencrypt.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Let&#8217;s Encrypt</a>, the free and open certificate authority (of which Chrome is a platinum sponsor), has also been a key player in precipitating the rise in secure traffic over the past few years. Firefox Telemetry shows that HTTPS traffic is at 81% for US users and 73% for all users.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/07/Screen-Shot-2018-07-24-at-10.20.50-AM.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://transparencyreport.google.com/https/overview?hl=en\" rel=\"noopener noreferrer\" target=\"_blank\">Google&#8217;s Transparency report</a> shows similar numbers for percentage of pages loaded over HTTPS in Chrome. 84% of US traffic is encrypted by HTTPS.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/07/Screen-Shot-2018-07-24-at-10.40.02-AM-e1532446916438.png?ssl=1\"><img /></a></p>\n<p>Google has even more weapons in its arsenal for compelling website owners to switch to HTTPS. Even before Chrome began flagging unencrypted sites, the search engine added <a href=\"https://webmasters.googleblog.com/2014/08/https-as-ranking-signal.html\" rel=\"noopener noreferrer\" target=\"_blank\">HTTPS as a ranking signal in 2014</a>. It started as a lightweight signal that affected fewer than 1% of global queries. Google has also indicated that <a href=\"https://searchengineland.com/googles-gary-illyes-https-may-break-ties-between-two-equal-search-results-230691\" rel=\"noopener noreferrer\" target=\"_blank\">HTTPS may break ties between two equal search results</a>, making a difference for competitive niches. With more sites adopting HTTPS as the norm, the company may choose to strengthen the signal in the future.</p>\n<p>Not everyone is comfortable with a for-profit company making an aggressive push to require websites to deliver content over HTTPS. Some fear that prioritizing encryption in search results, while also using Chrome to cast doubt on websites&#8217; security, is just the beginning.</p>\n<p>Dave Winer, one of Google&#8217;s most vocal critics regarding this initiative, sees the push towards HTTPS as <a href=\"http://this.how/googleAndHttp/\" rel=\"noopener noreferrer\" target=\"_blank\">the company&#8217;s attempt to take control of the open web</a>. His concern is that if Google succeeds, it might &#8220;make a lot of the web&#8217;s history inaccessible.&#8221;</p>\n<p>&#8220;Google makes a popular browser and is a tech industry leader,&#8221; Winer said. &#8220;They can, they believe, encircle the web, and at first warn users as they access HTTP content. Very likely they will do more, requiring the user to consent to open a page, and then to block the pages outright.&#8221;</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">BTW, if I had to guess, the *real* reason Google hates HTTP has to do with Google\'s ad revenue, and not wanting Verizon and Comcast to remove their ads and replace them with their own. <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f61c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<p>&mdash; scripting.com (@davewiner) <a href=\"https://twitter.com/davewiner/status/1021500417241427968?ref_src=twsrc%5Etfw\">July 23, 2018</a></p></blockquote>\n<p></p>\n<p>Others have speculated that another driving factor behind Google&#8217;s push for HTTPS adoption may be its investment in <a href=\"https://www.i-programmer.info/news/87-web-development/11367-google-starts-its-push-to-progressive-web-apps-bye-bye-chrome-apps.html\" rel=\"noopener noreferrer\" target=\"_blank\">advancing PWA technologies</a>, which require HTTPS to be enabled. Last year <a href=\"https://www.zdnet.com/article/google-removes-chrome-apps-from-chrome-web-store/\" rel=\"noopener noreferrer\" target=\"_blank\">Google dumped Chrome apps from the Chrome Web Store</a> in favor of building PWAs that can be installed on the desktop. HTTPS is a requirement for the permission workflows, new features, and updated APIs that the company is using to build its future products.</p>\n<p>It&#8217;s easy to see how HTTPS is critical for e-commerce, banking, and other sites that collect highly sensitive data from users, but many wonder if it is necessary for simple blogs and content websites. Google contends that <a href=\"https://developers.google.com/web/fundamentals/security/encrypt-in-transit/why-https\" rel=\"noopener noreferrer\" target=\"_blank\">all websites need HTTPS protection</a> to prevent intruders from injecting ads or exploits.</p>\n<p>Few would dispute the value of HTTPS but critics are wary of Google establishing itself as the arbiter of safe browsing on the web.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">My blog, <a href=\"https://t.co/gPQ9VPYOLB\">https://t.co/gPQ9VPYOLB</a>, is not “not secure.” It uses the standard protocol of the web, HTTP.  It will not hurt you.</p>\n<p>&mdash; scripting.com (@davewiner) <a href=\"https://twitter.com/davewiner/status/1021713459380187136?ref_src=twsrc%5Etfw\">July 24, 2018</a></p></blockquote>\n<p></p>\n<p>For the moment, Winer seems to be committed to using HTTP to deliver his content. In Google&#8217;s feverish quest to push the entire web to adopt HTTPS, sites that are holding fast to HTTP on principle now appear as a sort of protest.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/07/Screen-Shot-2018-07-24-at-5.49.33-PM.png?ssl=1\"><img /></a></p>\n<p>&#8220;This blog and all my other sites use HTTP,&#8221; Winer said. &#8220;I don&#8217;t see that changing. I expect this will make writing for the web more of a chore. That&#8217;s life I guess. I don&#8217;t want Google to be able to mold the web to its needs. I never signed on to being a Google developer, and never would. Basic rule: Google is a guest on the web, as we all are, and guests don&#8217;t make the rules.&#8221;</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, 24 Jul 2018 23:07:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:32:\"Mark Jaquith: Page Links To v3.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:40:\"http://markjaquith.wordpress.com/?p=5675\";s:7:\"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://markjaquith.wordpress.com/2018/07/23/page-links-to/\";s: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:2482:\"<p>Today I pushed an update to my redirect and repointing plugin, <a href=\"https://wordpress.org/plugins/page-links-to/\">Page Links To</a>. Tomorrow, this plugin will have been in the WordPress.org Plugin Directory for 13 years (it was the 339th plugin in the WordPress plugin repository; there are now over 75,000!).</p>\n<p>To celebrate its transition to a teenager, I&#8217;ve added some new features and UI enhancements.</p>\n<p>Last month, I received survey responses from over 800 Page Links To users and learned a lot about how it&#8217;s being put to work. One of the most interesting things I found was how many people are using it for URL redirects. For example, they might have a really long URL on their own site or someone else&#8217;s site that they want to be nice. <em>example.com/summer-sale</em> instead of <em>example.com/store/specials.aspx?season=summer&amp;_utm_source=internal</em>. But in order to create these redirects, you have to go through the cluttered and sometimes slow post creation screen. All you really need to create a redirect is a title, a destination URL, and a local short URL.</p>\n<p>You&#8217;ll now find a menu item &#8220;Add Page Link&#8221; that will allow you to quickly add a redirected Page without having to wait for the entire WordPress post editing interface to load. It&#8217;s <em>super</em> fast, and it doesn&#8217;t redirect you away from the screen you&#8217;re on.</p>\n<p><img /></p>\n<p>Since short URLs are better for sharing (and remembering), the UI will give you a little push to shorten the URL if the one generated from your title is too long. From there, you can Save Draft or Publish.</p>\n<img />Hey, that URL is getting a bit long\n<img />Custom slug, for a better short URL\n<p>Additionally, this release includes a &#8220;link&#8221; indicator on post and page list screens, so you can easily see what items have been re-pointed with Page Links To. When hovered, the link icon will reveal the destination URL for a quick view.</p>\n<img />The &#8220;link&#8221; icon means that this item has been pointed elsewhere.\n<p>If you want to grab the &#8220;local&#8221; short URL (which will be redirected to your chosen URL when someone visits it), just click &#8220;Copy Short URL&#8221; from the actions, and it&#8217;ll be in your clipboard.</p>\n<img />Hover the &#8220;link&#8221; icon to see where it&#8217;s pointing.\n<p>That&#8217;s it for version 3.0, but I&#8217;ll have more to announce soon — stay tuned!</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, 23 Jul 2018 22:02:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mark Jaquith\";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:81:\"WPTavern: Thoughts From Two Founders Who Recently Sold Their WordPress Businesses\";s:7:\"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=82531\";s:7:\"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/thoughts-from-two-founders-who-recently-sold-their-wordpress-businesses\";s: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:2299:\"<p>Last month, <a href=\"https://wptavern.com/wp-engine-acquires-studiopress\">WP Engine acquired StudioPress</a>. Brian Gardner, founder of StudioPress, recently <a href=\"https://authentik.com/sell/\">shared his thoughts</a> on why he didn&#8217;t want to sell the business, but did. </p>\n\n<blockquote class=\"wp-block-quote\"><p>Making a decision that not only affects your livelihood, the livelihood of your partners and employees, and the livelihood of an entire community isn’t for the faint of heart. It certainly wasn’t a responsibility I took lightly and spent quite a bit of time wrestling with.</p><p>The fact of the matter is this: When you make a decision that affects thousands of people, you <em>have</em> to wrestle with it. And then wrestle with it some more.</p><cite>Brian Gardner</cite></blockquote>\n\n<p>I appreciate Gardner&#8217;s down-to-earth perspective on how he reached the decision to sell. </p>\n\n<p>Ryan Sullivan, founder of WP Site Care, <a href=\"https://www.wpsitecare.com/wp-site-care-joins-forces-with-southern-web/\">sold his WordPress maintenance and support business</a> to Southern Web. On his personal site, <a href=\"https://www.ryandsullivan.com/changes/\">Sullivan describes</a> what it has been like to run a business the last seven years and drifting away from the reason he created the business in the first place. </p>\n\n<blockquote class=\"wp-block-quote\"><p>As the team grew, I slowly moved further and further away from the reason I started my business in the first place. It’s a trend that’s talked about extensively in the E-Myth. </p><p>People start a business because they love what they do, but then the growth of the business, management of people, and demands of administrivia become too much, and the person who started the business finds themselves in a totally foreign land with no roadmap for how to get back to the thing they once loved.</p><cite>Ryan Sullivan</cite></blockquote>\n\n<p>Merging with Southern Web allows Sullivan to get back to what he enjoys doing most, helping people and businesses with their sites. Sullivan also shared a great piece of advice, &#8220;Ask for help before you think you need it.&#8221;</p>\n\n<p>Both articles are great reads and provide insight into the tough decisions founders inevitably have to make. </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, 23 Jul 2018 21:08: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: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:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"WPTavern: WP-CLI Hack Day Is A Success\";s:7:\"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=82458\";s:7:\"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://wptavern.com/wp-cli-hack-day-is-a-success\";s: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:2239:\"<p>Alain Schlesser hosted the first <a href=\"https://wptavern.com/wp-cli-hack-day-friday-july-20th\">WP-CLI Hack Day</a> last Friday and by all accounts, it was a smashing success.</p>\n\n<p>The main goal was to merge 20 pull requests during the event but due to technical issues with <a href=\"https://travis-ci.org/\">Travis CI</a>, only 12 were merged. Travis CI is open source software used to perform automated testing. </p>\n\n<p>In addition to the 12 pull requests that were merged, 13 more were submitted. The last two hours of the event featured a video call where contributors could talk through issues or receive help on submitting pull requests. </p>\n\n<p>&#8220;We peaked at 13 participants to that video chat,&#8221; Schlesser said. &#8220;It allowed for people to make a more personal connection, which added another dimension to the act of contributing.&#8221;</p>\n\n<p>Despite not reaching the goal, Schlesser is pleased with how it turned out.</p>\n\n<p>&#8220;The event was also an experiment, to see whether a more direct, interactive form of contribution would attract more contributors,&#8221; he said. &#8220;I think it did succeed in doing so, and I think it was a positive experience for the participants.&#8221;</p>\n\n<p><a href=\"https://make.wordpress.org/cli/2018/07/21/wp-cli-hack-day-results/\">Feedback from participants</a> is positive and folks enjoyed having Schlesser available to answer questions and walk them through how to set up an environment for testing. </p>\n\n<blockquote class=\"wp-block-quote\"><p>Though we fell a little short of that goal, it was heartening to be a part of the communal experience, learn how to write my first Behat test (something that has been on my to-do list for a long time!), and get immediate feedback on my submitted pull request. And, of course, getting that PR merged was a thrill as well, as I can now say that I’ve contributed back to the project.</p><cite><a href=\"https://make.wordpress.org/cli/2018/07/21/wp-cli-hack-day-results/#comment-133\">Jeremy Ward</a></cite></blockquote>\n\n<p>You can find links to all of the merged and submitted pull requests on the <a href=\"https://make.wordpress.org/cli/2018/07/21/wp-cli-hack-day-results/\">WP-CLI Hack Day summary page</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, 23 Jul 2018 19:43:19 +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: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:94:\"WPTavern: WordSesh Returns Wednesday, July 25, Experiments with Charging Attendees for Tickets\";s:7:\"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=82496\";s:7:\"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/wordsesh-returns-wednesday-july-25-experiments-with-charging-attendees-for-tickets\";s: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:6630:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/07/wordsesh.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://wordsesh.com/\" rel=\"noopener noreferrer\" target=\"_blank\">WordSesh</a>, a virtual conference dedicated to WordPress topics, is returning for a 5th edition on Wednesday, July 25, 2018. <a href=\"https://twitter.com/scottbasgaard\" rel=\"noopener noreferrer\" target=\"_blank\">Scott Basgaard</a>, the original organizer of the event, has passed the torch this year to <a href=\"https://twitter.com/rzen\" rel=\"noopener noreferrer\" target=\"_blank\">Brian Richards</a>, who has co-organized previous WordSesh events.</p>\n<p>The online-only event will feature 12 hours of sessions on a variety of tech and business topics, including e-commerce, freelancing, and security. In the past, WordSesh has been a marathon 24-hour event, but Richards decided to pare it down to 12 hours this year in order to organize the details quickly and get the next event on the calendar as soon as possible.</p>\n<h3>WordSesh Experiments with Charging Attendees for Tickets, Adds Real-Time Transcription</h3>\n<p>For the first time in WordSesh history, the event is charging attendees for tickets (rather than making it free for everyone as in years past). Richards is using the ticket money to pay speakers and have every video professionally transcribed in real-time. He has received some pushback on the decision but wants to see how things fare with this arrangement.</p>\n<p>&#8220;I thought the community might get behind that so we can stop asking speakers to completely volunteer their time, and the transcriptions are a huge accessibility bonus for non-native English speakers as well as the hard of hearing,&#8221; Richards said. &#8220;There have been just a few people pipe up to voice their distaste that I converted a free event to a paid event, which suggests there are many others stewing about it quietly, and I’m guessing it’s because they don’t realize where the money’s going (not that it should matter in either case).&#8221;</p>\n<p>Richards said tickets are dynamically priced to be the operational equivalent of $25 USD in every person&#8217;s home country. In India, for example, the ticket price is closer to $9 USD. He has kept quiet about the tech until now because he didn&#8217;t want people gaming the system but has since decided that it&#8217;s not a major concern.</p>\n<p>&#8220;The site accounts for purchase power parity so that the cost is not more than a couple of billable hours (or, ideally, much less) for everyone,&#8221; Richards said. &#8220;And for people whom the cost of a ticket is still a stretch, well, that’s where the scholarships come in.&#8221;</p>\n<p>WordSesh still has 18 donated scholarships to give away but Richards said he is struggling to find people willing to apply to watch the event for free. Prospective attendees can <a href=\"https://wordsesh.com/product/wordsesh-scholarship/\" rel=\"noopener noreferrer\" target=\"_blank\">apply for a scholarship or nominate others to receive one</a>.</p>\n<p>A ticket to the event grants attendees access to the sessions, both live and after it has been recorded. Attendees will also receive virtual swag. A few samples include:</p>\n<ul>\n<li>A steep discount on WPSessions annual memberships (33%)</li>\n<li>Stripe is providing an exclusive link to skip the invitation process on their Atlas program and cover the cost for processing their first $5k of payments</li>\n<li>CorgiBytes is offering a $1k discount (~20%) on their code auditing services</li>\n</ul>\n<p>Previous WordSesh events averaged 1,000 online attendees and a good portion of them showed up the same day the events aired. This year there are approximately 400 registered so far. Richards said he won&#8217;t rule out the possibility of making the event free again for the next edition.</p>\n<p>&#8220;Asking more from sponsors could make a free event possible again without paying for everything personally (right now I&#8217;m still about $1000 in the red), but I really want to put the onus on the community at large,&#8221; Richard said. &#8220;Quality events take a lot of time and effort to accomplish, and most of that cost is on the backs of the organizers, speakers, and sponsors rather than attendees (at least in the WP community). Having been in all of those seats I&#8217;d really like to see more responsibility shift to the attendees. I would personally be happy to pay more for an event and be glad knowing that both speakers and organizers weren&#8217;t burning all this time in hopes of a return.&#8221;</p>\n<p>Virtual conferences have started gaining more traction in the global WordPress community after the success of previous WordSesh events. WordPress educator Zac Gordon recently hosted more than 1,000 attendees at his free <a href=\"https://wptavern.com/free-javascript-for-wordpress-conference-to-stream-live-friday-june-29\" rel=\"noopener noreferrer\" target=\"_blank\">JavaScript for WordPress conference</a> in June. The Polyglots&#8217; virtual <a href=\"https://wptranslationday.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Global WordPress Translation day</a> has also attracted hundreds of participants at each event (448 attendees in April 2016, 780 attendees in November 2016, and 1,300 local event RSVPs in September 2017).</p>\n<p>Virtual events often reach far more people than an average local WordCamp, and many also inspire in-person meetups. Watch parties for WordSesh&#8217;s 5th edition are happening in cities across the globe, including Antwerp, Lagos, Minneapolis, Mumbai, and Bar Harbor (Maine).</p>\n<p>&#8220;I’ve always enjoyed seeing people pour in to the event each year, and there was a delightful hum throughout the WordPress community every time a WordSesh took place,&#8221; Richards said.</p>\n<p>WordSesh has been a valuable addition to the virtual event space around WordPress, and attendee numbers at the upcoming event will be important for measuring how much traction the event can retain with its conversion to a paid event. Richards says he is committed to keeping the event alive and hopes to host it two times per year, which is one of the reasons for cutting it back to 12 hours.</p>\n<p>&#8220;I’m already excited for the next event,&#8221; Richards said. &#8220;I’m a little concerned at the moment, only because I don’t expect this one will sell enough tickets to break even, but I’m absolutely committed to hosting WordSesh again in the future. I’m more interested in hosting an incredible event and providing a ton of value to attendees than I am in breaking even this time around.&#8221;</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, 23 Jul 2018 17:41:19 +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: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:74:\"WPTavern: Gutenberg 3.3 Released, Adds Archives and Recent Comments Blocks\";s:7:\"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=82478\";s:7:\"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/gutenberg-3-3-released-adds-archives-and-recent-comments-blocks\";s: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:1354:\"<p><a href=\"https://wordpress.org/plugins/gutenberg/\"></a></p>\n\n<p><a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg 3.3</a> is available and <a href=\"https://make.wordpress.org/core/2018/07/20/whats-new-in-gutenberg-20th-july/\">continues the trend</a> of refining the user experience, user interface, and tools. Two new Widget blocks have been added, Post Archives and Recent Comments.<br /></p>\n\n<img />Archive and Recent Comments Widget Blocks\n\n<p>If your archives span across multiple months and years, you can configure the block to display as a drop-down menu. Otherwise, the list may be too long and look unwieldy on your site.</p>\n\n<p>Video blocks now have attributes users can can configure for Autoplay, Loop, Muted, and display Playback Controls. </p>\n\n<img />Video Block Attributes\n\n<p>There are a number of enhancements in this release that you can view via <a href=\"https://make.wordpress.org/core/2018/07/20/whats-new-in-gutenberg-20th-july/\">the change log</a>. </p>\n\n<p>Considering Gutenberg 3.2 <a href=\"https://make.wordpress.org/core/2018/07/06/whats-new-in-gutenberg-6th-july/\">released earlier this month</a> generally completed the MVP or minimum viable product feature set, users can expect more of these types of releases to tie up loose ends and prepare Gutenberg for merge into WordPress 5.0 later this year.  </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, 21 Jul 2018 01:31:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:94:\"WPTavern: Karachi to Host First WordCamp in Pakistan Following Cancellation of WordCamp Lahore\";s:7:\"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=82062\";s:7:\"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:105:\"https://wptavern.com/karachi-to-host-first-wordcamp-in-pakistan-following-cancellation-of-wordcamp-lahore\";s: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:9479:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/06/Karachi_from_above.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://commons.wikimedia.org/wiki/File:Karachi_from_above.jpg\">Bilalhassan88</a>\n<p><a href=\"https://2018.karachi.wordcamp.org/\" rel=\"noopener noreferrer\" target=\"_blank\">WordCamp Karachi</a> is happening on August 4, 2018, and organizers are expecting more than 400 attendees. Karachi is the largest city in Pakistan with a population of more than 30 million people. Its airport connects the country to other international cities and smaller cities within Pakistan are available by rail or bus. Organizers behind the camp are overcoming a rocky history that has plagued the planning of WordPress-related events in the country for the past several years.</p>\n<p>At the close of 2015, Pakistan was on track to host its first WordCamp in Lahore, building on momentum from the <a href=\"https://wptavern.com/wordpress-community-growing-in-pakistan-500-attend-lahore-meetup\" rel=\"noopener noreferrer\" target=\"_blank\">phenomenal growth of the local meetup group</a>. <a href=\"https://profiles.wordpress.org/xpertone\" rel=\"noopener noreferrer\" target=\"_blank\">Muhammad Kashif</a>, one of the organizers, was averaging 200-500 attendees at meetups and his team&#8217;s application to host <a href=\"https://wptavern.com/wordcamp-pakistan-application-approved-for-2016\" rel=\"noopener noreferrer\" target=\"_blank\">WordCamp Lahore was approved for 2016</a>.</p>\n<p>The meetup events, which attracted young students, developers, freelancers, and entrepreneurs, had grown so large that Kashif was having to close registration ahead of time because they were exceeding the capacity of the venue. Organizers expected 400-500 attendees at the WordCamp before it was cancelled after several delays near the end of the planning stage.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2015/12/lahore-pakistan-wordpress-meetup-featured.jpg?ssl=1\"><img /></a></p>\n<p>After contacting the WordPress Community team for the reason why it was cancelled, I received an official response from representative Hugh Lashbrooke:</p>\n<blockquote><p>Sometimes a WordCamp doesn’t make it all the way from pre-planning to being an actual event — occasionally due to logistical challenges, but other times because of broader concerns. In this case, once the WordCamp planning was underway, some tense dynamics arose within the local team. Everyone worked really hard to reach a positive solution, but we weren’t able to move forward with the event in the end.</p>\n<p>Cancelling an event is never anyone’s preference, to be clear, but it is also a customary response when it’s clear that collaboration isn’t possible in the short term. Local organizers are always encouraged to reapply as soon as the barriers to collaboration have been resolved.</p></blockquote>\n<p>Lashbrooke also cited issues with the camp&#8217;s budget for the venue organizers selected. He said the situation was thoroughly investigated before the camp was cancelled and that they would never take that kind of decision lightly.</p>\n<p>WordCamp Lahore organizers gave me a different report on what happened and were disappointed with the decision from the Community Team.</p>\n<p>&#8220;Representatives from the Foundation cancelled the camp in the last stage based on a complaint from one person out of a community of 3,000 people,&#8221; Kashif said. &#8220;The Foundation made a direct decision of cancellation without giving me a chance for explanation as the Primary Organizer. I suggested the Foundation conduct a survey from the whole Lahore community to know the facts but they had already made the decision to cancel.&#8221;</p>\n<p>Kashif claims there was no disagreement between the organizers, because the community member in question, <a href=\"https://profiles.wordpress.org/mrahmadawais\" rel=\"noopener noreferrer\" target=\"_blank\">Ahmad Awais</a>, was never part of the original organizing team.</p>\n<p>One member of the planning team agreed to speak to me anonymously about why he believes the camp was canceled. He claims that Awais fractured the team after his request to be given a prominent position in the organization was denied.</p>\n<p>&#8220;Ahmad Awais started hijacking Kashif and his team,&#8221; he said. &#8220;He was not a lead organizer at all, but on the planning team. Instead of contributing, Ahmad wanted to speak at every meetup and didn’t spend time with organizing team. He broke the team and started pointing fingers at Kashif and the existing organizing team. He was NOT there until WC Lahore was approved. He joined the team after that.&#8221;</p>\n<p>Multiple leaders from WordCamp Karachi&#8217;s 14-person organizing team, who wish to remain anonymous, have reported that Awais also requested to be named keynote speaker and was unhappy with the team after they told him that speaker decisions do not work like that. Several said they feared his retaliation against the camp, given they previously had no recourse with the Community Team after the experience of WordCamp Lahore getting shut down.</p>\n<p>Awais is not attending WordCamp Karachi and has declined to answer any questions about WordCamp Lahore due to personal reasons.</p>\n<p>Kashif received hundreds of messages from the community after the event in Lahore was cancelled. He had been working since 2013 to bring a WordCamp to the area. He said that while the Community Team was helpful with other queries he had, he was disappointed with how quickly the camp was cancelled.</p>\n<p>&#8220;I worked tirelessly for years to get a WordCamp to Lahore and grew the community from 430 to 2600 in one year but the Foundation didn’t even give me a chance to explain before canceling WC Lahore, Kashif said. &#8220;I am a bit disheartened by that action.&#8221;</p>\n<p>Kashif is now helping with other WordCamps, including Karachi and NYC. He is also willing to work to re-establish a WordCamp Lahore in the future.</p>\n<p>&#8220;Like me there are lots of other WordPress enthusiasts in Pakistan who want to participate in WordCamps but not everyone can do that outside of Pakistan due to financial or visa reasons,&#8221; Kashif said. &#8220;I was accepted as a volunteer in WordCamp Europe but couldn’t join due to visa issues. I have seen so much excitement for WordCamp Karachi in the WordPress community across the whole country. Everyone is willing to help to make it a successful event so that there are more frequent WordCamps in Pakistan. The first one is so important as it will set expectations of outcomes of a WordCamp for people who are new to these events.&#8221;</p>\n<h3>WordCamp Karachi Organizers Aim to Make a Positive Impact on Pakistan</h3>\n<p>WordCamp Karachi organizers are attempting to move past the Pakistani WordPress community&#8217;s checkered history of contention. They are also eager to distance themselves from the conflict that took down WordCamp Lahore.</p>\n<p><a href=\"https://profiles.wordpress.org/usmankhalid/\" rel=\"noopener noreferrer\" target=\"_blank\">Usman Khalid</a>, lead organizer of the camp, said he has put in a lot of effort asking organizers and volunteers to work together, regardless of the credit they will receive, and focus on the community.</p>\n<p>&#8220;I want to spend time on having a positive impact for this country, avoiding any kind of noise,&#8221; Khalid said. &#8220;The Pakistani WordPress community is vibrant in many ways. We have around 6,000 plus WordPressers in our community, with people who are selling their products and services worldwide.&#8221;</p>\n<p>Khalid said there are many users in Karachi, Lahore, Islamabad, Peshawer, and Faisalabad who are doing well with WordPress but are not yet connected to the community or participating in meetups and events. People from all over Pakistan will be attending the event as their first exposure to the WordPress community. Sessions will mostly be conducted in English but a few will be mixed with Urdu, the regional language.</p>\n<p>Khalid has experienced many growing pains in bringing the event to a community that is new to understanding how WordCamps work. In a country that is <a href=\"https://wptavern.com/pakistan-is-blocking-sites-hosted-on-wordpress-com\" rel=\"noopener noreferrer\" target=\"_blank\">notorious for its censorship</a>, WordPress&#8217; mission of democratizing publishing has the potential to change many lives.</p>\n<p>&#8220;Since this is first Wordcamp, many people even don&#8217;t know about it,&#8221; Khalid said. &#8220;Those who know want to be a speaker, or any lead role that can promote them. When we tell them it doesn&#8217;t work like this, they are mostly get annoyed.&#8221;</p>\n<p>Tech publications around Pakistan have not been exposed to WordCamps either. Khalid said several of them have asked for money in order to cover the story of the event, unaware that the purpose of the camps and meetups is not to translate everything into business but to give back to the community.</p>\n<p>&#8220;I am simply working to actually deliver first and prove that this community can create a positive impact,&#8221; Khalid said. &#8220;I am sure after Wordcamp Karachi, the entire community within Pakistan will flourish, regardless of what happened in Lahore.&#8221; He said he hopes the next camps will be even more interesting in the future and that WordCamp Karachi will help to create new jobs and more businesses in Pakistan.</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, 20 Jul 2018 23:14: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:\"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:69:\"Post Status: Why the makers of Ninja Forms are getting into eCommerce\";s:7:\"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=46627\";s:7:\"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://poststatus.com/why-the-makers-of-ninja-forms-are-getting-into-ecommerce/\";s: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:1982:\"<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 co-host Brian Richards.</p>\n<p>In this episode, I bring on James Laws and Kevin Stover &#8212; cofounders of Saturday Drive, the parent company of Ninja Forms &#8212; to discuss why they are entering the world of eCommerce. I found this especially interesting given the market dominance of WooCommerce for general WordPress-based eCommerce needs.</p>\n<p>Saturday Drive purchased Exchange, the plugin initially developed by iThemes and then handed off to A.J. Morris, with the intention of making a play for the eCommerce market, much like they did successfully once already for the somewhat-saturated forms market.</p>\n<p></p>\n<h3>Episode Links</h3>\n<ul>\n<li>Ninja Shop <a href=\"https://wordpress.org/plugins/ninja-shop/\">plugin</a></li>\n<li>Ninja Shop <a href=\"https://ninjashop.site/\">website</a></li>\n<li>James Laws <a href=\"https://wordpress.org/plugins/ninja-shop/\">on Twitter</a></li>\n<li>Kevin Stover <a href=\"https://twitter.com/kstover\">on Twitter</a></li>\n</ul>\n<h3>Sponsor: Sandhills Development</h3>\n<p><a href=\"http://sandhillsdev.com/\">Sandhills Development</a> makes a suite of excellent plugins to power your WordPress website. Whether you need to sell digital downloads, restrict content, create an affiliate program, or manage an events calendar, they&#8217;ve got you covered. Thanks to <a href=\"http://sandhillsdev.com/\">Sandhills</a> for being a Post Status partner.</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, 20 Jul 2018 22:29:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";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:63:\"WPTavern: WordPress 4.9.8 Will Significantly Reduce Memory Leak\";s:7:\"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=82423\";s:7:\"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-4-9-8-will-significantly-reduce-memory-leak\";s: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:2723:\"<p><a href=\"https://make.wordpress.org/core/2018/07/19/wordpress-4-9-8-beta-2/\">WordPress 4.9.8 Beta two</a> recently shipped and although much of the focus will be on the <a href=\"https://wptavern.com/first-look-at-try-gutenberg-prompt-in-wordpress-4-9-8-beta-2\">&#8220;Try Gutenberg&#8221;  call-out</a>, there&#8217;s a patch included that addresses a memory leak that was quite a problem for some users. </p>\n\n<p>When <a href=\"https://wordpress.org/news/2018/07/wordpress-4-9-7-security-and-maintenance-release/\">WordPress 4.9.7 shipped</a>, ﻿the WordPress.org support forums saw an <a href=\"https://wordpress.org/support/topic/wp_is_stream-crashing-the-server/\">increase</a> in <a href=\"https://wordpress.org/support/topic/fatal-error-allowed-memory-size-of-11/\">reports</a> of memory exhausted errors due to the <a href=\"https://developer.wordpress.org/reference/functions/wp_is_stream/\">wp_is_stream function</a>. </p>\n\n<p>The bug is actually in PHP and is related to the <a href=\"http://php.net/manual/en/function.stream-get-wrappers.php\">stream-get-wrappers</a> function. WordPress 4.9.7 increased the number of times it calls the wp_is_stream() function generating the error more often.</p>\n\n<p>After thoughtful conversations within the <a href=\"https://core.trac.wordpress.org/ticket/44532#comment:46\">trac ticket</a>, a patch was created that after further testing, was committed to core. ﻿<a href=\"https://core.trac.wordpress.org/ticket/44532#comment:46\">According to Gary Pendergast</a>, the patch does the following.</p>\n\n<blockquote class=\"wp-block-quote\">\n	<p>Bailing if the path isn&#8217;t a stream. This isn&#8217;t perfect: it&#8217;s still possible to trigger the PHP bug, but it does significantly reduce the chances of the bug being encountered. For many WordPress sites (those that don&#8217;t have plugins that use streams), it reduces the chance to zero.</p>\n</blockquote>\n\n<p>If you encountered memory exhaustion errors after installing or upgrading to WordPress 4.9.7, try <a href=\"https://make.wordpress.org/core/2018/07/19/wordpress-4-9-8-beta-2/\">WordPress 4.9.8 Beta 2</a> to see if it fixes the issue.</p>\n\n<p>Aside from coming up with a solution, <a href=\"https://core.trac.wordpress.org/ticket/44532\">Trac ticket #44532</a> is a bit refreshing to see. In open source, tickets or issues can get bogged down with suggestions, hypothetical scenarios, and bike-shed commentary.</p>\n\n<p>In this instance, the issue was identified and folks from the community along with core contributors worked together in a focused fashion to create a fix in time for the next point release. The ticket is a good example of what it&#8217;s like when open source is firing on all cylinders.  <br /></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, 20 Jul 2018 20:33: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:\"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: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:42:\"Donncha: WP Super Cache and Cookie Banners\";s:7:\"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=89501949\";s:7:\"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/2018/07/20/wp-super-cache-and-cookie-banners/\";s: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:5289:\"<p>More sites use cookie banners now that the GDPR is active but some are finding that their banners are misbehaving once they enable caching.</p>\n\n<p>This is a similar issue to the one that happened to some page counter plugins in the past. The page counter wouldn&#8217;t increment.</p>\n\n<p>When a cookie banner is clicked a cookie is set in the browser so the website knows this visitor has agreed to accept cookies. If the cookie is set then the cookie banner html is not sent to the browser.</p>\n\n<p>I suspect the main issue is that the code that sets and checks if the cookie is set is PHP. Unfortunately because the page is cached then no PHP code is executed, and the cookie banner is displayed because it was originally cached that way.<br /></p>\n\n<p>Since WP Super Cache only knows about certain WordPress cookies it assumes everyone who doesn&#8217;t have those cookies is a first time &#8220;anonymous&#8221; visitor. It doesn&#8217;t know about your cookie banner cookie.<br /></p>\n\n<p>You have two options:</p>\n\n<ol>\n	<li>Rewrite your cookie banner so it&#8217;s completely in Javascript. Do the cookie detection in Javascript and also set the cookie in Javascript. If the cookie banner has been clicked then you need to trigger an action, and other Javascript that is hooked on to that trigger will run and load the tracking cookies.</li>\n	<li>Modify WP Super Cache so it knows about the cookie your cookie banner uses. Caching won&#8217;t work quite as well as before as it&#8217;ll be split between visitors who have clicked the cookie banner and those that haven&#8217;t. One cached file will display the cookie banner, and the other will not but it will have ad tracking Javascript.<br /></li>\n</ol>\n\n<p>Using Javascript completely is a better solution because it runs in the browser on every page load but that might not be possible every time.</p>\n\n<p>Otherwise, use PHP to get WP Super Cache to play nicely with your existing code:</p>\n\n<ol>\n	<li>You&#8217;ll need to write a <a href=\"https://odd.blog/2017/10/25/writing-wp-super-cache-plugins/\">WP Super Cache plugin</a>.</li>\n	<li>You need to hook into the wp_cache_get_cookies_values cacheaction and add the value of the cookie banner cookie to the end of that string.</li>\n	<li>Caching can only be performed by <em>simple</em> caching now, unless you&#8217;re willing to edit mod_rewrite rules in your .htaccess file.</li>\n</ol>\n\n<p>Something like this will do. Make sure you note the warning about <code>$wp_cache_plugins_dir</code> in the link above about writing these plugins.<br /></p>\n\n<pre class=\"wp-block-code\"><code>function add_cookie_banner_to_cache_cookie( $string ) {\n    if ( isset( $_COOKIE[\'cookie_banner\'] ) ) {\n        $string .= \'cb,\';\n    }\n    return $string\n}\nadd_cacheaction( \'wp_cache_get_cookies_values\', \'add_cookie_banner_to_cache_cookie\' );</code></pre>\n\n<p>Substitute the name of the cookie for your cookie name, change the name of the function, and the text it adds to the string. There is an intentional PHP fatal error in the code above to discourage copy/pasting.<br /></p>\n\n<p>Your cookie banner plugin could automate setting this up, but it may have unforeseen consequences if not done correctly. It should check if <code>$wp_cache_plugins_dir</code> is set already, and use that location, otherwise it will have to make a directory and update the WP Super Cache configuration, where ABC is the new location for the plugins.<br /></p>\n\n<p><code>wp_cache_setting( \'wp_cache_plugins_dir\', ABSPATH . \'wp-content/ABC\' );﻿</code></p>\n\n<p>The new code can be copied into a file in that directory. The files in the original WP Super Cache plugins directory (found at <code>WPCACHEHOME . \'plugins\'</code>) should be copied into that directory too and a warning shown to the user. They may need to set up one of those plugins again.<br /></p>\n\n<p>The reason it is this convoluted is because this code will run before all of WordPress loads. You can&#8217;t rely on blog options or most of the nice configuration tools WordPress provides.<br /></p>\n\n<p>When your plugin is uninstalled it should of course restore the plugins directory to the way it was before.</p>\n\n<p>For future reference, since cookie banners will hopefully not be around forever, here&#8217;s what they looked like in the deep, distant past of 2018. <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n<img />\n\n<img />\n	The LA Times just gave up and don&#8217;t show anything to EU visitors.\n\n\n<img />\n\n<img />\n\n<img />\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"https://odd.blog/2003/08/12/linuxie-and-free-software-projects/\" rel=\"bookmark\" title=\"Permanent Link: Linux.ie and free software projects\">Linux.ie and free software projects</a></li><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/2008/03/06/please-sir-can-i-have-more/\" rel=\"bookmark\" title=\"Permanent Link: Please sir, can I have more?\">Please sir, can I have more?</a></li></ul></p>\n<p><a href=\"https://odd.blog/2018/07/20/wp-super-cache-and-cookie-banners/\" rel=\"nofollow\">Source</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 Jul 2018 13:33: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: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: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:76:\"WPTavern: First Look at “Try Gutenberg” Prompt in WordPress 4.9.8 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=82425\";s:7:\"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/first-look-at-try-gutenberg-prompt-in-wordpress-4-9-8-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3384:\"<p><a href=\"https://make.wordpress.org/core/2018/07/19/wordpress-4-9-8-beta-2/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress 4.9.8 Beta 2</a> was released today, featuring the new &#8220;<a href=\"https://core.trac.wordpress.org/ticket/41316\" rel=\"noopener noreferrer\" target=\"_blank\">Try Gutenberg</a>&#8221; prompt that will appear in user dashboards when the official release drops at the end of the month.</p>\n<p>The prompt invites users to install Gutenberg if they want to try the new editor or install the <a href=\"https://wordpress.org/plugins/classic-editor/\" rel=\"noopener noreferrer\" target=\"_blank\">Classic Editor</a> to keep using the current editor until they are ready to make the change. WordPress contributors discussed variations on the design and wording of the callout and finally settled on what you see in 4.9.8 Beta 2.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/07/Screen-Shot-2018-07-19-at-4.02.56-PM.png?ssl=1\"><img /></a></p>\n<p>Even if users don&#8217;t get involved in Gutenberg testing, the callout serves to inform them that the new editor will be enabled by default in the next major release of WordPress. It includes a link to the <a href=\"https://wordpress.org/gutenberg/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg information page</a> so users can learn more about the project.</p>\n<p>Contributors agreed that they wanted to clearly communicate three important points in the callout, as per designer @kjellr&#8217;s <a href=\"https://core.trac.wordpress.org/ticket/41316#comment:148\" rel=\"noopener noreferrer\" target=\"_blank\">suggestions on trac</a>:</p>\n<ol>\n<li>Gutenberg is coming in the next major release.</li>\n<li>If you’re worried about compatibility, there’s a plugin to help ease the transition.</li>\n<li>The plugin lets you use the editor you’re used to until you’re ready to switch.</li>\n</ol>\n<p>The prompt is clearly geared towards encouraging users to test Gutenberg, as that section has a more prominent, colored button. If your clients&#8217; installations are not ready for users to act on the &#8220;Try Gutenberg&#8221; prompt, now is the time to install a plugin that will disable it. Clients with free-range of the WordPress admin, in sites that are running Gutenberg-compatible extensions, are better candidates for testing the new editor.</p>\n<p>The <a href=\"https://wptavern.com/new-classic-editor-addon-plugin-disables-the-try-gutenberg-prompt-coming-in-wordpress-4-9-8\" rel=\"noopener noreferrer\" target=\"_blank\">Classic Editor Addon</a> is one option that will suppress the prompt and automatically suppress Gutenberg when it ships in WordPress 5.0. It was also recently updated to auto-install the Classic Editor plugin as a dependency so users don&#8217;t have to install two plugins as part of the process.</p>\n<p>A release candidate is slated for July 24, and the official 4.9.8 release is scheduled for July 31st. The <a href=\"https://wordpress.org/plugins/gutenberg/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg plugin</a> is currently sitting at 10,000+ active installations and the <a href=\"https://wordpress.org/plugins/classic-editor/\" rel=\"noopener noreferrer\" target=\"_blank\">Classic Editor</a> at 5,000+. After 4.9.8 is released, changes in these numbers will demonstrate how WordPress users across the globe are responding to the call for testing.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Jul 2018 21:48: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: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: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:74:\"WPTavern: Insight Into How North Carolina State Is Preparing for Gutenberg\";s:7:\"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=82410\";s:7:\"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/insight-into-how-north-carolina-state-is-preparing-for-gutenberg\";s: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:1838:\"<p>Jennifer McFarland, the web services coordinator for the North Carolina State Office of Information Technology (OIT), recently <a href=\"http://www.technicianonline.com/news/article_878f4bb0-7d8f-11e8-a5ac-4bf05738fe93.html\">did an interview</a> with <a href=\"http://www.technicianonline.com/\">Technician</a>, the official student newspaper of NC State University.</p>\n\n<p>Since Gutenberg&#8217;s announcement in December of 2017, McFarland has published a <a href=\"https://design.oit.ncsu.edu/tag/gutenberg/\">series of articles</a> on the NC State Office of Information Technology website educating staff and students on what to expect.</p>\n\n<p>McFarland was asked how the team plans to help staff and students after Gutenberg ships with WordPress.</p>\n\n<p>&#8220;A couple of times a year, we go and speak at various classes, professors will have us come out and do demos of WordPress,&#8221; McFarland told the Technician. </p>\n\n<p>&#8220;We are expecting an uptake of people requesting us to come out and do a demo of WordPress or something like that, but generally our plan right now, at least for students, is mostly just offer the sort of self-help, like the video tutorials and things like that, and we figure that the students will mostly try and solve their own problems.&#8221;</p>\n\n<p>Speaking of McFarland, she and Brian DeConinck <a href=\"https://2018.wpcampus.org/schedule/gutenready-for-the-gutenpocalypse/\">presented on Gutenberg</a> at WPCampus 2018. The videos from the event are still being processed but we&#8217;ll add a link to the presentation once it becomes available. </p>\n\n<p>It&#8217;s pretty cool to see people in McFarland&#8217;s position in higher education already have a firm grasp of Gutenberg and doing what they can to ease the transition for staff and students</p>\n\n<p></p>\n\n<p><br /></p><br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Jul 2018 00:27:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:83:\"WPTavern: Meet Bernhard Kau, Local Lead Organizer of WordCamp Europe 2019 in Berlin\";s:7:\"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=82335\";s:7:\"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/meet-bernhard-kau-local-lead-organizer-of-wordcamp-europe-2019-in-berlin\";s: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:4788:\"<p><a href=\"https://twitter.com/2ndkauboy?lang=en\" rel=\"noopener noreferrer\" target=\"_blank\">Bernhard Kau</a>, a WordPress developer, meetup organizer, and four-time organizer of WordCamp Berlin, is the local lead organizer for the next WordCamp Europe. Kau will join Milan Ivanović, the global lead, at the helm of WordCamp Europe in Berlin next June.</p>\n<p>Kau submitted an application with his team to host WCEU and won out over a competing application from the WordPress community in Barcelona. The selection team cited Berlin&#8217;s accessibility, reasonable prices, and its strong community as the final deciding factors.</p>\n<p>Berlin&#8217;s monthly WordPress meetups have 1,300 members. The community also holds dedicated meetups for beginners, developers, and women in WordPress. Five WordCamps have been organized in Berlin since 2010.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Attending <a href=\"https://twitter.com/hashtag/WPBerlin?src=hash&ref_src=twsrc%5Etfw\">#WPBerlin</a> and they are already preparing WordPress community for next <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a> <a href=\"https://t.co/MWLwTZ4hrf\">pic.twitter.com/MWLwTZ4hrf</a></p>\n<p>&mdash; Milan Ivanović (@lanche86) <a href=\"https://twitter.com/lanche86/status/1012396086944813057?ref_src=twsrc%5Etfw\">June 28, 2018</a></p></blockquote>\n<p></p>\n<p>&#8220;Compared to other communities in Europe, we are a community that is very likely to travel to other cities to attend meetups and other WordCamps,&#8221; Kau said. &#8220;We usually only have one or two WordCamps per year in Germany but then usually all the German community members travel to that city to attend the WordCamp. Whereas in Spain, for example, they had 11 WordCamps this year that are more local and smaller. As a German community we are more used to traveling to a central place and meeting there.&#8221;</p>\n<h3>What to Expect at WCEU in Berlin: A Diverse Community, More Workshops, and a Unique After Party</h3>\n<p>The <a href=\"https://www.estrel.com/en/home.html\" rel=\"noopener noreferrer\" target=\"_blank\">Estrel Hotel and Congress Center</a> will host the entire event, including both conference days, the contributor day, and the after party. Although the venue has a max capacity of 12,000 people, Kau said organizers are planning for 2,500 &#8211; 3,000 attendees. The local team is excited to introduce the European WordPress community to their home city.</p>\n<p>&#8220;Berlin is one of the most diverse cities in Europe,&#8221; Kau said. &#8220;When I prepared the application, I figured out that there are people from 191 countries living in Berlin. It&#8217;s a very international, very diverse city, so you can be just as you are and feel quite comfortable and welcome in Berlin.&#8221;</p>\n<p>Kau said organizers intend to continue with workshops as a part of the event in 2019 but they are planning to make the signup experience more efficient.</p>\n<p>&#8220;This was the first year we tried workshops,&#8221; Kau said. &#8220;We had three workshop tracks and workshops of 60 minutes, 90 minutes, and three hours. We are not sure how many workshops we want to have in Berlin. The idea was new but turned out quite well. There were workshops with many people waiting to get in and from what I&#8217;ve heard it was quite good.&#8221;</p>\n<p>Kau said he wants to improve the process for workshops, because there was no easy way for attendees to sign up and managing waiting lists was a lot of manual work for the content team. This is one bottleneck from the most recent WCEU experience that he hopes to rectify.</p>\n<p>&#8220;There is also something special planned but I don&#8217;t want to spoil it,&#8221; Kau said. &#8220;It&#8217;s going to be a very unique after party to say the least.&#8221; Although Berlin is renowned for its legendary nightlife, Kau said he doesn&#8217;t anticipate the party lasting all night.</p>\n<p>&#8220;We&#8217;re probably not going to make it Berlin-typical until 10 in the morning but it&#8217;s going to be a bit longer than maybe here [Belgrade] or in Paris where people were kicked at at 3:30,&#8221; he said.</p>\n<p>The <a href=\"https://2019.europe.wordcamp.org/2018/06/16/call-wordcamp-europe-2019-organizers/\" rel=\"noopener noreferrer\" target=\"_blank\">call for applications for organizers</a> is still open. Within 24 hours of announcing Berlin as the next host city, the team had already <a href=\"https://twitter.com/lanche86/status/1008419688009863169\" rel=\"noopener noreferrer\" target=\"_blank\">received 27 applications</a>. The application window closes July 31, 2018.</p>\n<p>Check out the full interview below to learn more about the German WordPress community and what they have planned for WCEU 2019.</p>\n<p></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, 18 Jul 2018 20:18:28 +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:43:\"WPTavern: WP-CLI Hack Day Friday, July 20th\";s:7:\"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=82269\";s:7:\"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://wptavern.com/wp-cli-hack-day-friday-july-20th\";s: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:1541:\"<p><a href=\"https://wp-cli.org/\">WP-CLI</a> or WordPress Command Line Interface has become an integral tool for developers to launch and manage sites. To encourage new contributors to the project, Alain Schlesser is organizing the first <a href=\"https://make.wordpress.org/cli/2018/07/04/wp-cli-hack-day/\">WP-CLI Hack Day</a>, Friday, July 20th beginning at 08:00 CEST.</p>\n\n<p>Schlesser and other contributors will be available in the <a href=\"https://wordpress.slack.com/messages/C02RP4T41\">WP-CLI Slack channel</a> all day and on the project&#8217;s <a href=\"https://github.com/wp-cli/\">GitHub site</a> to answer questions and help people contribute to the project. </p>\n\n<p>From 16:00-18:00 CEST, Schlesser will host a video call that&#8217;s open to everyone where people can join in, discuss issues, and visually work through pull requests. The goal is to reach 20 pull requests that have been merged during the event. A post on <a href=\"https://make.wordpress.org/cli/\">Make/CLI  blog</a> will be published once WP-CLI Hack Day concludes summarizing any progress that was made.</p>\n\n<p>To prepare prospecting contributors for the event, Schlesser has published a <a href=\"https://make.wordpress.org/cli/2018/07/14/contributing-to-wp-cli/\">detailed guide</a> on how to contribute to WP-CLI.</p>\n\n<p>Folks can follow along on Twitter using the hashtag <a href=\"https://twitter.com/hashtag/hackwpcli?src=hash\">#hackwpcli</a>. If Hack CLI Day is successful, more events will likely be created in the future to cover more time zones. </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, 18 Jul 2018 16:47: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:\"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:39;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:30:\"HeroPress: Making A Safe Place\";s:7:\"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=2589\";s:7:\"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:105:\"https://heropress.com/making-a-safe-place/#utm_source=rss&utm_medium=rss&utm_campaign=making-a-safe-place\";s: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:2907:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2017/07/071917-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The WordPress community is, slowly but surely, helping me get rid of my ingrown fear of the unknown, of others.\" /><p>Being a remote worker makes it easy to hide from a world that you find scary or dangerous. If you&#8217;re never in the presence of other people they can&#8217;t hit you. Retreat becomes so easy. Marius Jensen from Sola, Norway grew up in a society that did not care for him, and made him want to hide from the world forever.</p>\n<p>The WordPress community gave him a safe place to talk to people online, and after time, in person. WordCamps became a place of safety and compassion. This isn&#8217;t the case for all people, but it is for many people, in many places. Check out Marius&#8217; essay from last July, about finding a safe place.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/becoming-myself-again/\">Becoming Myself Again</a></p></blockquote>\n<p></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: Making A Safe Place\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Making%20A%20Safe%20Place&via=heropress&url=https%3A%2F%2Fheropress.com%2Fmaking-a-safe-place%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Making A Safe Place\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fmaking-a-safe-place%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%2Fmaking-a-safe-place%2F&title=Making+A+Safe+Place\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Making A Safe Place\"></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/making-a-safe-place/&media=https://heropress.com/wp-content/uploads/2017/07/071917-150x150.jpg&description=Making A Safe Place\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Making A Safe Place\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/making-a-safe-place/\" title=\"Making A Safe Place\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/making-a-safe-place/\">Making A Safe Place</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, 18 Jul 2018 08:00: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:\"\";}}}}}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:42:\"WPTavern: iThemes Enters the Hosting Space\";s:7:\"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=82379\";s:7:\"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://wptavern.com/ithemes-enters-the-hosting-space\";s: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:3428:\"<p>iThemes is <a href=\"https://ithemes.com/wordpress-hosting\">getting into the hosting business</a> after <a href=\"https://ithemes.com/2018/07/17/announcing-ithemes-hosting/\">launching</a> three plans that take advantage of its relationship with Liquid Web. The plans are finely tuned around the company&#8217;s products and come with free SSL certificates. <br /></p>\n\n<p>I reached out to Cory Miller, Founder of iThemes to figure out why they&#8217;ve entered the hosting space, what it means to be able to control the user experience of their products from the top-down, and how their plans compare to those from hosts that offer Jetpack Premium. </p>\n\n<h2>Interview With Cory Miller<br /></h2>\n\n<p><strong>What does it mean for you and iThemes to be able to control the user experience from the top-down?</strong></p>\n\n<p>In short, it means a better overall experience for our customers. For more than 10 years, we’ve dealt with most of the hosts, especially the ones offering catered WordPress offerings, and it has been a terribly frustrating experience for us trying to troubleshoot problems and help our mutual customers. </p>\n\n<p>Additionally, we’ve long said you have to have two things to be our customer: WordPress and web hosting. Now we install WordPress for you, along with SSL, essentially with a click on our own hosting. </p>\n\n<p><strong>How would you compare iThemes hosting packages to hosts that offer Jetpack Premium services as part of their plans?</strong></p>\n\n<p>The thing that sticks out for me is having everything under one brand and team. But we think using iThemes Sync Pro as the hosting control panel gives us a significant edge for our customers to do more with their WP sites, in particular, our reporting features in Sync Pro. </p>\n\n<p>Now our customers can get WP backups, security, site management and in-depth reporting all from one dashboard, along with their hosting. With our Business plan, they get BackupBuddy, our WordPress backup plugin; iThemes Security Pro, our WordPress security plugin &amp; iThemes Sync Pro all in one. Plus they get an awesome team of WordPress pros for support if they need help or have any issues.</p>\n\n<p><strong>What are you most looking forward too offering these hosting packages specifically tuned for iThemes products and WordPress?</strong></p>\n\n<p>The actual implementation of the vision of offering the key essentials we think people want and need, along with a roadmap to do more, from our team at iThemes. It was one of the motivators for joining the Liquid Web family — the ability to finally do what we’ve always wanted to do for our customers, offering a more complete experience for them, from us. </p>\n\n<p><strong>Were there any challenges that you overcame when putting these packages together?</strong></p>\n\n<p>The main one that comes to mind is trying to ensure we offer what people actually want and will buy. But there was several months of hard work by our team and others to get this launched. Some long nights to pull all the pieces together in order to do this, with many more to come.</p>\n\n<p>Prices range from $15 per month to $25 per month billed on an annual basis. New customers can take advantage of a coupon code <a href=\"https://ithemes.com/2018/07/17/announcing-ithemes-hosting/\">on the site</a> to purchase the Business plan, normally $25 for $15. </p>\n\n<p></p>\n\n<p><strong></strong></p>\n\n<p><strong></strong> </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, 17 Jul 2018 23:19:19 +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: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:92:\"WPTavern: WooCommerce Custom Product Tables Plugin Now in Beta, Boasts 30% Faster Page Loads\";s:7:\"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=82363\";s:7:\"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:101:\"https://wptavern.com/woocommerce-custom-product-tables-plugin-now-in-beta-boasts-30-faster-page-loads\";s: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:3615:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/07/woocommerce-logo.jpg?ssl=1\"><img /></a></p>\n<p>WooCommerce is celebrating <a href=\"https://woocommerce.com/birthday-sale/\" rel=\"noopener noreferrer\" target=\"_blank\">10th years of Woo</a> this week. Over the past several years WooCommerce has grown to become a dominant player among e-commerce solutions on the web. <a href=\"https://trends.builtwith.com/shop\" rel=\"noopener noreferrer\" target=\"_blank\">E-commerce Usage Distribution stats from BuiltWith</a> currently rank WooCommerce as the most commonly used platform for stores in the top 1 million sites.</p>\n<p>Performance and scalability were the main focuses for the WooCommerce development team last year and these issues continue to be top priority. <a href=\"https://wptavern.com/woocommerce-3-0-brings-major-improvements-to-product-gallery-introduces-crud-classes-and-a-new-cli\" rel=\"noopener noreferrer\" target=\"_blank\">Version 3.0</a>, released in April 2017, included significant performance improvements when WooCommerce switched from post meta to taxonomies for features like product visibility, featured products, and out of stock products. It also introduced CRUD (Create, Read, Update, Delete) classes for developers, making it easier to write and retrieve data from the database with less code.</p>\n<p>Building on the CRUD work done last year, WooCommerce has just <a href=\"https://woocommerce.wordpress.com/2018/07/17/woocommerce-custom-product-tables-beta/\" rel=\"noopener noreferrer\" target=\"_blank\">announced</a> the beta of its new Custom Products Tables plugin. It replaces the WooCommerce product Data Store with new, dedicated product tables for significant reductions in page load time across shop, checkout, and admin pages.</p>\n<p>&#8220;The results, so far, have been great – with improvements of up to 30% on page load times!&#8221; WooCommerce engineer Gerhard Potgieter said. &#8220;Checkout, arguably the most important part of the store experience, has seen the biggest performance gains.&#8221;</p>\n<p>The WooCommerce development team tested the plugin&#8217;s impact on performance using two identical stores running the <a href=\"https://woocommerce.com/storefront/\" rel=\"noopener noreferrer\" target=\"_blank\">Storefront</a> theme and no additional plugins. They created a data set of 500 products using the <a href=\"https://github.com/woocommerce/wc-smooth-generator\" rel=\"noopener noreferrer\" target=\"_blank\">WooCommerce Smooth Generator</a>, and both stores had 70,000 orders in the database and meta data in the range of 1.4 million rows.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/07/woocommerce-load-times.png?ssl=1\"><img /></a>image credit: <a href=\"https://woocommerce.wordpress.com/2018/07/17/woocommerce-custom-product-tables-beta/\">WooCommerce Development Blog</a>\n<p>The Custom Product Tables plugin is not ready for use in production but developers can <a href=\"https://github.com/woocommerce/woocommerce-product-tables-feature-plugin/releases\" rel=\"noopener noreferrer\" target=\"_blank\">download version 1</a> and test it against <a href=\"https://github.com/woocommerce/woocommerce/\" rel=\"noopener noreferrer\" target=\"_blank\">WooCommerce 3.5 dev</a> (switch to the master branch).</p>\n<p>Getting the plugin rolled into WooCommerce core is an exciting update on the horizon, as faster page loads generally improve conversion for store owners. WooCommerce engineers anticipate releasing the plugin on WordPress.org as the next step. They plan to include the new product tables in a major version update early next year.</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, 17 Jul 2018 20:20: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:\"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: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:76:\"WPTavern: New WordPress Feature Plugin Adds Support for Progressive Web Apps\";s:7:\"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=82311\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wptavern.com/new-wordpress-feature-plugin-adds-support-for-progressive-web-apps\";s: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:5800:\"<p>WordPress contributors are working on getting support for Progressive Web Apps (PWA) into core. A new <a href=\"https://wordpress.org/plugins/pwa/\" rel=\"noopener noreferrer\" target=\"_blank\">PWA feature plugin</a> is now available on WordPress.org, spearheaded by the teams at XWP, Google, and Automattic.</p>\n<p>Progressive Web Apps are applications that run on the web but provide a speedy app-like experience inside a mobile browser. Google describes them as having the following three qualities:</p>\n<ul>\n<li>Reliable – Load instantly and never show the downasaur, even in uncertain network conditions</li>\n<li>Fast – Respond quickly to user interactions with silky smooth animations and no janky scrolling</li>\n<li>Engaging – Feel like a natural app on the device, with an immersive user experience</li>\n</ul>\n<p>The plugin adds support for technologies that PWAs require, including Service Workers, a Web App Manifest, and HTTPS. These technologies support functions like background syncing, offline content, push notifications, mobile home screen icon, and other PWA features.</p>\n<p>XWP CTO Weston Ruter said the purpose of the feature plugin is to curate PWA capabilities for proposed merging into core. The idea is to merge them piece by piece. Core tickets are already in process for adding support for <a href=\"https://core.trac.wordpress.org/ticket/43328\" rel=\"noopener noreferrer\" target=\"_blank\">web app manifests</a> and <a href=\"https://core.trac.wordpress.org/ticket/36995\" rel=\"noopener noreferrer\" target=\"_blank\">support for service workers</a>, as well as bringing <a href=\"https://core.trac.wordpress.org/ticket/28521\" rel=\"noopener noreferrer\" target=\"_blank\">improvements to HTTPS</a>.</p>\n<p>&#8220;This PWA feature plugin is intended to equip and facilitate other plugins which implement PWA features,&#8221; Ruter <a href=\"https://weston.ruter.net/2018/07/12/wceu-2018-recap-amp-and-pwa/\" rel=\"noopener noreferrer\" target=\"_blank\">said</a>. &#8220;It’s not intended to negate any existing plugins with these features, but rather to allow such plugins (and themes) to work together seamlessly and expand upon them.&#8221;</p>\n<p>The first release of the plugin on WordPress.org (v0.1.0) adds support for web app manifests and initial support for allowing theme and plugin developers to register scripts for service workers via <code>wp_register_service_worker()</code>. It also includes an API for detecting whether HTTPS is available.</p>\n<p>&#8220;A next step for service workers in the PWA feature plugin is to integrate <a href=\"https://developers.google.com/web/tools/workbox/\" rel=\"noopener noreferrer\" target=\"_blank\">Workbox</a> to provide a declarative WordPress PHP abstraction for managing the caching strategies for routes, with <a href=\"https://github.com/xwp/pwa-wp/issues/5\" rel=\"noopener noreferrer\" target=\"_blank\">support for detecting conflicts</a>,&#8221; Ruter said. Anyone who is interested to contribute to PWA support for WordPress can check out the discussions and <a href=\"https://github.com/xwp/pwa-wp/\" rel=\"noopener noreferrer\" target=\"_blank\">plugin on GitHub</a>.</p>\n<p>In the past, app-like experiences were only available for sites and services that had their own native mobile apps, but native apps can be costly to develop and maintain. Progressive web apps use the greater web as their platform and are quick to spin up. They make content easier to access on mobile even without an internet connection. It&#8217;s also far easier to tap a home screen icon than to enter a URL on mobile, and this makes users more likely to engage with their favorite sites.</p>\n<p><a href=\"https://www.pwastats.com/\" rel=\"noopener noreferrer\" target=\"_blank\">PWA Stats</a> is a site that features case studies of progressive web apps that have significantly increased performance, engagement, and conversion. A few compelling examples include:</p>\n<ul>\n<li>Tinder <a href=\"https://medium.com/@addyosmani/a-tinder-progressive-web-app-performance-case-study-78919d98ece0\" rel=\"noopener noreferrer\" target=\"_blank\">cut load times from 11.91 seconds to 4.69 seconds</a> with their new PWA. The PWA is 90% smaller than Tinder’s native Android app. User engagement is up across the board on the PWA.</li>\n<li>Grand Velas Riviera Maya resort <a href=\"https://blog.milestoneinternet.com/industry-news/milestone-boosts-website-conversions-by-53-with-progressive-web-apps-pwa/\" rel=\"noopener noreferrer\" target=\"_blank\">increased its Black Friday conversion rate by 53%</a> due to its progressive web app’s speed and notifications.</li>\n<li>Trivago saw an increase of 150% for people who add its PWA to the home screen. Increased engagement led to a <a href=\"https://www.thinkwithgoogle.com/intl/en-gb/consumer-insights/trivago-embrace-progressive-web-apps-as-the-future-of-mobile/\" rel=\"noopener noreferrer\" target=\"_blank\">97% increase in clickouts to hotel offers</a>. Users who go offline while browsing can continue to access the site and 67% continue to browse the site when they come back online.\n<li>Pinterest rebuilt their mobile site as a PWA and <a href=\"https://medium.com/dev-channel/a-pinterest-progressive-web-app-performance-case-study-3bd6ed2e6154\" rel=\"noopener noreferrer\" target=\"_blank\">core engagements increased by 60%</a>. They also saw a 44% increase in user-generated ad revenue and time spent on the site has increased by 40%.</li>\n</ul>\n<p>PWA support in WordPress will enable the plugin and theme ecosystems to work together in providing site owners with more engaging ways to connect with their visitors. Once the market starts building on core support, site owners should soon be able to offer better experiences for mobile users without having to become experts in the technologies that power progressive web apps.</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, 17 Jul 2018 00:16: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: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:37:\"Dev Blog: Quarterly Updates | Q2 2018\";s:7:\"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=6140\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2018/07/quarterly-updates-q2-2018/\";s: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:15621:\"<p><em>To keep everyone aware of big projects and efforts across WordPress contributor teams, I&#8217;ve reached out to each team&#8217;s <a href=\"https://make.wordpress.org/updates/team-reps/\">listed representatives</a>. I asked each of them to share their Top Priority (and when they hope for it to be completed), as well as their biggest Wins and Worries. Have questions? I&#8217;ve included a link to each team&#8217;s site in the headings.﻿</em></p>\n\n<h2><a href=\"https://make.wordpress.org/accessibility/\">Accessibility</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\"https://profiles.wordpress.org/rianrietveld/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rianrietveld</a>, <a href=\"https://profiles.wordpress.org/joedolson/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>joedolson</a>, <a href=\"https://profiles.wordpress.org/afercia/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>afercia</a></li>\n	<li><strong>Priority</strong>: Working to make sure that Gutenberg is reasonably accessible prior to merge. ETA is before 5.0</li>\n	<li><strong>Struggle</strong>: Lack of developers and accessibility experts to help test and code the milestone issues. <em>The team is doing outreach to help solve this problem.</em></li>\n	<li><strong>Big Win</strong>: Interest from companies like The Paciello Group and Tenon.io to help out with Gutenberg code review and testing tools.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/cli/\">CLI</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: @danielbachhuber, <a href=\"https://profiles.wordpress.org/schlessera/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>schlessera</a></li>\n	<li><strong>Priority</strong>: Very first global <a href=\"https://make.wordpress.org/cli/2018/07/04/wp-cli-hack-day/\">Hack Day</a> is coming up July 20. Version 2.0.0 is still in progress (new <a href=\"https://github.com/wp-cli/wp-cli/issues/4752\">ETA</a> is end of July).</li>\n	<li><strong>Struggle</strong>: The team continues to need new contributors. The current team is tiny but tough.</li>\n	<li><strong>Big Win</strong>: WP-CLI is currently one of the project&#8217;s four main focuses, as mentioned in the Summer Update at WordCamp Europe.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/community/\">Community</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\"https://profiles.wordpress.org/francina/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>francina</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>hlashbrooke</a></li>\n	<li><strong>Priority</strong>: Focusing on smoothing out the processes in our community management by building up our team of volunteers and establishing what tools we need to keep things running well. ETA is ongoing.</li>\n	<li><strong>Struggle</strong>: Our two biggest struggles at the moment are tracking what we need to get done, and making final decisions on things. <em>There is current work on the tools available to assist with tracking progress.﻿</em></li>\n	<li><strong>Big Win</strong>: After making a concerted effort to get more contributors on the Community Team, we now have a much larger group of volunteers working as deputies and WordCamp mentors</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/core/\">Core</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\"https://profiles.wordpress.org/jeffpaul/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jeffpaul</a></li>\n	<li><strong>Priority</strong>: Following the <a href=\"https://wordpress.tv/2018/07/04/matt-mullenweg-a-summertime-update-keynote-and-qa/\">WordCamp Europe summer update</a> ﻿(and the companion post <a href=\"https://wordpress.org/news/2018/07/update-on-gutenberg/\">here</a>), the team is getting Gutenberg (the new WordPress editing experience) into a strong state for the 5.0 release. Potential ETA as soon as August.</li>\n	<li><strong>Struggle</strong>: Coordinating momentum and direction as we start seeing more contributors offering their time. Still working our way through open issues. <em>﻿The team is starting multiple bug scrubs each week to work through these more quickly and transparently.</em></li>\n	<li><strong>Big Win</strong>: Had a <a href=\"https://wordpress.org/news/2018/05/wordpress-4-9-6-privacy-and-maintenance-release/\">sizable release in 4.9.6</a> which featured major updates around privacy tools and functionality in Core.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/design/\">Design</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\"https://profiles.wordpress.org/melchoyce/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>melchoyce</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>karmatosed</a>, <a href=\"https://profiles.wordpress.org/boemedia/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>boemedia</a>, <a href=\"https://profiles.wordpress.org/joshuawold/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>joshuawold</a>, <a href=\"https://profiles.wordpress.org/mizejewski/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>mizejewski</a></li>\n	<li><strong>Priority</strong>: Better on-boarding of new contributors, especially creating better documentation. ETA is end of July.</li>\n	<li><strong>Struggle</strong>: It&#8217;s hard to identify reasonably small tasks for first-time contributors.</li>\n	<li><strong>Big Win</strong>: The team is much more organized now which has helped clear out the design backlog, bring in new contributors, and also keep current contributors coming back. <em>Bonus: Joshua Wold will co-lead the upcoming release.</em></li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/docs/\">Documentation</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\"https://profiles.wordpress.org/kenshino/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>kenshino</a><br /></li>\n	<li><strong>Priority</strong>: Opening up the work on <a href=\"https://make.wordpress.org/docs/2018/02/26/state-of-helphub-february-2018/\">HelpHub</a> to new contributors and easing the onboarding process. No ETA.<br /></li>\n	<li><strong>Struggle</strong>: Some blockers with making sure the code and database can be ready to launch on https://wordpress.org/support/<br /></li>\n	<li><strong>Big Win</strong>: The <a href=\"https://wp-helphub.com/\">first phase of HelpHub</a> creation is complete, which means content updates (current info, more readable, easier discovery), internal search, design improvements, and REST API endpoints.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/hosting/\">Hosting</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\"https://profiles.wordpress.org/mikeschroder/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>mikeschroder</a>, <a href=\"https://profiles.wordpress.org/jadonn/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jadonn</a></li>\n	<li><strong>Priority</strong>: Preparing hosts for supporting Gutenberg, especially support questions they&#8217;re likely to see when the &#8220;Try Gutenberg&#8221; callout is released. ETA July 31st, then before WordPress 5.0<br /><strong></strong></li>\n	<li><strong>Struggle</strong>: Most contributions are still made a by a small team of volunteers. Seeing a few more people join, but progress is slow.<br /><strong></strong></li>\n	<li><strong>﻿Big Win</strong>: New team members and hosting companies have joined the #hosting-community team and have started contributing.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/marketing/\">Marketing</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\"https://profiles.wordpress.org/bridgetwillard/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>bridgetwillard</a></li>\n	<li><strong>Priority</strong>: Continuing to write and publish case studies from the community. ETA is ongoing.</li>\n	<li><strong>Struggle</strong>: No current team struggles.</li>\n	<li><strong>Big Win</strong>: Wrote and designed a short <a href=\"https://make.wordpress.org/marketing/2018/04/24/contributor-day-onboarding-pdf/\">Contributor Day onboarding card</a>. It was used at Contributor Day at WCEU and onboarding time went down to 1 hour instead of 3 hours.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/meta/\">Meta</a> (WordPress.org Site)</h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\"https://profiles.wordpress.org/tellyworth/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>tellyworth</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>coffee2code</a></li>\n	<li><strong>Priority</strong>: Reducing manual work around the contributor space (theme review, GDPR/privacy, plugin review). ETA for small wins is end of quarter, larger efforts after that.</li>\n	<li><strong>Struggle</strong>: Maintaining momentum on tickets. <em>There are also some discussions about updating the ticket management process across teams that use the Meta trac system.</em></li>\n	<li><strong>Big Win</strong>: The new About page launched and has been translated across most locale sites.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/mobile/\">Mobile</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\"https://profiles.wordpress.org/elibud/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>elibud</a></li>\n	<li><strong>Priority</strong>: Getting Gutenberg in the mobile applications. ETA is late December.</li>\n	<li><strong>Struggle</strong>: Consuming the Gutenberg source in the ReactNative app directly. <em>More info can be found here: https://make.wordpress.org/mobile/2018/07/09/next-steps-for-gutenberg-mobile/</em></li>\n	<li><strong>Big Win</strong>: The WordPress mobile applications now fully support right-to-left languages and are compliant with the latest standards for accessibility.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/plugins/\">Plugins</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\"https://profiles.wordpress.org/ipstenu/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>ipstenu</a></li>\n	<li><strong>Priority</strong>: Clearing ~8,000 unused plugins from the queues. Likely ETA is September.<br /></li>\n	<li><strong>Struggles</strong>: Had to triage a lot of false claims around plugins offering GDPR compliance.</li>\n	<li><strong>Big Win</strong>: Released 4.9.6 and <a href=\"https://make.wordpress.org/plugins/2018/05/17/wp-4-9-6-privacy-hooks-and-you/\">updated expectations</a> with plugin authors. Huge thanks to the Core Privacy team for their hard work on this.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/polyglots/\">Polyglots</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\"https://profiles.wordpress.org/petya/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>petya</a>, <a href=\"https://profiles.wordpress.org/ocean90/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>ocean90</a>, <a href=\"https://profiles.wordpress.org/nao/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>nao</a>, <a href=\"https://profiles.wordpress.org/chantalc/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chantalc</a>, <a href=\"https://profiles.wordpress.org/deconf/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>deconf</a>, <a href=\"https://profiles.wordpress.org/casiepa/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>casiepa</a></li>\n	<li><strong>Priority</strong>: Keep WordPress releases translated to 100% and then concentrate on the top 100 plugins and themes. ETA is ongoing.<br /><strong></strong></li>\n	<li><strong>﻿Struggle</strong>: Getting new PTEs fast enough, and complex tools/systems. Overall, the volume of strings awaiting approval.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/support/\">Support</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\"https://profiles.wordpress.org/clorith/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>clorith</a></li>\n	<li><strong>Priority:</strong> Getting ready for the Gutenberg callout (it got pushed last quarter). Needing a better presence on the official support forums, and outreach for that is underway, ETA end of July. <br /></li>\n	<li><strong>Struggle</strong>: Keeping contributors participating post-contributor days/drives. <em>﻿Considering the creation of a dedicated post-contributor day survey to get some insight here.</em></li>\n	<li><strong>Big Win</strong>: The increase in international liaisons joining for weekly meetings, helping bring the wider support community together.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/themes/\">Theme Review</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\"https://profiles.wordpress.org/acosmin/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>acosmin</a>, <a href=\"https://profiles.wordpress.org/rabmalin/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rabmalin</a>, <a href=\"https://profiles.wordpress.org/thinkupthemes/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>thinkupthemes</a>, <a href=\"https://profiles.wordpress.org/williampatton/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>williampatton</a></li>\n	<li><strong>Priority</strong>: Building a better Theme Check/Sniffer in order to automate most of the checks done right now by reviewers. ETA late 2018, early 2019.</li>\n	<li><strong>Struggle</strong>: Bringing in new contributors to the team.</li>\n	<li><strong>Big Win</strong>: <a href=\"https://make.wordpress.org/themes/2018/04/30/trusted-authors-program/\">Trusted Authors program﻿</a></li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/tide/\">Tide</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\"https://profiles.wordpress.org/valendesigns/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>valendesigns</a> (but usually <a href=\"https://profiles.wordpress.org/jeffpaul/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jeffpaul</a>)</li>\n	<li><strong>Priority</strong>: Storing PHPCompatibilty results inside the WordPress.org API and building a UI to display those results, an endpoint to request an audit is required for this work to continue.</li>\n	<li><strong>Struggle</strong>: Development has dramatically slowed down while team members are on leave or pulled into internal client work.</li>\n	<li><strong>Big Win</strong>: Migration to Google Cloud Platform (GCP) from Amazon Web Services (AWS) is complete and the audit servers have all been rewritten in Go. (This allows us to be faster with greater capacity and less cost.)</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/training/\">Training</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\"https://profiles.wordpress.org/bethsoderberg/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>bethsoderberg</a>, <a href=\"https://profiles.wordpress.org/juliek/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>juliek</a></li>\n	<li><strong>Priority:</strong> Lesson plan production. ETA is ongoing.</li>\n	<li><strong>Struggle:</strong> The workflow is a little complex, so recruiting and training enough contributors to keep the process moving is a struggle.</li>\n	<li><strong>Big Win</strong>: WordCamp Europe&#8217;s Contributor Day was very productive. New tools/workflow are in place and two team representatives were there to lead and help.</li>\n</ul>\n\n<p><em>Interested in updates from the first quarter of this year? You can find those here: <a href=\"https://make.wordpress.org/updates/2018/04/24/quarterly-updates-q1-2018/\"><em>https://make.wordpress.org/updates/2018/04/24/quarterly-updates-q1-2018/</em></a>\n	</em>\n</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, 16 Jul 2018 14:50:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";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:93:\"WPTavern: WordCamp Europe 2018 Draws 2,085 Attendees, Organizers Look Ahead to 2019 in Berlin\";s:7:\"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=82313\";s:7:\"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/wordcamp-europe-2018-draws-2085-attendees-organizers-look-ahead-to-2019-in-berlin\";s: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:6531:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/07/WCEU-2018.jpg?ssl=1\"><img /></a>photo credit: WCEU Photography Team\n<p>WordCamp Europe closed out a successful event in Belgrade with 2,085 attendees from 76 countries. More than 800 others joined via livestream for a total audience of nearly 3,000 participants. A <a href=\"https://wptavern.com/wordcamp-europe-2018-contributor-day-posts-record-turnout-amid-wi-fi-outage\" rel=\"noopener noreferrer\" target=\"_blank\">record-setting Contributor Day</a> kicked off the event, followed by two days of conference sessions and workshops from 65 speakers.</p>\n<p>A team of 54 organizers and 170 volunteers made WCEU possible, with 10 different organizing teams. Last year WordCamp Europe added a PR team and this year the event introduced an Attendee Services team to fill gaps in the organization. The operation ran smoothly, despite the conference being spread out across many rooms in the sprawling <a href=\"http://www.savacentar.net/\" rel=\"noopener noreferrer\" target=\"_blank\">Sava Centar</a> venue.</p>\n<p><a href=\"https://app.wp-europe.org/\" rel=\"noopener noreferrer\" target=\"_blank\">WordCamp Europe&#8217;s PWA</a> (progressive web app) was the highlight of the new features and services introduced this year. It was a central hub for keeping attendees informed on what was happening at any given moment. Organizers also added new amenities, including a site health check station, Community Room, and info booth to handle attendee questions.</p>\n<p>Gutenberg and Progressive web apps were the hot topics of this year&#8217;s WordCamp Europe. In addition to Matt Mullenweg <a href=\"https://wptavern.com/matt-mullenweg-unveils-gutenberg-roadmap-at-wceu-wordpress-agencies-and-product-developers-sprint-to-prepare\" rel=\"noopener noreferrer\" target=\"_blank\">unveiling a roadmap for Gutenberg&#8217;s inclusion in core</a>, a strong contingent of designers and engineers from the team were present to educate attendees on Gutenberg&#8217;s architecture and the vision behind the project.</p>\n<p>Many attendees were visiting Serbia for the first time and Belgrade delivered with its renowned hospitality and captivating nightlife. Attendees found no shortage of delicious options for food and drink.</p>\n<h3>Berlin to Host WordCamp Europe 2019</h3>\n<p>At the conclusion of the event, organizers announced Berlin as the next host city for <a href=\"https://2019.europe.wordcamp.org/\" rel=\"noopener noreferrer\" target=\"_blank\">WordCamp Europe, June 20-22, 2019</a>. The conference, Contributor Day, and the after party will all be held at the <a href=\"https://www.estrel.com/en/home.html\" rel=\"noopener noreferrer\" target=\"_blank\">Estrel Hotel and Congress Center</a>, a venue with a capacity for 12,000 attendees.</p>\n<p>Organizers said that Berlin&#8217;s accessibility, reasonable prices, and strong community were the final deciding factors for its selection as the next host city.</p>\n<p></p>\n<h3>Behind the Scenes at WordCamp Europe 2018 with Lead Organizers Jenny Beaumont and Milan Ivanović</h3>\n<p>Hosting a volunteer-led event at this scale requires an enormous amount of effort from the organizers, especially those taking the lead for multiple years in a row. There is nearly no down time as the team is already planning for the next edition of the camp.</p>\n<p>I sat down with lead organizers Jenny Beaumont, the global lead, and Milan Ivanović, the local lead, to get a look behind the scenes at what is involved in bringing WordCamp Europe to thousands of WordPress enthusiasts in one weekend. We <a href=\"https://wptavern.com/wordcamp-europe-2018-to-be-held-in-belgrade-serbia-june-14-16\" rel=\"noopener noreferrer\" target=\"_blank\">interviewed</a> them at the conclusion of WCEU 2017 in Paris. Over the past two years these leaders have developed a strong working relationship built on encouraging each other and keeping a positive outlook for their teams.</p>\n<p>Beaumont said she was hesitant going into a third year for this role, as Paris was the project that captured her heart and motivation. After going through this event as the global lead, she said she discovered what she could bring to the role and how she could serve the team.</p>\n<p>&#8220;The event has been their project,&#8221; Beaumont said. &#8220;My project this year has been the team, how I can really concentrate on this team, on its growth, on its health, on its sustainability. That&#8217;s what I learned in Paris &#8211; the importance of making sure that was part of the project.&#8221;</p>\n<p>Beaumont and Ivanović explained the difference between the global and local lead roles, a structure that works well for flagship WordCamps.</p>\n<p>&#8220;The local team is really about making it a good experience in this new place that everybody is going to be discovering for the first time,&#8221; Beaumont said. &#8220;It&#8217;s the hard work, it&#8217;s the logistics, it&#8217;s all of the small details, everything that&#8217;s behind the scenes that make it so you walk in as an attendee and it just feels like you&#8217;re at home. They do all of that hard work. The global role, as it has evolved, is really about being that sort of team care-giver, making sure that there is good communication happening, making sure the team is healthy and happy and motivated. Because you&#8217;ve got to get up and do this every day while you&#8217;re also doing your day job, and that takes a lot.&#8221;</p>\n<p>WordCamp Europe had a strong impact on the local community with more than 400 Serbian attendees and 20 Serbian organizers. They worked to build awareness of WordPress in the local community ahead of the event.</p>\n<p>&#8220;We used this event to grow our community and used our community to promote the event,&#8221; Ivanović said. &#8220;When we announced last year in Paris that Belgrade is going to be next, at that time we had five or six cities for WordPress meetups. Currently, we are in 14 cities and starting the 15th in July. WordCamp Europe and the conference itself was such a win for the whole community.&#8221;</p>\n<p>Ivanović will return next year as the global lead for WCEU in Berlin. Beaumont is taking some time off after three years organizing WordCamp Paris and WordCamp Europe, but she hopes to return in some capacity in the future. They are working together with their team to publish a WordCamp Europe handbook that covers some of the important specifics of the event for upcoming teams. Check out the full interview in the video below.</p>\n<p></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, 14 Jul 2018 00:24:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:82:\"WPTavern: Array Launches Free Gutenberg-Ready Atomic Blocks Theme on 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=82258\";s:7:\"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/array-launches-free-gutenberg-ready-atomic-blocks-theme-on-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6391:\"<p>Mike McAlister and the team at <a href=\"https://arraythemes.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Array Themes</a> have fully embraced Gutenberg and are one of the first shops on the scene with a free WordPress theme designed specifically to work with the new editor. The <a href=\"https://wordpress.org/themes/atomic-blocks/\" rel=\"noopener noreferrer\" target=\"_blank\">Atomic Blocks</a> theme is now available on WordPress.org with minimal styling and seamless support for all core content and media blocks.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/07/atomic-blocks-screenshot.png?ssl=1\"><img /></a></p>\n<p>The theme allows users to control the width of the content area to create full-screen posts and pages. It supports full-screen images, videos, and galleries, showcasing the new editor&#8217;s wide alignment styles for content. Atomic Blocks includes Customizer options for uploading a logo, customizing the font style, setting body and title font sizes, and selecting an accent color.</p>\n<p>Check out the theme&#8217;s demo to see the blocks in action: <a href=\"https://preview.arraythemes.com/atomicblocks\" rel=\"noopener noreferrer\" target=\"_blank\">https://preview.arraythemes.com/atomicblocks</a>.</p>\n<p>The theme also seamlessly supports McAlister&#8217;s new Atomic Blocks project, a collection of page-building blocks included in the accompanying <a href=\"https://atomicblocks.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Atomic Blocks plugin</a>. It currently includes blocks for creating a post grid, call-to-action, testimonials, inline notices, sharing icons, author profiles, accordions, customizable buttons, drop caps, and spacer/dividers, with many more blocks planned.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/07/testimonials-block.jpg?ssl=1\"><img /></a></p>\n<p>&#8220;I knew Gutenberg was going to be a game changer from the second I saw it and started hashing out product ideas in October 2017,&#8221; McAlister said. &#8220;To me, it felt like a very natural evolution and transition for WordPress into a more forward-thinking content creator. All of the tools outside of WordPress are evolving and becoming better and easier to use and WordPress is starting to feel quite dated in comparison.&#8221;</p>\n<p>McAlister said his team is building Atomic Blocks into a full-fledged content block solution that will include a commercial version in the future.</p>\n<p>&#8220;We have a long list of blocks that we’ll be releasing into the plugin in the coming months — everything from eCommerce to email marketing to full-page layouts,&#8221; he said. &#8220;There will definitely be a commercial version of the plugin for those extra awesome blocks that will take your site to the next level.&#8221;</p>\n<p>McAlister is keeping Atomic Blocks separate from Array Themes but plans to cross promote between the two. He also plans to update the Array themes collection to support the blocks found in the plugin.</p>\n<p>&#8220;Atomic Blocks aims to solve a different problem in a different way than the traditional WordPress themes you’ll find on Array,&#8221; McAlister said. &#8220;By launching it separately from Array Themes, it gave me the opportunity to diversify my projects a bit and create a dedicated marketing stream for a Gutenberg solution.&#8221;</p>\n<p>Many products in the Array Themes catalog are already working with the new editor, but McAlister and his team intend to provide more in-depth support for specific Gutenberg features in themes where appropriate.</p>\n<p>&#8220;We’ve stayed fiercely committed to beautiful design, simplicity, and core coding standards and practices to ensure wide-spread support and compatibility with our themes,&#8221; McAlister said. &#8220;While this has served us well, we are all ready for a core-supported solution to providing a better experience for our customers. Gutenberg will solve this problem by providing a cohesive, unified way of extending content creation with a core user interface. Gutenberg is quite extensible as is, and will only grow more capable with time.&#8221;</p>\n<p>McAlister said one of the most challenging aspects of launching Atomic Blocks has been keeping pace with Gutenberg&#8217;s rapid development, requiring the team to follow multiple conversations across various WordPress core development discussion channels.</p>\n<p>&#8220;I followed Gutenberg development closely during the second half of last year and then started developing Atomic Blocks for Gutenberg early this year,&#8221; McAlister said. &#8220;You have to follow the Github repo, Make blog posts, and Slack conversations closely to keep up with the changes, deprecations, and feature additions. Luckily, now that features are being frozen, the code is churning less and things are starting to stabilize.&#8221;</p>\n<p>In order to keep up with all the news and changes, McAlister started the <a href=\"http://gutenberg.news/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg News</a> site to collect helpful resources, tutorials, and code snippets he found. The site contains more than 200 links to resources for both beginners and developers.</p>\n<p>McAlister predicts that Gutenberg will bring a greater separation between the roles of themes and plugins in the site-building experience.</p>\n<p>&#8220;The demand for themes will certainly begin to change more drastically in the long term,&#8221; he said. &#8220;Traditional WordPress themes will still be desirable for a number of years, simply due to the number of sites out there and the solutions needed to build them. Eventually, much of what can be provided by a theme will be provided by blocks via a plugin instead. Themes will still be responsible for providing a degree of styling and functionality that will remain critical to the site-building experience, but they will take a secondary role to content blocks.&#8221;</p>\n<p>Gutenberg will inevitably change the landscape of the theme industry, but McAlister sees it as a chance to reach customers in a new way.</p>\n<p>&#8220;Theme designers and developers should be excited about this opportunity and not feel threatened by Gutenberg,&#8221; McAlister said. &#8220;This is a fantastic opportunity to learn a new set of skills, attract a new segment of customers, and start pivoting to a block-based product model.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Jul 2018 22:33: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: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:90:\"WPTavern: WPWeekly Episode 323 – Recap of WordCamp Grand Rapids and A Gutenberg Road Map\";s:7:\"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=82285&preview=true&preview_id=82285\";s:7:\"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/wpweekly-episode-323-recap-of-wordcamp-grand-rapids-and-a-gutenberg-road-map\";s: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:2142:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> recaps his trip to WordCamp Grand Rapids and shares his experience. WordCamp Grand Rapids had a strong focus on tools, plugins, and themes and by all accounts, was a successful event.</p>\n<p>We discussed Matt Mullenweg&#8217;s Summertime update, the roadmap for merging Gutenberg into core, and what comes after Gutenberg. We shared our thoughts on Automattic&#8217;s new board member, General Ann Dunwoody and speculated on Automattic&#8217;s vision.</p>\n<p>We wrap up the show by talking about generational divides in WordPress.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wordpress.org/news/2018/07/wordpress-4-9-7-security-and-maintenance-release/\">WordPress 4.9.7 Security and Maintenance Release</a><br />\n<a href=\"https://wordpress.org/news/2018/07/update-on-gutenberg/\">Update on Gutenberg</a><br />\n<a href=\"https://make.wordpress.org/core/2018/07/06/whats-new-in-gutenberg-6th-july/\">What’s New in Gutenberg? (6th July)</a><br />\n<a href=\"https://ma.tt/2018/06/automattics-first-new-board-member-general-ann-dunwoody/\">Automattic’s First New Board Member: General Ann Dunwoody</a><br />\n<a href=\"https://wptavern.com/block-unit-test-plugin-helps-wordpress-theme-developers-prepare-for-gutenberg\">Block Unit Test Plugin Helps WordPress Theme Developers Prepare for Gutenberg</a><br />\n<a href=\"https://twitter.com/NaomiCBush/status/1014991902691790848\">Generational divides in WordPress</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, July 18th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #323:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Jul 2018 00:42: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: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:108:\"WPTavern: Video: A Quick Introduction to Gutenberg and the New WordPress Block Editor from LinkedIn Learning\";s:7:\"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=82276\";s:7:\"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/video-a-quick-introduction-to-gutenberg-and-the-new-wordpress-block-editor-from-linkedin-learning\";s: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:1005:\"<p>Although WordPress developers and professionals have been inundated with Gutenberg news for more than a year, there&#8217;s a whole wide world of users who will learn about the project for the first time when 4.9.8 includes a &#8220;Try Gutenberg&#8221; prompt in the admin. If you haven&#8217;t been following the news closely and are wondering what all of this <a href=\"https://wordpress.org/plugins/gutenberg/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg</a> talk is about, Morten Rand-Hendriksen provides a succinct introduction to the new editor that is coming in WordPress 5.0.</p>\n<p>The video was created as part of LinkedIn&#8217;s <a href=\"https://www.linkedin.com/learning/wordpress-essential-training/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress Essentials Training</a> course. The first part explains the basic concept of a block and includes a mini tour of the new interface, followed by a short overview of where the Gutenberg project is going in the future.</p>\n<p></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, 11 Jul 2018 23:04: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: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:86:\"WPTavern: WordCamp Ticket Sales Move from PayPal to Stripe for Default Payment Gateway\";s:7:\"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=82267\";s:7:\"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/wordcamp-ticket-sales-move-from-paypal-to-stripe-for-default-payment-gateway\";s: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:1857:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/07/stripe.jpg?ssl=1\"><img /></a></p>\n<p>The WordPress Community Team <a href=\"https://make.wordpress.org/community/2018/07/10/stripe-is-now-available-to-all-wordcamps/\" rel=\"noopener noreferrer\" target=\"_blank\">announced</a> an update to the CampTix, the plugin used for selling WordCamp tickets, that makes Stripe the default payment method. The gateway was previously available as a beta plugin and could be enabled on a per-site basis but is now available to all WordCamps.</p>\n<p>When <a href=\"https://make.wordpress.org/community/2018/04/03/moving-wordcamp-ticket-sales-from-paypal-to-stripe/\" rel=\"noopener noreferrer\" target=\"_blank\">proposing Stripe as the default payment gateway</a> in April, Hugh Lashbrooke cited the fact that PayPal is entirely blocked and inaccessible in some countries. He also identified Stripe&#8217;s simpler UI and larger number of supported currencies as its chief advantages.</p>\n<p>PayPal has been the default for years on WordCamp websites but it currently supports only 26 currencies. Stripe supports 136 currencies, allowing WordCamp organizers to offer ticket purchases in more places than before. Previously, some communities were forced to build a local gateway integration to sell WordCamp tickets via PayPal, requiring those sales to be inconveniently funneled through a local bank account. The Stripe gateway option is a welcome update to support WordPress&#8217; growing international community, which held camps in 73 countries in 2017.</p>\n<p>It&#8217;s important to note that Stripe isn&#8217;t fully replacing PayPal. The Camptix plugin allows organizers to activate multiple payment gateways for cases where one or both make more sense, retaining the flexibility to support ticket sales at camps with different payment requirements.</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, 11 Jul 2018 18:02: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:49;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:31:\"HeroPress: Translating For Love\";s:7:\"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=2587\";s:7:\"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://heropress.com/translating-for-love/#utm_source=rss&utm_medium=rss&utm_campaign=translating-for-love\";s: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:3006:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2016/09/092816-vladimir_petkov-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I started translating WordPress so that my seven-year-old daughter can share her personal stories.\" /><p>We all have our reasons for the things we do. Money, love, orders, etc. Vladimir Petkov started using WordPress because it solved a problem. As the years went by it continued to solve problems, and he continued to use it. His time to give back didn&#8217;t arrive until much later though.</p>\n<p>His 7 year old daughter wanted a blog, and WordPress wasn&#8217;t completely translated into her language. So Vladimir learned how to translate WordPress, so his little girl (and every other Bulgarian speaker) can use their voice to speak to the world.</p>\n<p>Why do you give back to WordPress? If you&#8217;d like more info about how you can (no coding required!) drop a note in the comments.</p>\n<p>Also, check out Vladimir&#8217;s essay.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/rebirth/\">Rebirth</a></p></blockquote>\n<p></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: Translating For Love\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Translating%20For%20Love&via=heropress&url=https%3A%2F%2Fheropress.com%2Ftranslating-for-love%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Translating For Love\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Ftranslating-for-love%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%2Ftranslating-for-love%2F&title=Translating+For+Love\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Translating For Love\"></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/translating-for-love/&media=https://heropress.com/wp-content/uploads/2016/09/092816-vladimir_petkov-150x150.jpg&description=Translating For Love\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Translating For Love\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/translating-for-love/\" title=\"Translating For Love\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/translating-for-love/\">Translating For Love</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, 11 Jul 2018 12:13: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: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:\"Sun, 05 Aug 2018 19:09:09 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Sun, 05 Aug 2018 18:45:28 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20180207075304\";}','no'),(4276,'gadwp_cache_qr2_3790611758','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:160:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:171164682&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:sessions&start-date=30daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:30:{i:0;a:3:{i:0;s:8:\"20180706\";i:1;s:6:\"Friday\";i:2;s:2:\"12\";}i:1;a:3:{i:0;s:8:\"20180707\";i:1;s:8:\"Saturday\";i:2;s:1:\"5\";}i:2;a:3:{i:0;s:8:\"20180708\";i:1;s:6:\"Sunday\";i:2;s:2:\"12\";}i:3;a:3:{i:0;s:8:\"20180709\";i:1;s:6:\"Monday\";i:2;s:2:\"23\";}i:4;a:3:{i:0;s:8:\"20180710\";i:1;s:7:\"Tuesday\";i:2;s:2:\"11\";}i:5;a:3:{i:0;s:8:\"20180711\";i:1;s:9:\"Wednesday\";i:2;s:2:\"13\";}i:6;a:3:{i:0;s:8:\"20180712\";i:1;s:8:\"Thursday\";i:2;s:2:\"13\";}i:7;a:3:{i:0;s:8:\"20180713\";i:1;s:6:\"Friday\";i:2;s:2:\"12\";}i:8;a:3:{i:0;s:8:\"20180714\";i:1;s:8:\"Saturday\";i:2;s:1:\"7\";}i:9;a:3:{i:0;s:8:\"20180715\";i:1;s:6:\"Sunday\";i:2;s:1:\"4\";}i:10;a:3:{i:0;s:8:\"20180716\";i:1;s:6:\"Monday\";i:2;s:2:\"10\";}i:11;a:3:{i:0;s:8:\"20180717\";i:1;s:7:\"Tuesday\";i:2;s:1:\"7\";}i:12;a:3:{i:0;s:8:\"20180718\";i:1;s:9:\"Wednesday\";i:2;s:2:\"14\";}i:13;a:3:{i:0;s:8:\"20180719\";i:1;s:8:\"Thursday\";i:2;s:2:\"15\";}i:14;a:3:{i:0;s:8:\"20180720\";i:1;s:6:\"Friday\";i:2;s:1:\"7\";}i:15;a:3:{i:0;s:8:\"20180721\";i:1;s:8:\"Saturday\";i:2;s:1:\"7\";}i:16;a:3:{i:0;s:8:\"20180722\";i:1;s:6:\"Sunday\";i:2;s:2:\"12\";}i:17;a:3:{i:0;s:8:\"20180723\";i:1;s:6:\"Monday\";i:2;s:2:\"27\";}i:18;a:3:{i:0;s:8:\"20180724\";i:1;s:7:\"Tuesday\";i:2;s:2:\"23\";}i:19;a:3:{i:0;s:8:\"20180725\";i:1;s:9:\"Wednesday\";i:2;s:2:\"10\";}i:20;a:3:{i:0;s:8:\"20180726\";i:1;s:8:\"Thursday\";i:2;s:1:\"4\";}i:21;a:3:{i:0;s:8:\"20180727\";i:1;s:6:\"Friday\";i:2;s:2:\"12\";}i:22;a:3:{i:0;s:8:\"20180728\";i:1;s:8:\"Saturday\";i:2;s:2:\"14\";}i:23;a:3:{i:0;s:8:\"20180729\";i:1;s:6:\"Sunday\";i:2;s:1:\"9\";}i:24;a:3:{i:0;s:8:\"20180730\";i:1;s:6:\"Monday\";i:2;s:2:\"12\";}i:25;a:3:{i:0;s:8:\"20180731\";i:1;s:7:\"Tuesday\";i:2;s:2:\"19\";}i:26;a:3:{i:0;s:8:\"20180801\";i:1;s:9:\"Wednesday\";i:2;s:2:\"10\";}i:27;a:3:{i:0;s:8:\"20180802\";i:1;s:8:\"Thursday\";i:2;s:2:\"19\";}i:28;a:3:{i:0;s:8:\"20180803\";i:1;s:6:\"Friday\";i:2;s:1:\"8\";}i:29;a:3:{i:0;s:8:\"20180804\";i:1;s:8:\"Saturday\";i:2;s:2:\"14\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:160:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:171164682&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:sessions&start-date=30daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:30;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:3:\"365\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:9:\"30daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:12:\"ga:171164682\";s:10:\"dimensions\";s:24:\"ga:date,ga:dayOfWeekName\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:9:\"171164682\";s:9:\"accountId\";s:9:\"115377439\";s:13:\"webPropertyId\";s:14:\"UA-115377439-1\";s:21:\"internalWebPropertyId\";s:9:\"171493460\";s:11:\"profileName\";s:17:\"All Web Site Data\";s:7:\"tableId\";s:12:\"ga:171164682\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:7:\"ga:date\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:16:\"ga:dayOfWeekName\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1533531600;}','no'),(4246,'_site_transient_timeout_browser_4b99469f75dff92a3e9ca3ceb91d211c','1534100942','no'),(4247,'_site_transient_browser_4b99469f75dff92a3e9ca3ceb91d211c','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"61.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(4144,'_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:59:\"https://downloads.wordpress.org/release/wordpress-4.9.8.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.8.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.8-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.8-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.8\";s:7:\"version\";s:5:\"4.9.8\";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:1533496168;s:15:\"version_checked\";s:5:\"4.9.8\";s:12:\"translations\";a:0:{}}','no'),(4268,'_transient_timeout_feed_mod_e0061ca2fa5b884e483872aa34d3e7eb','1533539349','no'),(4269,'_transient_feed_mod_e0061ca2fa5b884e483872aa34d3e7eb','1533496149','no'),(4270,'_transient_timeout_updraftplus_dashboard_news','1533539349','no'),(4271,'_transient_updraftplus_dashboard_news','<div class=\"rss-widget\"><ul><li class=\"updraftplus_dashboard_news_item\"><a class=\'rsswidget\' href=\'http://feedproxy.google.com/~r/UpdraftPlus/~3/9IjhsgFIFcE/\'>UpdraftPlus: UpdraftPlus confirms development of Clone feature</a><a href=\"#\" class=\"dashicons dashicons-no-alt\" title=\"Dismiss all UpdraftPlus news\" onClick=\"updraftplus_dismiss_dashboard_news(); return false;\" style=\"float: right; box-shadow: none;\"></li></a><li class=\"updraftplus_dashboard_news_item\"><a class=\'rsswidget\' href=\'http://feedproxy.google.com/~r/UpdraftPlus/~3/du0oAlStSww/\'>UpdraftPlus: UpdraftPlus 1.14.12 Released</a><a href=\"#\" class=\"dashicons dashicons-no-alt\" title=\"Dismiss all UpdraftPlus news\" onClick=\"updraftplus_dismiss_dashboard_news(); return false;\" style=\"float: right; box-shadow: none;\"></li></a></ul></div>','no'),(4272,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1533539349','no'),(4273,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2018/08/wordpress-4-9-8-maintenance-release/\'>WordPress 4.9.8 Maintenance Release</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://poststatus.com/considerations-for-ecommerce-merchants-with-andrew-youderian-of-ecommerce-fuel/\'>Post Status: Considerations for eCommerce merchants, with Andrew Youderian of eCommerce Fuel</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-4-9-8-released\'>WPTavern: WordPress 4.9.8 Released</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-com-partners-with-pexels-to-offer-diverse-free-stock-photo-library\'>WPTavern: WordPress.com Partners with Pexels to Offer Diverse, Free Stock Photo Library</a></li></ul></div>','no'),(4279,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4491;}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:2913;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2576;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2443;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:1883;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1670;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1665;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1458;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1403;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1396;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1391;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1325;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1286;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1232;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1112;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1068;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1030;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1028;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:917;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:887;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:834;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:811;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:805;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:727;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:699;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:695;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:688;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:678;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:668;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:664;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:656;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:652;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:645;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:642;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:615;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:612;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:609;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:606;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:600;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:593;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:570;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:550;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:542;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:540;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:529;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:522;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:512;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:512;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:511;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:505;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:493;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:491;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:488;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:484;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:480;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:479;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:459;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:457;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:449;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:440;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:436;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:435;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:421;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:419;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:417;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:415;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:413;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:411;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:405;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:388;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:388;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:370;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:369;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:369;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:366;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:362;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:357;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:354;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:350;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:348;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:345;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:343;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:342;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:338;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:338;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:334;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:329;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:324;}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";i:311;}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";i:309;}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\";i:306;}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s:3:\"tag\";s:5:\"count\";i:303;}s:7:\"adsense\";a:3:{s:4:\"name\";s:7:\"adsense\";s:4:\"slug\";s:7:\"adsense\";s:5:\"count\";i:303;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:302;}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";i:300;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:299;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:299;}s:16:\"google-analytics\";a:3:{s:4:\"name\";s:16:\"google analytics\";s:4:\"slug\";s:16:\"google-analytics\";s:5:\"count\";i:297;}s:6:\"author\";a:3:{s:4:\"name\";s:6:\"author\";s:4:\"slug\";s:6:\"author\";s:5:\"count\";i:296;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:288;}}','no'),(4283,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1533496172;s:7:\"checked\";a:6:{s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.0.1\";s:23:\"elementor/elementor.php\";s:5:\"2.0.4\";s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";s:5:\"5.3.2\";s:27:\"ocean-extra/ocean-extra.php\";s:6:\"1.4.10\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:5:\"3.0.5\";s:27:\"updraftplus/updraftplus.php\";s:7:\"1.14.12\";}s:8:\"response\";a:4:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.0.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007\";s:2:\"1x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-128x128.png?rev=984007\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.7\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"2.1.6\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.2.1.6.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.7\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:47:\"w.org/plugins/google-analytics-dashboard-for-wp\";s:4:\"slug\";s:33:\"google-analytics-dashboard-for-wp\";s:6:\"plugin\";s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";s:11:\"new_version\";s:5:\"5.3.5\";s:3:\"url\";s:64:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/\";s:7:\"package\";s:82:\"https://downloads.wordpress.org/plugin/google-analytics-dashboard-for-wp.5.3.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:85:\"https://ps.w.org/google-analytics-dashboard-for-wp/assets/icon-256x256.png?rev=970326\";s:2:\"1x\";s:85:\"https://ps.w.org/google-analytics-dashboard-for-wp/assets/icon-128x128.png?rev=970326\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:88:\"https://ps.w.org/google-analytics-dashboard-for-wp/assets/banner-772x250.png?rev=1064664\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"ocean-extra/ocean-extra.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/ocean-extra\";s:4:\"slug\";s:11:\"ocean-extra\";s:6:\"plugin\";s:27:\"ocean-extra/ocean-extra.php\";s:11:\"new_version\";s:6:\"1.4.20\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/ocean-extra/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/ocean-extra.1.4.20.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/ocean-extra/assets/icon-256x256.png?rev=1520440\";s:2:\"1x\";s:64:\"https://ps.w.org/ocean-extra/assets/icon-128x128.png?rev=1520440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/ocean-extra/assets/banner-1544x500.png?rev=1583113\";s:2:\"1x\";s:66:\"https://ps.w.org/ocean-extra/assets/banner-772x250.png?rev=1583113\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.7\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/really-simple-ssl\";s:4:\"slug\";s:17:\"really-simple-ssl\";s:6:\"plugin\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:11:\"new_version\";s:5:\"3.0.5\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/really-simple-ssl/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/really-simple-ssl.3.0.5.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/really-simple-ssl/assets/icon-128x128.png?rev=1782452\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/really-simple-ssl/assets/banner-772x250.jpg?rev=1881345\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"updraftplus/updraftplus.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/updraftplus\";s:4:\"slug\";s:11:\"updraftplus\";s:6:\"plugin\";s:27:\"updraftplus/updraftplus.php\";s:11:\"new_version\";s:7:\"1.14.12\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/updraftplus/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/updraftplus.1.14.12.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-256x256.jpg?rev=1686200\";s:2:\"1x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-128x128.jpg?rev=1686200\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/updraftplus/assets/banner-1544x500.png?rev=1686200\";s:2:\"1x\";s:66:\"https://ps.w.org/updraftplus/assets/banner-772x250.png?rev=1686200\";}s:11:\"banners_rtl\";a:0:{}}}}','no');
/*!40000 ALTER TABLE `aCPMymRSoptions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `aCPMymRSpostmeta`
--

DROP TABLE IF EXISTS `aCPMymRSpostmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `aCPMymRSpostmeta` (
  `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 DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=2647 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `aCPMymRSpostmeta`
--

LOCK TABLES `aCPMymRSpostmeta` WRITE;
/*!40000 ALTER TABLE `aCPMymRSpostmeta` DISABLE KEYS */;
INSERT INTO `aCPMymRSpostmeta` VALUES (65,25,'_edit_lock','1523135348:1'),(64,25,'_edit_last','1'),(63,24,'_edit_lock','1523131626:1'),(8,7,'_wp_attached_file','2018/03/ewc.jpg'),(9,7,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:624;s:6:\"height\";i:546;s:4:\"file\";s:15:\"2018/03/ewc.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ewc-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:15:\"ewc-300x263.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:15:\"ewc-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(10,8,'_wp_attached_file','2018/03/Patient-Testimonials.docx'),(15,11,'_wp_attached_file','2018/03/wb3.jpg'),(16,11,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:580;s:4:\"file\";s:15:\"2018/03/wb3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"wb3-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:15:\"wb3-300x290.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:290;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:15:\"wb3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(1237,303,'_elementor_template_type','page'),(1238,303,'_elementor_edit_mode','builder'),(1239,303,'_elementor_data','[{\"id\":\"1b3cc680\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":784},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"28194790\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"5edbadc0\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Visit our restaurants across the UK\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Georgia\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e219309\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":4},\"color\":\"#f4b522\",\"width\":{\"unit\":\"%\",\"size\":8},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6d1f1831\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Choose from any of our six premium locations, and enjoy top quality dishes prepared by our professional chefs to please your palate.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.7\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(66,25,'_wp_page_template','default'),(62,24,'_edit_last','1'),(59,21,'ocean_display_footer_bottom','default'),(60,23,'_edit_last','1'),(61,23,'_edit_lock','1532898338:1'),(44,21,'_edit_last','1'),(45,21,'_edit_lock','1523387322:1'),(46,21,'_wp_page_template','default'),(47,21,'ocean_sidebar','0'),(48,21,'ocean_second_sidebar','0'),(49,21,'ocean_disable_margins','enable'),(50,21,'ocean_display_top_bar','default'),(51,21,'ocean_display_header','default'),(52,21,'ocean_center_header_left_menu','0'),(53,21,'ocean_custom_header_template','0'),(54,21,'ocean_header_custom_menu','0'),(55,21,'ocean_disable_title','on'),(56,21,'ocean_disable_heading','default'),(57,21,'ocean_disable_breadcrumbs','default'),(58,21,'ocean_display_footer_widgets','default'),(1219,297,'_elementor_version','0.4'),(1220,297,'_elementor_template_type','post'),(67,25,'ocean_sidebar','0'),(68,25,'ocean_second_sidebar','0'),(69,25,'ocean_disable_margins','on'),(70,25,'ocean_display_top_bar','default'),(71,25,'ocean_display_header','default'),(72,25,'ocean_center_header_left_menu','0'),(73,25,'ocean_custom_header_template','0'),(74,25,'ocean_header_custom_menu','0'),(75,25,'ocean_disable_title','on'),(76,25,'ocean_disable_heading','default'),(77,25,'ocean_disable_breadcrumbs','default'),(78,25,'ocean_display_footer_widgets','default'),(79,25,'ocean_display_footer_bottom','default'),(80,27,'_edit_last','1'),(81,27,'_edit_lock','1523128519:1'),(83,23,'_wp_page_template','default'),(84,23,'ocean_sidebar','0'),(85,23,'ocean_second_sidebar','0'),(86,23,'ocean_disable_margins','enable'),(87,23,'ocean_display_top_bar','default'),(88,23,'ocean_display_header','default'),(89,23,'ocean_center_header_left_menu','0'),(90,23,'ocean_custom_header_template','0'),(91,23,'ocean_header_custom_menu','0'),(92,23,'ocean_disable_title','on'),(93,23,'ocean_disable_heading','default'),(94,23,'ocean_disable_breadcrumbs','default'),(95,23,'ocean_display_footer_widgets','default'),(96,23,'ocean_display_footer_bottom','default'),(97,27,'_wp_page_template','default'),(98,27,'ocean_sidebar','0'),(99,27,'ocean_second_sidebar','0'),(100,27,'ocean_disable_margins','on'),(101,27,'ocean_display_top_bar','default'),(102,27,'ocean_display_header','default'),(103,27,'ocean_center_header_left_menu','0'),(104,27,'ocean_custom_header_template','0'),(105,27,'ocean_header_custom_menu','0'),(106,27,'ocean_disable_title','on'),(107,27,'ocean_disable_heading','default'),(108,27,'ocean_disable_breadcrumbs','default'),(109,27,'ocean_display_footer_widgets','default'),(110,27,'ocean_display_footer_bottom','default'),(111,24,'_wp_page_template','default'),(112,24,'ocean_sidebar','0'),(113,24,'ocean_second_sidebar','0'),(114,24,'ocean_disable_margins','enable'),(115,24,'ocean_display_top_bar','default'),(116,24,'ocean_display_header','default'),(117,24,'ocean_center_header_left_menu','0'),(118,24,'ocean_custom_header_template','0'),(119,24,'ocean_header_custom_menu','0'),(120,24,'ocean_disable_title','on'),(121,24,'ocean_disable_heading','default'),(122,24,'ocean_disable_breadcrumbs','default'),(123,24,'ocean_display_footer_widgets','default'),(124,24,'ocean_display_footer_bottom','default'),(127,33,'_menu_item_type','custom'),(128,33,'_menu_item_menu_item_parent','0'),(129,33,'_menu_item_object_id','33'),(130,33,'_menu_item_object','custom'),(131,33,'_menu_item_target',''),(132,33,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133,33,'_menu_item_xfn',''),(134,33,'_menu_item_url','http://evergreenwellness.com'),(135,33,'_menu_item_template',''),(136,33,'_menu_item_mega_template',''),(137,33,'_menu_item_nolink',''),(138,33,'_menu_item_category_post',''),(139,33,'_menu_item_megamenu',''),(140,33,'_menu_item_megamenu_auto_width',''),(141,33,'_menu_item_megamenu_col',''),(142,33,'_menu_item_megamenu_heading',''),(143,33,'_menu_item_megamenu_widgetarea',''),(144,33,'_menu_item_icon',''),(145,34,'_menu_item_type','post_type'),(146,34,'_menu_item_menu_item_parent','0'),(147,34,'_menu_item_object_id','23'),(148,34,'_menu_item_object','page'),(149,34,'_menu_item_target',''),(150,34,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(151,34,'_menu_item_xfn',''),(152,34,'_menu_item_url',''),(153,34,'_menu_item_template',''),(154,34,'_menu_item_mega_template',''),(155,34,'_menu_item_nolink',''),(156,34,'_menu_item_category_post',''),(157,34,'_menu_item_megamenu',''),(158,34,'_menu_item_megamenu_auto_width',''),(159,34,'_menu_item_megamenu_col',''),(160,34,'_menu_item_megamenu_heading',''),(161,34,'_menu_item_megamenu_widgetarea',''),(162,34,'_menu_item_icon',''),(163,35,'_menu_item_type','post_type'),(164,35,'_menu_item_menu_item_parent','0'),(165,35,'_menu_item_object_id','24'),(166,35,'_menu_item_object','page'),(167,35,'_menu_item_target',''),(168,35,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(169,35,'_menu_item_xfn',''),(170,35,'_menu_item_url',''),(171,35,'_menu_item_template',''),(172,35,'_menu_item_mega_template',''),(173,35,'_menu_item_nolink',''),(174,35,'_menu_item_category_post',''),(175,35,'_menu_item_megamenu',''),(176,35,'_menu_item_megamenu_auto_width',''),(177,35,'_menu_item_megamenu_col',''),(178,35,'_menu_item_megamenu_heading',''),(179,35,'_menu_item_megamenu_widgetarea',''),(180,35,'_menu_item_icon',''),(181,36,'_menu_item_type','post_type'),(182,36,'_menu_item_menu_item_parent','0'),(183,36,'_menu_item_object_id','25'),(184,36,'_menu_item_object','page'),(185,36,'_menu_item_target',''),(186,36,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(187,36,'_menu_item_xfn',''),(188,36,'_menu_item_url',''),(189,36,'_menu_item_template',''),(190,36,'_menu_item_mega_template',''),(191,36,'_menu_item_nolink',''),(192,36,'_menu_item_category_post',''),(193,36,'_menu_item_megamenu',''),(194,36,'_menu_item_megamenu_auto_width',''),(195,36,'_menu_item_megamenu_col',''),(196,36,'_menu_item_megamenu_heading',''),(197,36,'_menu_item_megamenu_widgetarea',''),(198,36,'_menu_item_icon',''),(199,37,'_menu_item_type','post_type'),(200,37,'_menu_item_menu_item_parent','0'),(201,37,'_menu_item_object_id','27'),(202,37,'_menu_item_object','page'),(203,37,'_menu_item_target',''),(204,37,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(205,37,'_menu_item_xfn',''),(206,37,'_menu_item_url',''),(207,37,'_menu_item_template',''),(208,37,'_menu_item_mega_template',''),(209,37,'_menu_item_nolink',''),(210,37,'_menu_item_category_post',''),(211,37,'_menu_item_megamenu',''),(212,37,'_menu_item_megamenu_auto_width',''),(213,37,'_menu_item_megamenu_col',''),(214,37,'_menu_item_megamenu_heading',''),(215,37,'_menu_item_megamenu_widgetarea',''),(216,37,'_menu_item_icon',''),(250,21,'ocean_post_layout','full-width'),(263,51,'_elementor_edit_mode','builder'),(264,51,'_elementor_data','[{\"id\":\"075c5de\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"00602ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5cd70bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"MsoNormal\\\" style=\\\"margin-bottom: 4.5pt; line-height: 15.75pt;\\\"><span style=\\\"font-size: 10.5pt; font-family: \'&amp;quot\',\'serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-bidi-font-family: \'Times New Roman\'; color: black; mso-themecolor: text1;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic affiliated with the Kansas College of Chinese Medicine. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<br \\/> <br \\/> Click on the video to hear the amazing story of one of our stroke rehabilitation patients, <\\/span><span style=\\\"font-size: 10.5pt; mso-bidi-font-size: 11.0pt; font-family: \'&amp;quot\',\'serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-bidi-font-family: \'Times New Roman\'; color: black; mso-themecolor: text1;\\\">Malinda Wedal<\\/span><span style=\\\"font-size: 10.5pt; font-family: \'&amp;quot\',\'serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-bidi-font-family: \'Times New Roman\'; color: black; mso-themecolor: text1;\\\">.<\\/span><\\/p><p class=\\\"MsoNormal\\\" style=\\\"margin-bottom: 4.5pt; line-height: 15.75pt;\\\"><span style=\\\"font-size: 10.5pt; font-family: \'&amp;quot\',\'serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-bidi-font-family: \'Times New Roman\'; color: black; mso-themecolor: text1;\\\">\\u00a0<\\/span><\\/p><p style=\\\"margin: 0in 0in 0.0001pt; line-height: 15.75pt;\\\"><strong><span style=\\\"font-size: 10.5pt; font-family: \'&amp;quot\', serif; color: black; padding: 0in; font-weight: normal; border: 1pt none windowtext;\\\">Mission Statement <\\/span><\\/strong><\\/p><p style=\\\"margin: 0in 0in 0.0001pt; line-height: 15.75pt;\\\"><span style=\\\"font-size: 10.5pt; font-family: \'&amp;quot\', serif; color: black; padding: 0in; border: 1pt none windowtext;\\\">The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/span><\\/p><p>\\u00a0<\\/p><p style=\\\"margin: 0in 0in 0.0001pt; line-height: 15.75pt;\\\"><span style=\\\"font-size: 10.5pt; font-family: \'&amp;quot\', serif; color: black; padding: 0in; border: 1pt none windowtext;\\\">Got a question?\\u00a0 <\\/span><a href=\\\"https:\\/\\/web.archive.org\\/web\\/20161104004911\\/http:\\/evergreenwellness.com\\/AskDoctor.aspx\\\"><span style=\\\"font-size: 10.5pt; font-family: \'&amp;quot\', serif; color: black; padding: 0in; border: 1pt none windowtext;\\\">Ask a Doctor<\\/span><\\/a><span style=\\\"font-size: 10.5pt; font-family: \'&amp;quot\', serif; color: black; padding: 0in; border: 1pt none windowtext;\\\">.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae2fc55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"dd40e23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3eedcaa\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"bdc1290\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(262,51,'_elementor_template_type','post'),(261,51,'_wp_page_template','default'),(255,21,'_elementor_template_type','post'),(260,21,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/1a.jpg\",\"id\":604}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>&nbsp;May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"text_color\":\"#7a7a7a\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a16c354\",\"elType\":\"widget\",\"settings\":{\"title\":\"If you have any questions, please contact us.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7737759\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"69bcd84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3c023a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"background_color\":\"#1a8207\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(265,21,'_elementor_version','0.4'),(1250,305,'_elementor_version','0.4'),(1251,305,'_elementor_edit_mode','builder'),(1226,300,'_wp_attached_file','2018/04/cropped-11-1.jpg'),(1227,300,'_wp_attachment_context','custom-header'),(1228,300,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:24:\"2018/04/cropped-11-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"cropped-11-1-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:24:\"cropped-11-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"cropped-11-1-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"cropped-11-1-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;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:{}}s:17:\"attachment_parent\";i:285;}'),(1230,300,'_wp_attachment_custom_header_last_used_oceanwp','1522805852'),(1231,300,'_wp_attachment_is_custom_header','oceanwp'),(1234,302,'_elementor_template_type','page'),(1235,302,'_elementor_edit_mode','builder'),(1236,302,'_elementor_data','[{\"id\":\"1b3cc680\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":784},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"28194790\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"5edbadc0\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Visit our restaurants across the UK\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Georgia\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e219309\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":4},\"color\":\"#f4b522\",\"width\":{\"unit\":\"%\",\"size\":8},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6d1f1831\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Choose from any of our six premium locations, and enjoy top quality dishes prepared by our professional chefs to please your palate.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.7\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(311,63,'_wp_page_template','default'),(312,63,'_elementor_template_type','post'),(313,63,'_elementor_edit_mode','builder'),(314,63,'_elementor_data','[]'),(315,63,'_elementor_version','0.4'),(321,21,'_elementor_edit_mode','builder'),(975,219,'_wp_page_template','default'),(977,219,'_elementor_edit_mode','builder'),(982,223,'_wp_attached_file','2018/04/green_grass_14-wallpaper-1280x1024.jpg'),(983,223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1024;s:4:\"file\";s:46:\"2018/04/green_grass_14-wallpaper-1280x1024.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"green_grass_14-wallpaper-1280x1024-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:46:\"green_grass_14-wallpaper-1280x1024-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"green_grass_14-wallpaper-1280x1024-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"green_grass_14-wallpaper-1280x1024-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"green_grass_14-wallpaper-1280x1024-400x320.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:320;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:{}}}'),(1136,274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:15:\"2018/04/bbj.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bbj-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:15:\"bbj-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"bbj-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"bbj-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"bbj-400x225.jpg\";s:5:\"width\";i:400;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:{}}}'),(1137,274,'_wp_attachment_is_custom_background','nikko-portfolio'),(1135,274,'_wp_attached_file','2018/04/bbj.jpg'),(993,223,'_wp_attachment_is_custom_background','nikko-portfolio'),(1262,307,'_elementor_version','0.4'),(1263,307,'_elementor_edit_mode','builder'),(1283,312,'_wp_page_template','default'),(1284,312,'_elementor_template_type','post'),(1285,312,'_elementor_data','[{\"id\":\"47945f32\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1321},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"heading_visibility\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":0,\"bottom\":\"16\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"77470a13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"72023398\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Evergreen Wellness Center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Georgia\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7494c53c\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":4},\"color\":\"#23a455\",\"width\":{\"unit\":\"%\",\"size\":8},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fb67322\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>May you have a good health and longevity ... like the Evergreen.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.7\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(974,219,'_edit_lock','1522793325:1'),(1198,289,'_elementor_data','[{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1676,410,'_wp_page_template','default'),(1216,297,'_wp_page_template','page-templates/full-width.php'),(1217,297,'_elementor_edit_mode','builder'),(1218,297,'_elementor_data','[{\"id\":\"a945cdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e62b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5246e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture\",\"title_color\":\"#000000\",\"header_size\":\"h1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1482aef\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0e7e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c051a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/ac7.jpg\",\"id\":137}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e0ffa16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15744fe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/Acupuncture500-1.jpg\",\"id\":143}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72a9504\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b39eba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/acupuncture_500-e1522635045797.jpg\",\"id\":144}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c0f0005\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"753c81b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5740abf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.<\\/p><h3>Acupuncture can be used to treat all types of health issues:<\\/h3><p>Addictions<br \\/> Allergies<br \\/> Cosmetic procedures (such as acupuncture for face lifting)<br \\/> Degenerative diseases due to aging<br \\/> Depression<br \\/> Men\\u2019s Health<br \\/> Pain Management<br \\/> Stroke Rehabilitation<br \\/> Weight Loss and Management<br \\/> Women\\u2019s Health (PMS, Menopause, Low libido, Infertility, etc.)<\\/p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.<\\/p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.<\\/p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec0d743\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8d51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"93a445e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Herbal Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38708fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b63b587\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5dd77b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17814.jpg\",\"id\":145}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2abd357\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c23e197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/jt-ai-020223846.jpg\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"302e538\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c678bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17815.jpg\",\"id\":146}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"65f85cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"19ec65f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17845.jpg\",\"id\":147}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a441ce4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c027e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8075edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.<\\/p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.<\\/p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617123300\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an herbal consultation today!<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1050842\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"312fd40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b26e839\",\"elType\":\"widget\",\"settings\":{\"title\":\"Massage\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c22f36b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2d5a971\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f4ebd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nmm.jpg\",\"id\":151}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1d5f1ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ea50966\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nm.jpg\",\"id\":149}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f3901a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8f9a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nl.jpg\",\"id\":150}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22995b2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5aa6a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9419cff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>O<\\/strong><strong>riental Bodywork<\\/strong><\\/p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:<\\/p><p>Reduced stress and anxiety<br \\/> Relief from muscle tension and joint stiffness<br \\/> Increased blood circulation<br \\/> Reduced heart rate<br \\/> Induces relaxation<br \\/> Reduces back pain<br \\/> Relieves depression and insomnia<br \\/> Relieves Myofascial and Fibromyalgia pain<br \\/> Releives headaches\\/migraines<\\/p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.<\\/p><p>For more information about our massage therapists on staff, click <a title=\\\"Our Staff\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=46\\\">HERE<\\/a>.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment with one of our massage therapists.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d5284f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54a0c3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1bf07a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Qigong\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f518dd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d37e106\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"569f061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/taiji.jpg\",\"id\":152}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"91a2607\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"794de3c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/th.jpg\",\"id\":154}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e58b2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8e03323\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57bb45a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"contents\\\" class=\\\"clearfix\\\"><div id=\\\"maincol\\\"><div class=\\\"post\\\">\\u00a0<\\/div><\\/div><\\/div><div><p>Qigong (pronounced Chee Kung)\\u00a0is a method that combines body movement, breath exercise and mental concentration to exercise the body\\u2019s vital energy, or \\u201cQi\\u201d. In China, Qigong is widely accepted for it\\u2019s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.<\\/p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body\\u2019s immune ability, postpone the aging process and develop the body\\u2019s potential.<\\/p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:<\\/p><p>Anemia<br \\/> Anxiety\\/Depression<br \\/> Arthritis<br \\/> Asthma<br \\/> Back Pain<br \\/> Bone Density<br \\/> Body Strength\\/Flexibility<br \\/> Concentration\\/Memory<br \\/> Hearing or Vision Impairment<br \\/> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br \\/> Immune Cell Activity\\/Dysfunction<br \\/> Kidney Deficiencies<br \\/> Mental Health<br \\/> Overall Health and Well Being<br \\/> Sexual Dysfunction<br \\/> Tinnitus<br \\/> Weight Management<\\/p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner\\u2019s supervision. The second approach, External Qi\\u00a0healing, is a process whereby the Qigong practitioner\\u2019s energy is used to stimulate and balance the patient\\u2019s Qi\\u00a0so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.<\\/p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160503111017\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment for a Qigong consultation.<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f82c1f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f1ada06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1064,250,'_wp_attached_file','2018/04/9.jpg'),(1065,250,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:768;s:4:\"file\";s:13:\"2018/04/9.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"9-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:13:\"9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"9-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:13:\"9-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;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:{}}}'),(1066,250,'_wp_attachment_is_custom_background','nikko-portfolio'),(1189,287,'_elementor_version','0.4'),(1190,287,'_elementor_edit_mode','builder'),(1199,289,'_elementor_version','0.4'),(1200,289,'_elementor_edit_mode','builder'),(2242,533,'_elementor_version','0.4'),(2243,533,'_elementor_template_type','post'),(2244,533,'_elementor_edit_mode','builder'),(2263,540,'_elementor_edit_mode','builder'),(2264,540,'_elementor_template_type','post'),(2265,540,'_elementor_data','[{\"id\":\"1f2cde97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/4.png\",\"id\":538},\"background_position\":\"bottom right\"},\"elements\":[{\"id\":\"e6ca9ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"105ded37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f61811\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-718e069e elementor-widget elementor-widget-heading\\\" data-id=\\\"718e069e\\\" data-element_type=\\\"heading.default\\\"><h4 class=\\\"elementor-widget-container\\\">Need an expert?<\\/h4><h4 class=\\\"elementor-widget-container\\\">you are more than welcomed to leave your contact info<\\/h4><h4 class=\\\"elementor-widget-container\\\">and we will be in touch shortly<\\/h4><\\/div>\",\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"9\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\",\"background_background\":\"classic\",\"background_color\":\"#f4f4f4\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Contact Us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#23a455\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":\"13\"},\"text_color\":\"#636363\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ad0d881\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"177\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(1148,278,'_wp_attached_file','2018/04/cropped-ac7.jpg'),(1149,278,'_wp_attachment_context','custom-header'),(1150,278,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:420;s:6:\"height\";i:140;s:4:\"file\";s:23:\"2018/04/cropped-ac7.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"cropped-ac7-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"cropped-ac7-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"cropped-ac7-400x133.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:133;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:{}}s:17:\"attachment_parent\";i:137;}'),(1151,278,'_wp_attachment_custom_header_last_used_custom-lite','1522788399'),(1152,278,'_wp_attachment_is_custom_header','custom-lite'),(1153,279,'_wp_attached_file','2018/04/cropped-mhrf-cpmh17815.jpg'),(1154,279,'_wp_attachment_context','custom-header'),(1155,279,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:133;s:4:\"file\";s:34:\"2018/04/cropped-mhrf-cpmh17815.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cropped-mhrf-cpmh17815-150x133.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"cropped-mhrf-cpmh17815-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"cropped-mhrf-cpmh17815-400x133.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:133;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:{}}s:17:\"attachment_parent\";i:146;}'),(1156,279,'_wp_attachment_custom_header_last_used_custom-lite','1522788438'),(1157,279,'_wp_attachment_is_custom_header','custom-lite'),(1158,280,'_wp_attached_file','2018/04/h.jpeg'),(1159,280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:563;s:4:\"file\";s:14:\"2018/04/h.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"h-150x150.jpeg\";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:14:\"h-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"h-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"h-400x225.jpeg\";s:5:\"width\";i:400;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:{}}}'),(1160,281,'_wp_attached_file','2018/04/cropped-h.jpeg'),(1161,281,'_wp_attachment_context','custom-header'),(1162,281,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:333;s:4:\"file\";s:22:\"2018/04/cropped-h.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cropped-h-150x150.jpeg\";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:\"cropped-h-300x100.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"cropped-h-768x256.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"cropped-h-400x133.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:133;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:{}}s:17:\"attachment_parent\";i:280;}'),(1163,281,'_wp_attachment_custom_header_last_used_custom-lite','1522788513'),(1164,281,'_wp_attachment_is_custom_header','custom-lite'),(1174,285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1720;s:6:\"height\";i:1532;s:4:\"file\";s:16:\"2018/04/11-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"11-1-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:\"11-1-300x267.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"11-1-768x684.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"11-1-1024x912.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:912;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"nikko-portfolio-blog\";a:4:{s:4:\"file\";s:17:\"11-1-1084x966.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:966;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"nikko-portfolio-masonry\";a:4:{s:4:\"file\";s:16:\"11-1-361x322.jpg\";s:5:\"width\";i:361;s:6:\"height\";i:322;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(1173,285,'_wp_attached_file','2018/04/11-1.jpg'),(1175,285,'_wp_attachment_is_custom_background','mh-magazine-lite'),(1178,21,'_oembed_9aa4c860375ed2e0ccb186fd6cb82903','<iframe src=\"https://player.vimeo.com/video/194991450?app_id=122963\" width=\"480\" height=\"360\" frameborder=\"0\" title=\"What Is Bigu Qigong\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>'),(1179,21,'_oembed_time_9aa4c860375ed2e0ccb186fd6cb82903','1522790035'),(304,62,'_wp_page_template','default'),(305,62,'_elementor_template_type','post'),(306,62,'_elementor_edit_mode','builder'),(307,62,'_elementor_data','[{\"id\":\"1d568122\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"52\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/study_cover.jpg\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#504992\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"5a3b05dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"50.702\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f0f19d1\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=LFkrBtQOOH4\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"url\":\"\",\"id\":\"\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":12,\"vertical\":15,\"blur\":36,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.46)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"6bbb8e76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"49.298\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"24d3b980\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"How to Make a Website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"54\"},\"typography_font_family\":\"Playfair Display\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.4},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d50aef9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>This\\u00a08 hour course will teach you all the required skills needed when designing and developing a live\\u00a0WordPress website, including using the advanced options of\\u00a0HTML and CSS.<\\/p>\",\"section_style\":\"\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\"},\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.9},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"684fcb85\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Start your Free trial\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align\":\"left\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_family\":\"Poppins\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5},\"background_color\":\"#22b3a4\",\"border_border\":\"solid\",\"border_color\":\"#22b3a4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"50\",\"bottom\":\"15\",\"left\":\"50\",\"isLinked\":false},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"rgba(0,0,0,0)\",\"button_hover_border_color\":\"#ffffff\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a35b872\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"36cd580d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"30a90769\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"view\":\"stacked\",\"icon\":\"fa fa-connectdevelop\",\"title_text\":\"Who is it for?\",\"description_text\":\"The course is aimed at anyone who wants to create websites on their own, and possibly work as a freelancer or employee in the field of web design and development. We cover everything, so even if you\'ve never seen HTML code in your life, you\'ll be able to quickly jump in.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_icon\":\"\",\"primary_color\":\"#504992\",\"icon_space\":{\"unit\":\"px\",\"size\":69},\"icon_size\":{\"unit\":\"px\",\"size\":\"23\"},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"section_style_content\":\"\",\"heading_title\":\"\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":58},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":14},\"title_color\":\"#474545\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":41},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8},\"heading_description\":\"\",\"description_color\":\"#726f6f\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\"},\"description_typography_font_family\":\"Poppins\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":2.2},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.8},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.9\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"d7bdc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"163ebda6\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":\"53\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/study_1.jpg\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"85\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b3f52a3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"#e3e4e8\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"5f4b2089\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"1b49a6da\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"our teaching team\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#474545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"41\"},\"typography_font_family\":\"Playfair Display\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"3.5\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f4a7042\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"structure\":\"30\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"90dbab5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"434513ca\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":\"54\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/teacther1.png\"},\"align\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":100},\"opacity\":{\"unit\":\"px\",\"size\":1},\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26e593cb\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Stella Lindley\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#474545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47f5d6f4\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"ui\\/ux web master\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#b6baba\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_family\":\"Playfair Display\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e97357b\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>A strict teacher that has been teaching since the age of 16. Stella won\'t give you any slack, so you will have to do the very best work you\'ve done in your life.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#5e5d5d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\"},\"typography_font_family\":\"Poppins\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b70ec4e\",\"elType\":\"widget\",\"settings\":{\"section_social_icon\":\"\",\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"1q7inly\"},{\"social\":\"fa fa-twitter\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"qw9z55k\"},{\"social\":\"fa fa-google-plus\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"1kfdigf\"}],\"shape\":\"circle\",\"section_social_style\":\"\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#504992\",\"icon_secondary_color\":\"#ffffff\",\"icon_size\":{\"unit\":\"px\",\"size\":\"14\"},\"icon_padding\":{\"unit\":\"em\",\"size\":0.8},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"15\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"639ccf67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d254982\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":\"55\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/teacher2.jpg\"},\"align\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":100},\"opacity\":{\"unit\":\"px\",\"size\":1},\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fccdbb0\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Donald Martin\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#474545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7fabf320\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\" Computer Science\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#b6baba\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_family\":\"Playfair Display\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"483c0ce9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Donald has a PHD in both Computer Science and Design. His beginner course is a must see for any aspiring web professional who want to learn from the best.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#5e5d5d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\"},\"typography_font_family\":\"Poppins\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"66bc393\",\"elType\":\"widget\",\"settings\":{\"section_social_icon\":\"\",\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"lf5yt4c\"},{\"social\":\"fa fa-twitter\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"01xie82\"},{\"social\":\"fa fa-google-plus\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"grhvqhn\"}],\"shape\":\"circle\",\"section_social_style\":\"\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#504992\",\"icon_secondary_color\":\"#ffffff\",\"icon_size\":{\"unit\":\"px\",\"size\":\"14\"},\"icon_padding\":{\"unit\":\"em\",\"size\":0.8},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"15\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"216c31c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"409d8db8\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":\"56\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/teacher3.jpg\"},\"align\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":100},\"opacity\":{\"unit\":\"px\",\"size\":1},\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e407c78\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Gaby Williams\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#474545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11e99fd6\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"AI Expert\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#b6baba\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_family\":\"Playfair Display\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1fea2bcb\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>If there\'s someone who can explain anything, Gaby is the one. She\\u00a0teaches\\u00a0you not just how to do something, but why to do it this way and not the other.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#5e5d5d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\"},\"typography_font_family\":\"Poppins\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2aa62d52\",\"elType\":\"widget\",\"settings\":{\"section_social_icon\":\"\",\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"1j7enrh\"},{\"social\":\"fa fa-twitter\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"mw0ffet\"},{\"social\":\"fa fa-google-plus\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"39ofihx\"}],\"shape\":\"circle\",\"section_social_style\":\"\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#504992\",\"icon_secondary_color\":\"#ffffff\",\"icon_size\":{\"unit\":\"px\",\"size\":\"14\"},\"icon_padding\":{\"unit\":\"em\",\"size\":0.8},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"15\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55c81d7b\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"7443afbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"78af0eb5\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":\"57\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/study-box_1.jpg\"},\"align\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":100},\"opacity\":{\"unit\":\"px\",\"size\":1},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3ff60fd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#e3e4e8\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a24c6f7\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon\":\"fa fa-graduation-cap\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_icon\":\"\",\"primary_color\":\"#22b3a4\",\"icon_padding\":{\"unit\":\"em\",\"size\":0.5},\"section_hover\":\"\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"40c8a174\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Practice makes perfect\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#474545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_font_family\":\"Playfair Display\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c6b17d8\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>We know about your hectic schedule. We also know the only way you truly understand a subject is by practicing it in a real environment. This is why we\'ve set a playground area that\'s full of hours of exercises, questions and challenges. It\\u00a0even has a gaming section.\\u00a0<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#898181\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Poppins\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"172636e6\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"78bb3b01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#e3e4e8\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"6db75b9f\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon\":\"fa fa-fort-awesome\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_icon\":\"\",\"primary_color\":\"#22b3a4\",\"icon_padding\":{\"unit\":\"em\",\"size\":0.5},\"section_hover\":\"\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5f54de0b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"The best campus facilities\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#474545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_font_family\":\"Playfair Display\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"475d641c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>In addition to our online classroom, we also offer an option to take part in a live classroom. It\\u00a0takes place in our vast campus located in Westfield, London. Here you\'ll be able to use the most up-to-date facilities and computer equipment.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#898181\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Poppins\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6664ddfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4d138ee2\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":\"58\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/library.jpg\"},\"align\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":100},\"opacity\":{\"unit\":\"px\",\"size\":1},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3467d51f\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"59\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/study-footer.jpg\"},\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"29541bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"54876e20\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Learn from the very best\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Playfair Display\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f4b51dc\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Join our course and start building the most\\u00a0wanted career available today. We make sure every class is easily understood, and that all students reach the same level of expertise needed for today\'s hi-tech industry.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\"},\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e968ccc\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2bcee05c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"45.446\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53179641\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon\":\"fa fa-clock-o\",\"title_text\":\"Working hours\",\"description_text\":\"Monday- Thursday:8:00-18:30 Hrs <br>(Phone until 17:30 Hrs)<br>Friday - 8:00-14:00\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_icon\":\"\",\"primary_color\":\"#504992\",\"icon_padding\":{\"unit\":\"em\",\"size\":0.5},\"section_hover\":\"\",\"section_style_content\":\"\",\"heading_title\":\"\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\"},\"title_typography_font_family\":\"Playfair Display\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"0\"},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5},\"heading_description\":\"\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"description_typography_font_family\":\"Poppins\",\"description_typography_font_weight\":\"100\",\"_section_style\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.25)\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"35\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1d3a17e6\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon\":\"fa fa-map-marker\",\"title_text\":\"We are here\",\"description_text\":\"Westfield London 2039-2041 Westfield <br>Phone:+44 20 8834 4688 <br>Fax:+44 20 8859 6598 <br>Email: info@collage.com\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_icon\":\"\",\"primary_color\":\"#504992\",\"icon_padding\":{\"unit\":\"em\",\"size\":0.5},\"section_hover\":\"\",\"section_style_content\":\"\",\"heading_title\":\"\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\"},\"title_typography_font_family\":\"Playfair Display\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"0\"},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5},\"heading_description\":\"\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"description_typography_font_family\":\"Poppins\",\"description_typography_font_weight\":\"100\",\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.25)\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"35\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1e0a489c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"54.554\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"604fac6a\",\"elType\":\"widget\",\"settings\":{\"section_map\":\"\",\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":\"440\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(291,60,'_wp_page_template','default'),(292,60,'_elementor_template_type','post'),(293,60,'_elementor_edit_mode','builder'),(294,60,'_elementor_data','[{\"id\":\"075c5de\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"00602ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5cd70bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"MsoNormal\\\" style=\\\"margin-bottom: 4.5pt; line-height: 15.75pt;\\\"><span style=\\\"font-size: 10.5pt; font-family: \'&amp;quot\',\'serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-bidi-font-family: \'Times New Roman\'; color: black; mso-themecolor: text1;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic affiliated with the Kansas College of Chinese Medicine. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<br \\/> <br \\/> Click on the video to hear the amazing story of one of our stroke rehabilitation patients, <\\/span><span style=\\\"font-size: 10.5pt; mso-bidi-font-size: 11.0pt; font-family: \'&amp;quot\',\'serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-bidi-font-family: \'Times New Roman\'; color: black; mso-themecolor: text1;\\\">Malinda Wedal<\\/span><span style=\\\"font-size: 10.5pt; font-family: \'&amp;quot\',\'serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-bidi-font-family: \'Times New Roman\'; color: black; mso-themecolor: text1;\\\">.<\\/span><\\/p><p class=\\\"MsoNormal\\\" style=\\\"margin-bottom: 4.5pt; line-height: 15.75pt;\\\"><span style=\\\"font-size: 10.5pt; font-family: \'&amp;quot\',\'serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-bidi-font-family: \'Times New Roman\'; color: black; mso-themecolor: text1;\\\">\\u00a0<\\/span><\\/p><p style=\\\"margin: 0in 0in 0.0001pt; line-height: 15.75pt;\\\"><strong><span style=\\\"font-size: 10.5pt; font-family: \'&amp;quot\', serif; color: black; padding: 0in; font-weight: normal; border: 1pt none windowtext;\\\">Mission Statement <\\/span><\\/strong><\\/p><p style=\\\"margin: 0in 0in 0.0001pt; line-height: 15.75pt;\\\"><span style=\\\"font-size: 10.5pt; font-family: \'&amp;quot\', serif; color: black; padding: 0in; border: 1pt none windowtext;\\\">The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/span><\\/p><p>\\u00a0<\\/p><p style=\\\"margin: 0in 0in 0.0001pt; line-height: 15.75pt;\\\"><span style=\\\"font-size: 10.5pt; font-family: \'&amp;quot\', serif; color: black; padding: 0in; border: 1pt none windowtext;\\\">Got a question?\\u00a0 <\\/span><a href=\\\"https:\\/\\/web.archive.org\\/web\\/20161104004911\\/http:\\/evergreenwellness.com\\/AskDoctor.aspx\\\"><span style=\\\"font-size: 10.5pt; font-family: \'&amp;quot\', serif; color: black; padding: 0in; border: 1pt none windowtext;\\\">Ask a Doctor<\\/span><\\/a><span style=\\\"font-size: 10.5pt; font-family: \'&amp;quot\', serif; color: black; padding: 0in; border: 1pt none windowtext;\\\">.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae2fc55\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"dd40e23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3eedcaa\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"bdc1290\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"213f57fa\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":52,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/study_cover.jpg\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#504992\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2fd0db2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"50.702\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5921d954\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=LFkrBtQOOH4\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"url\":\"\",\"id\":\"\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":12,\"vertical\":15,\"blur\":36,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.46)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"7183dc0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"49.298\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"34c219ee\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"How to Make a Website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"54\"},\"typography_font_family\":\"Playfair Display\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.4},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7be4387f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>This\\u00a08 hour course will teach you all the required skills needed when designing and developing a live\\u00a0WordPress website, including using the advanced options of\\u00a0HTML and CSS.<\\/p>\",\"section_style\":\"\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\"},\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.9},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6de6466d\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Start your Free trial\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align\":\"left\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_family\":\"Poppins\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5},\"background_color\":\"#22b3a4\",\"border_border\":\"solid\",\"border_color\":\"#22b3a4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"50\",\"bottom\":\"15\",\"left\":\"50\",\"isLinked\":false},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"rgba(0,0,0,0)\",\"button_hover_border_color\":\"#ffffff\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46669fa1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"42babbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"61c06843\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"view\":\"stacked\",\"icon\":\"fa fa-connectdevelop\",\"title_text\":\"Who is it for?\",\"description_text\":\"The course is aimed at anyone who wants to create websites on their own, and possibly work as a freelancer or employee in the field of web design and development. We cover everything, so even if you\'ve never seen HTML code in your life, you\'ll be able to quickly jump in.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_icon\":\"\",\"primary_color\":\"#504992\",\"icon_space\":{\"unit\":\"px\",\"size\":69},\"icon_size\":{\"unit\":\"px\",\"size\":\"23\"},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"section_style_content\":\"\",\"heading_title\":\"\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":58},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":14},\"title_color\":\"#474545\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":41},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8},\"heading_description\":\"\",\"description_color\":\"#726f6f\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\"},\"description_typography_font_family\":\"Poppins\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":2.2},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.8},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.9\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"551e13db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7ec9a78\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/study_1.jpg\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"85\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"77c2ca9b\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"#e3e4e8\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"9e3acaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"65bf8b3d\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"our teaching team\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#474545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"41\"},\"typography_font_family\":\"Playfair Display\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"3.5\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f3963b5\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"structure\":\"30\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"3bc1dcb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cdd74b5\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":54,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/teacther1.png\"},\"align\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":100},\"opacity\":{\"unit\":\"px\",\"size\":1},\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"36798cd7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Stella Lindley\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#474545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ea57087\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"ui\\/ux web master\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#b6baba\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_family\":\"Playfair Display\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f569b\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>A strict teacher that has been teaching since the age of 16. Stella won\'t give you any slack, so you will have to do the very best work you\'ve done in your life.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#5e5d5d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\"},\"typography_font_family\":\"Poppins\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1648bc22\",\"elType\":\"widget\",\"settings\":{\"section_social_icon\":\"\",\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"1q7inly\"},{\"social\":\"fa fa-twitter\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"qw9z55k\"},{\"social\":\"fa fa-google-plus\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"1kfdigf\"}],\"shape\":\"circle\",\"section_social_style\":\"\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#504992\",\"icon_secondary_color\":\"#ffffff\",\"icon_size\":{\"unit\":\"px\",\"size\":\"14\"},\"icon_padding\":{\"unit\":\"em\",\"size\":0.8},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"15\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"208b6b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"474a5d5b\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":55,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/teacher2.jpg\"},\"align\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":100},\"opacity\":{\"unit\":\"px\",\"size\":1},\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62fcfa47\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Donald Martin\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#474545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30c50938\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\" Computer Science\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#b6baba\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_family\":\"Playfair Display\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d98fd74\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Donald has a PHD in both Computer Science and Design. His beginner course is a must see for any aspiring web professional who want to learn from the best.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#5e5d5d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\"},\"typography_font_family\":\"Poppins\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"70d3496b\",\"elType\":\"widget\",\"settings\":{\"section_social_icon\":\"\",\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"lf5yt4c\"},{\"social\":\"fa fa-twitter\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"01xie82\"},{\"social\":\"fa fa-google-plus\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"grhvqhn\"}],\"shape\":\"circle\",\"section_social_style\":\"\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#504992\",\"icon_secondary_color\":\"#ffffff\",\"icon_size\":{\"unit\":\"px\",\"size\":\"14\"},\"icon_padding\":{\"unit\":\"em\",\"size\":0.8},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"15\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8f6f9a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"72297e2d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":56,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/teacher3.jpg\"},\"align\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":100},\"opacity\":{\"unit\":\"px\",\"size\":1},\"image_border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f3d8e69\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Gaby Williams\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#474545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e3715c0\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"AI Expert\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#b6baba\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_family\":\"Playfair Display\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10816609\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>If there\'s someone who can explain anything, Gaby is the one. She\\u00a0teaches\\u00a0you not just how to do something, but why to do it this way and not the other.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#5e5d5d\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\"},\"typography_font_family\":\"Poppins\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"48c93da\",\"elType\":\"widget\",\"settings\":{\"section_social_icon\":\"\",\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"1j7enrh\"},{\"social\":\"fa fa-twitter\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"mw0ffet\"},{\"social\":\"fa fa-google-plus\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"39ofihx\"}],\"shape\":\"circle\",\"section_social_style\":\"\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#504992\",\"icon_secondary_color\":\"#ffffff\",\"icon_size\":{\"unit\":\"px\",\"size\":\"14\"},\"icon_padding\":{\"unit\":\"em\",\"size\":0.8},\"icon_spacing\":{\"unit\":\"px\",\"size\":\"15\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69a1fbd9\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6469ce24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"772f0c47\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":57,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/study-box_1.jpg\"},\"align\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":100},\"opacity\":{\"unit\":\"px\",\"size\":1},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"acec8a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#e3e4e8\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"da1b533\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon\":\"fa fa-graduation-cap\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_icon\":\"\",\"primary_color\":\"#22b3a4\",\"icon_padding\":{\"unit\":\"em\",\"size\":0.5},\"section_hover\":\"\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"97d8047\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Practice makes perfect\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#474545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_font_family\":\"Playfair Display\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139d6132\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>We know about your hectic schedule. We also know the only way you truly understand a subject is by practicing it in a real environment. This is why we\'ve set a playground area that\'s full of hours of exercises, questions and challenges. It\\u00a0even has a gaming section.\\u00a0<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#898181\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Poppins\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2586fa52\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"e7aecbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"border_color\":\"#e3e4e8\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"6c57dd4\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon\":\"fa fa-fort-awesome\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_icon\":\"\",\"primary_color\":\"#22b3a4\",\"icon_padding\":{\"unit\":\"em\",\"size\":0.5},\"section_hover\":\"\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4f7ec18f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"The best campus facilities\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#474545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_font_family\":\"Playfair Display\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"647fc288\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>In addition to our online classroom, we also offer an option to take part in a live classroom. It\\u00a0takes place in our vast campus located in Westfield, London. Here you\'ll be able to use the most up-to-date facilities and computer equipment.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#898181\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Poppins\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"67bd179f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"5b89d52e\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":58,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/library.jpg\"},\"align\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":100},\"opacity\":{\"unit\":\"px\",\"size\":1},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"506146af\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":59,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/study-footer.jpg\"},\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f95732\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4e8a4fbb\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Learn from the very best\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Playfair Display\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75f27ff8\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Join our course and start building the most\\u00a0wanted career available today. We make sure every class is easily understood, and that all students reach the same level of expertise needed for today\'s hi-tech industry.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"16\"},\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d220158\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"f17ea76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"45.446\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"d066485\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon\":\"fa fa-clock-o\",\"title_text\":\"Working hours\",\"description_text\":\"Monday- Thursday:8:00-18:30 Hrs <br>(Phone until 17:30 Hrs)<br>Friday - 8:00-14:00\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_icon\":\"\",\"primary_color\":\"#504992\",\"icon_padding\":{\"unit\":\"em\",\"size\":0.5},\"section_hover\":\"\",\"section_style_content\":\"\",\"heading_title\":\"\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\"},\"title_typography_font_family\":\"Playfair Display\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"0\"},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5},\"heading_description\":\"\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"description_typography_font_family\":\"Poppins\",\"description_typography_font_weight\":\"100\",\"_section_style\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.25)\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"35\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1776a3d8\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon\":\"fa fa-map-marker\",\"title_text\":\"We are here\",\"description_text\":\"Westfield London 2039-2041 Westfield <br>Phone:+44 20 8834 4688 <br>Fax:+44 20 8859 6598 <br>Email: info@collage.com\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_icon\":\"\",\"primary_color\":\"#504992\",\"icon_padding\":{\"unit\":\"em\",\"size\":0.5},\"section_hover\":\"\",\"section_style_content\":\"\",\"heading_title\":\"\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\"},\"title_typography_font_family\":\"Playfair Display\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"0\"},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5},\"heading_description\":\"\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"description_typography_font_family\":\"Poppins\",\"description_typography_font_weight\":\"100\",\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_background_background\":\"classic\",\"_background_color\":\"rgba(255,255,255,0.25)\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":\"35\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"391ee691\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"54.554\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"65d44df7\",\"elType\":\"widget\",\"settings\":{\"section_map\":\"\",\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":\"440\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(295,60,'_elementor_version','0.4'),(308,62,'_elementor_version','0.4'),(309,21,'_oembed_581ef482d2af274890468a7ac1cca04c','<iframe width=\"1200\" height=\"900\" src=\"https://www.youtube.com/embed/LFkrBtQOOH4?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(310,21,'_oembed_time_581ef482d2af274890468a7ac1cca04c','1522602343'),(1286,312,'_elementor_version','0.4'),(1287,312,'_elementor_edit_mode','builder'),(1290,313,'_wp_page_template','default'),(1291,313,'_elementor_template_type','post'),(1292,313,'_elementor_data','[{\"id\":\"47945f32\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1321},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"heading_visibility\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"77470a13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"72023398\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Evergreen Wellness Center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Georgia\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7494c53c\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":4},\"color\":\"#23a455\",\"width\":{\"unit\":\"%\",\"size\":8},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fb67322\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>May you have a good health and longevity ... like the Evergreen.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.7\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1293,313,'_elementor_version','0.4'),(1294,313,'_elementor_edit_mode','builder'),(1297,314,'_wp_page_template','default'),(1298,314,'_elementor_template_type','post'),(1299,314,'_elementor_data','[{\"id\":\"47945f32\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1321},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"heading_visibility\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"77470a13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"72023398\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Evergreen Wellness Center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Georgia\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7494c53c\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":4},\"color\":\"#23a455\",\"width\":{\"unit\":\"%\",\"size\":8},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fb67322\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>May you have a good health and longevity ... like the Evergreen.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.7\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(411,91,'_wp_page_template','default'),(412,91,'_elementor_template_type','post'),(413,91,'_elementor_data','[]'),(414,91,'_elementor_version','0.4'),(415,91,'_elementor_edit_mode','builder'),(426,95,'_wp_page_template','default'),(427,95,'_elementor_template_type','post'),(428,95,'_elementor_data','[{\"id\":\"33c7fb6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"839\"},\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=ZcBw06UbAws\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#45179b\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"60\",\"left\":\"80\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"528906e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5fc1657e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"79\"},\"typography_font_family\":\"Roboto Condensed\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b21f83\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42bab9e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"BikeTour offers the most interactive activity you can experience in urban and natural surroundings. Find out how the real city comes alive when you are guided by the right person\",\"size\":\"large\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c2a4131\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"79b53a6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"join the next tour\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"section_hover\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(429,95,'_elementor_version','0.4'),(430,95,'_elementor_edit_mode','builder'),(459,101,'_elementor_data','[{\"id\":\"33c7fb6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"839\"},\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/FJC3_HtczHs\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"60\",\"left\":\"80\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"528906e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5fc1657e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"size\":\"small\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_font_family\":\"Roboto Condensed\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b21f83\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42bab9e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"May you have a good health and longevity  ... like the Evergreen\",\"size\":\"large\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c2a4131\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3e40e7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8fb3cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f66bc7a\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"08b9427\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"color_text\":\"#000000\"},\"elements\":[{\"id\":\"d146328\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(460,101,'_elementor_version','0.4'),(461,101,'_elementor_edit_mode','builder'),(437,97,'_wp_page_template','default'),(438,97,'_elementor_template_type','post'),(439,97,'_elementor_data','[{\"id\":\"33c7fb6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"839\"},\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/FJC3_HtczHs\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"60\",\"left\":\"80\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"528906e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5fc1657e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"size\":\"small\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_font_family\":\"Roboto Condensed\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b21f83\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42bab9e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"May you have a good health and longevity  ... like the Evergreen\",\"size\":\"large\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c2a4131\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3e40e7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8fb3cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f66bc7a\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"08b9427\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d146328\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.<\\/span><span style=\\\"font-family: Arial, sans-serif; font-size: 16pt;\\\">\\u00a0 I could not speak a word. I had difficulty breathing. I could not swallow and was being fed through a tube during part of my stay.\\u00a0 I was in a vegetative state and all the while the western medicine doctors continued to give me more and more medication.\\u00a0<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-family: Arial, sans-serif; font-size: 16pt;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another. My husband was told to put me in a nursing home, since I was not able to participate in any therapy in my present condition at the rehab facility.<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">\\u00a0<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor trained in TCM to examine me. \\u00a0<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">\\u00a0<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">On July 20<sup>th<\\/sup> I was moved to a nursing home in my home town.\\u00a0 Four days later, I began acupuncture treatments.\\u00a0 Initially I was transported in a motor home borrowed from a neighbor the first two weeks. (The doctor came out and treated me in the motor home.) Then I was transported in a used ambulance until the middle of September when I could finally sit and ride in a car.\\u00a0 The ride consisted of 120 miles round trip, five days a week for approximately seven months.\\u00a0 Now the good news\\u2026\\u2026\\u2026.<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">Within two weeks\\u2026<b>only<\\/b> <b>two short weeks<\\/b>, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 It was a joyous time and quite possibly the most significant change of the whole treatment, since Western medicine doctors had told my husband that speech would be one of the last things to be regained.\\u00a0 The progress I was making was absolutely phenomenal!\\u00a0 My treatments consisted of acupuncture, massage, chi gong, and herbs,\\u00a0 <\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">\\u00a0<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">By the end of August, almost three full months following the initial surgery, that glorious day I had longed for and patiently awaited, was finally here!\\u00a0 I was going home!!!!! I was off of almost all the medication, and had the catheter taken out that day.\\u00a0 I was now able to feed myself, brush my teeth, put my makeup on, and my sleep was beginning to improve. \\u00a0Who would have imagined!\\u00a0 Just a few short weeks ago I was not expected to live. My family and friends could hardly believe their eyes.\\u00a0\\u00a0 <\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">\\u00a0<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">Today, I\\u2019m able to speak, sit, stand, eat, dress, bathe, walk with the aid of a quad cane, and even drive the car. I went from bedridden to wheel chair to walker to cane during the course of my treatments.\\u00a0 I am able once again to enjoy life with my husband, children, grandchildren, and family and friends.\\u00a0 <\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">\\u00a0<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">I am a living testament as to what TCM can do for this condition.\\u00a0\\u00a0 It is better than Western medicine for this condition.\\u00a0 It merely consisted of medication that covered up symptoms and pain. Unlike this technique<b> <\\/b>which allows healing from within...the way God intended.\\u00a0 <\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">\\u00a0\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\\\">I will never forget the miracle that happened through the knowledge and skill of TCM.\\u00a0 For me, it was truly life-saving! \\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(396,89,'_wp_page_template','default'),(386,87,'_wp_page_template','default'),(381,86,'_wp_page_template','default'),(382,86,'_elementor_template_type','post'),(383,86,'_elementor_data','[{\"id\":\"650773c3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"839\"},\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=ZcBw06UbAws\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#45179b\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"60\",\"left\":\"80\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"251b76b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5db40b64\",\"elType\":\"widget\",\"settings\":{\"title\":\"May you have a good health\",\"size\":\"large\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63cfe75\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"30dfde7f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"586e4e37\",\"elType\":\"widget\",\"settings\":{\"text\":\"join the next tour\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"section_hover\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"link\":{\"url\":\"https:\\/\\/youtu.be\\/bRPWQmX_76c\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c90a382\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"800\"},\"gap\":\"no\",\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"video\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=pyl4UGSvE7k\",\"background_video_fallback\":{\"id\":77,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/vbg10.jpg\"},\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0a1600\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"51eb5fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"45549fa8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Writing, made simple.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42},\"typography_font_family\":\"Poppins\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10037e54\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"Everyone can write, but not everyone is a writer. What makes the difference is the keen eye for detail and beauty.\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"rgba(255,255,255,0.73)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"70e2aa73\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":76,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/Mackbook2.png\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"77692593\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":\"700\"},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"4564e7c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"604888de\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Hello.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63},\"typography_font_family\":\"Poppins\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2acacadc\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>I love you, won\'t you tell me your name? These immortal words by legendary musician Jim Morrison are still as relevant today, in this digital age, as they were back then.\\u00a0<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f08d96\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Let\'s Meet\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f8d0db4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6df8eb2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":73,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86262\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":\"800\"},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"242f3b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"3b88f19b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Try it Yourself\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63},\"typography_font_family\":\"Poppins\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"810eddc\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>What makes design\\u00a0so alluring? We\\u00a0believes the answer is designers. That\'s why we have made\\u00a0our entire focus on you - the designer. Your style, your ideas, your creativity.\\u00a0Go on -\\u00a0Try, share and design now!<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79a3fc8b\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Get Started\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6e64f5d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"23c12ee9\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":70,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/ma.png\"},\"align\":\"right\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":90},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_align\":\"right\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(384,86,'_elementor_version','0.4'),(385,86,'_elementor_edit_mode','builder'),(387,87,'_elementor_template_type','post'),(388,87,'_elementor_data','[{\"id\":\"650773c3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"839\"},\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=ZcBw06UbAws\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#45179b\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"60\",\"left\":\"80\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"251b76b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5db40b64\",\"elType\":\"widget\",\"settings\":{\"title\":\"May you have a good health\",\"size\":\"large\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63cfe75\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"30dfde7f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"586e4e37\",\"elType\":\"widget\",\"settings\":{\"text\":\"join the next tour\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"section_hover\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c90a382\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"800\"},\"gap\":\"no\",\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"video\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=pyl4UGSvE7k\",\"background_video_fallback\":{\"id\":77,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/vbg10.jpg\"},\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0a1600\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"51eb5fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"45549fa8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Writing, made simple.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42},\"typography_font_family\":\"Poppins\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10037e54\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"Everyone can write, but not everyone is a writer. What makes the difference is the keen eye for detail and beauty.\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"rgba(255,255,255,0.73)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"70e2aa73\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":76,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/Mackbook2.png\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"77692593\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":\"700\"},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"4564e7c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"604888de\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Hello.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63},\"typography_font_family\":\"Poppins\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2acacadc\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>I love you, won\'t you tell me your name? These immortal words by legendary musician Jim Morrison are still as relevant today, in this digital age, as they were back then.\\u00a0<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f08d96\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Let\'s Meet\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f8d0db4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6df8eb2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":73,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86262\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":\"800\"},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"242f3b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"3b88f19b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Try it Yourself\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63},\"typography_font_family\":\"Poppins\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"810eddc\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>What makes design\\u00a0so alluring? We\\u00a0believes the answer is designers. That\'s why we have made\\u00a0our entire focus on you - the designer. Your style, your ideas, your creativity.\\u00a0Go on -\\u00a0Try, share and design now!<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79a3fc8b\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Get Started\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6e64f5d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"23c12ee9\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":70,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/ma.png\"},\"align\":\"right\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":90},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_align\":\"right\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(389,87,'_elementor_version','0.4'),(390,87,'_elementor_edit_mode','builder'),(400,89,'_elementor_edit_mode','builder'),(399,89,'_elementor_version','0.4'),(398,89,'_elementor_data','[{\"id\":\"650773c3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"839\"},\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/bRPWQmX_76c\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"60\",\"left\":\"80\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"251b76b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5db40b64\",\"elType\":\"widget\",\"settings\":{\"title\":\"May you have a good health\",\"size\":\"xl\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63cfe75\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"30dfde7f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"586e4e37\",\"elType\":\"widget\",\"settings\":{\"text\":\"join the next tour\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"section_hover\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c90a382\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"800\"},\"gap\":\"no\",\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"video\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=pyl4UGSvE7k\",\"background_video_fallback\":{\"id\":77,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/vbg10.jpg\"},\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0a1600\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"51eb5fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"45549fa8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Writing, made simple.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42},\"typography_font_family\":\"Poppins\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10037e54\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"Everyone can write, but not everyone is a writer. What makes the difference is the keen eye for detail and beauty.\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"rgba(255,255,255,0.73)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"70e2aa73\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":76,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/Mackbook2.png\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"77692593\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":\"700\"},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"4564e7c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"604888de\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Hello.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63},\"typography_font_family\":\"Poppins\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2acacadc\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>I love you, won\'t you tell me your name? These immortal words by legendary musician Jim Morrison are still as relevant today, in this digital age, as they were back then.\\u00a0<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f08d96\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Let\'s Meet\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f8d0db4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6df8eb2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":73,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86262\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":\"800\"},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"242f3b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"3b88f19b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Try it Yourself\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63},\"typography_font_family\":\"Poppins\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"810eddc\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>What makes design\\u00a0so alluring? We\\u00a0believes the answer is designers. That\'s why we have made\\u00a0our entire focus on you - the designer. Your style, your ideas, your creativity.\\u00a0Go on -\\u00a0Try, share and design now!<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79a3fc8b\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Get Started\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6e64f5d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"23c12ee9\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":70,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/ma.png\"},\"align\":\"right\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":90},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_align\":\"right\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(397,89,'_elementor_template_type','post'),(1196,289,'_wp_page_template','default'),(1197,289,'_elementor_template_type','post'),(402,21,'_oembed_ef8cf93416d57d10b10fe18a624f7fc0','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/kB4U67tiQLA?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(403,21,'_oembed_time_ef8cf93416d57d10b10fe18a624f7fc0','1522606066'),(404,90,'_wp_page_template','default'),(405,90,'_elementor_template_type','post'),(406,90,'_elementor_data','[{\"id\":\"650773c3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"839\"},\"background_background\":\"video\",\"background_video_link\":\" https:\\/\\/youtu.be\\/FJC3_HtczHs\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"60\",\"left\":\"80\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"251b76b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5db40b64\",\"elType\":\"widget\",\"settings\":{\"title\":\"May you have a good health\",\"size\":\"xl\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63cfe75\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"30dfde7f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"586e4e37\",\"elType\":\"widget\",\"settings\":{\"text\":\"join the next tour\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"section_hover\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c90a382\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"800\"},\"gap\":\"no\",\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"video\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=pyl4UGSvE7k\",\"background_video_fallback\":{\"id\":77,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/vbg10.jpg\"},\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0a1600\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"51eb5fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"45549fa8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Writing, made simple.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42},\"typography_font_family\":\"Poppins\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10037e54\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"Everyone can write, but not everyone is a writer. What makes the difference is the keen eye for detail and beauty.\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"rgba(255,255,255,0.73)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"70e2aa73\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":76,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/Mackbook2.png\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"77692593\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":\"700\"},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"4564e7c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"604888de\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Hello.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63},\"typography_font_family\":\"Poppins\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2acacadc\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>I love you, won\'t you tell me your name? These immortal words by legendary musician Jim Morrison are still as relevant today, in this digital age, as they were back then.\\u00a0<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63f08d96\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Let\'s Meet\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"f8d0db4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6df8eb2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":73,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86262\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":\"800\"},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"242f3b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"3b88f19b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Try it Yourself\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63},\"typography_font_family\":\"Poppins\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"810eddc\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>What makes design\\u00a0so alluring? We\\u00a0believes the answer is designers. That\'s why we have made\\u00a0our entire focus on you - the designer. Your style, your ideas, your creativity.\\u00a0Go on -\\u00a0Try, share and design now!<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"79a3fc8b\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Get Started\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6e64f5d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"23c12ee9\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":70,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/ma.png\"},\"align\":\"right\",\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":90},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_style_caption\":\"\",\"caption_align\":\"right\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(407,90,'_elementor_version','0.4'),(408,90,'_elementor_edit_mode','builder'),(440,97,'_elementor_version','0.4'),(441,97,'_elementor_edit_mode','builder'),(447,99,'_wp_page_template','default'),(448,99,'_elementor_template_type','post'),(449,99,'_elementor_data','[{\"id\":\"33c7fb6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"839\"},\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/FJC3_HtczHs\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"60\",\"left\":\"80\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"528906e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5fc1657e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"size\":\"small\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_font_family\":\"Roboto Condensed\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b21f83\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42bab9e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"May you have a good health and longevity  ... like the Evergreen\",\"size\":\"large\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c2a4131\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3e40e7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8fb3cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f66bc7a\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"08b9427\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"color_text\":\"#000000\"},\"elements\":[{\"id\":\"d146328\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.<\\/span><span style=\\\"font-family: Arial, sans-serif; font-size: 16pt;\\\">\\u00a0 I could not speak a word. I had difficulty breathing. I could not swallow and was being fed through a tube during part of my stay.\\u00a0 I was in a vegetative state and all the while the western medicine doctors continued to give me more and more medication.\\u00a0<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-family: Arial, sans-serif; font-size: 16pt;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another. My husband was told to put me in a nursing home, since I was not able to participate in any therapy in my present condition at the rehab facility.<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">\\u00a0<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor trained in TCM to examine me. \\u00a0<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">\\u00a0<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">On July 20<sup>th<\\/sup> I was moved to a nursing home in my home town.\\u00a0 Four days later, I began acupuncture treatments.\\u00a0 Initially I was transported in a motor home borrowed from a neighbor the first two weeks. (The doctor came out and treated me in the motor home.) Then I was transported in a used ambulance until the middle of September when I could finally sit and ride in a car.\\u00a0 The ride consisted of 120 miles round trip, five days a week for approximately seven months.\\u00a0 Now the good news\\u2026\\u2026\\u2026.<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">Within two weeks\\u2026<b>only<\\/b> <b>two short weeks<\\/b>, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 It was a joyous time and quite possibly the most significant change of the whole treatment, since Western medicine doctors had told my husband that speech would be one of the last things to be regained.\\u00a0 The progress I was making was absolutely phenomenal!\\u00a0 My treatments consisted of acupuncture, massage, chi gong, and herbs,\\u00a0 <\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">\\u00a0<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">By the end of August, almost three full months following the initial surgery, that glorious day I had longed for and patiently awaited, was finally here!\\u00a0 I was going home!!!!! I was off of almost all the medication, and had the catheter taken out that day.\\u00a0 I was now able to feed myself, brush my teeth, put my makeup on, and my sleep was beginning to improve. \\u00a0Who would have imagined!\\u00a0 Just a few short weeks ago I was not expected to live. My family and friends could hardly believe their eyes.\\u00a0\\u00a0 <\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">\\u00a0<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">Today, I\\u2019m able to speak, sit, stand, eat, dress, bathe, walk with the aid of a quad cane, and even drive the car. I went from bedridden to wheel chair to walker to cane during the course of my treatments.\\u00a0 I am able once again to enjoy life with my husband, children, grandchildren, and family and friends.\\u00a0 <\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">\\u00a0<\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">I am a living testament as to what TCM can do for this condition.\\u00a0\\u00a0 It is better than Western medicine for this condition.\\u00a0 It merely consisted of medication that covered up symptoms and pain. Unlike this technique<b> <\\/b>which allows healing from within...the way God intended.\\u00a0 <\\/span><\\/p><p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\';\\\">\\u00a0\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\\\">I will never forget the miracle that happened through the knowledge and skill of TCM.\\u00a0 For me, it was truly life-saving! \\u00a0<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(457,101,'_wp_page_template','default'),(458,101,'_elementor_template_type','post'),(450,99,'_elementor_version','0.4'),(451,99,'_elementor_edit_mode','builder'),(1186,287,'_wp_page_template','default'),(1187,287,'_elementor_template_type','post'),(1188,287,'_elementor_data','[{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":43.418},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":56.604},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(469,103,'_wp_page_template','default'),(470,103,'_elementor_template_type','post'),(471,103,'_elementor_data','[{\"id\":\"33c7fb6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"839\"},\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/FJC3_HtczHs\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"60\",\"left\":\"80\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"528906e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5fc1657e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"size\":\"small\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_font_family\":\"Roboto Condensed\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b21f83\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42bab9e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"May you have a good health and longevity  ... like the Evergreen\",\"size\":\"large\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c2a4131\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><b>Weight Management -- Breathing yourself thin<\\/b><\\/p><p>\\u00a0You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\">Here<\\/a> for more detail about online class.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0e80015\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2709d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(472,103,'_elementor_version','0.4'),(473,103,'_elementor_edit_mode','builder'),(851,196,'_elementor_template_type','post'),(852,196,'_elementor_data','[{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(483,105,'_wp_page_template','default'),(484,105,'_elementor_template_type','post'),(485,105,'_elementor_data','[{\"id\":\"33c7fb6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"839\"},\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/FJC3_HtczHs\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"60\",\"left\":\"80\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"528906e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5fc1657e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"size\":\"small\",\"align\":\"center\",\"title_color\":\"#f9f9f9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_font_family\":\"Permanent Marker\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b21f83\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42bab9e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"May you have a good health and longevity  ... like the Evergreen\",\"size\":\"large\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_family\":\"Permanent Marker\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c2a4131\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(486,105,'_elementor_version','0.4'),(487,105,'_elementor_edit_mode','builder'),(850,196,'_wp_page_template','default'),(488,106,'_wp_page_template','default'),(489,106,'_elementor_template_type','post'),(490,106,'_elementor_data','[{\"id\":\"33c7fb6a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"839\"},\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/FJC3_HtczHs\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"60\",\"left\":\"80\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"528906e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5fc1657e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"size\":\"small\",\"align\":\"center\",\"title_color\":\"#f9f9f9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_font_family\":\"Permanent Marker\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"60\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":44},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b21f83\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42bab9e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"May you have a good health and longevity  ... like the Evergreen\",\"size\":\"large\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"typography_font_family\":\"Permanent Marker\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c2a4131\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(491,106,'_elementor_version','0.4'),(492,106,'_elementor_edit_mode','builder'),(499,23,'ocean_post_layout','full-width'),(516,23,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/9.5.jpg\",\"id\":580}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#3d3d3d\",\"size\":\"large\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0\\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"right\",\"text_color\":\"#191919\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_weight\":\"600\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":356,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao-1.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 40 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and by the state of Kansas as an acupuncturist. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":444,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0238.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist\\u00a0\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.<\\/p><p>She strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.<\\/p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1dd45c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"81b7eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eaf6e0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\"><span style=\\\"text-decoration: underline;\\\"><strong>contact us<\\/strong><\\/span><\\/a>.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"_background_background\":\"classic\",\"_background_color\":\"#eaeaea\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(517,112,'_wp_page_template','default'),(518,112,'_elementor_edit_mode','builder'),(519,112,'_elementor_data','[{\"id\":\"2e2eddae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":109,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/landscape-1513890_1920.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5af8f895\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"25d0c250\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_family\":\"Open Sans\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ff50c28\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":71}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Staff\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(520,23,'_elementor_version','0.4'),(521,113,'_wp_page_template','default'),(522,113,'_elementor_edit_mode','builder'),(523,113,'_elementor_data','[{\"id\":\"2e2eddae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":109,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/landscape-1513890_1920.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5af8f895\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"25d0c250\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_family\":\"Open Sans\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ff50c28\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":71}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(524,113,'_elementor_version','0.4'),(531,23,'_elementor_template_type','post'),(536,117,'_wp_page_template','default'),(537,117,'_elementor_edit_mode','builder'),(538,117,'_elementor_data','[{\"id\":\"2e2eddae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":109,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/landscape-1513890_1920.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5af8f895\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"25d0c250\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_family\":\"Open Sans\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ff50c28\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":71}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5924f02\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"2c41add\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"76b9c5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0233.jpg\",\"id\":116},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"150\",\"height\":\"200\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ed43723\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"dcd04e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35b22d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"e80c054\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9131e24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0233.jpg\",\"id\":116},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"150\",\"height\":\"200\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a66570\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ce48b6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1770a8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b814b49\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8aa30bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161023003731\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(534,116,'_wp_attached_file','2018/04/IMG_0233.jpg'),(535,116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:20:\"2018/04/IMG_0233.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0233-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:20:\"IMG_0233-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"IMG_0233-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0233-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(539,117,'_elementor_version','0.4'),(540,117,'_elementor_template_type','post'),(910,212,'_wp_page_template','default'),(911,212,'_elementor_edit_mode','builder'),(912,212,'_elementor_data','[{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5924f02\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"2c41add\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"76b9c5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0233.jpg\",\"id\":116},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"150\",\"height\":\"200\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ed43723\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"dcd04e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35b22d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"e80c054\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9131e24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0233.jpg\",\"id\":116},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"150\",\"height\":\"200\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a66570\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ce48b6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1770a8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b814b49\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8aa30bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161023003731\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\" data-wplink-edit=\\\"true\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2c17028\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e58433\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5a405f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(548,119,'_wp_page_template','default'),(549,119,'_elementor_edit_mode','builder'),(550,119,'_elementor_data','[{\"id\":\"2e2eddae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":109,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/landscape-1513890_1920.jpg\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5af8f895\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"25d0c250\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_family\":\"Open Sans\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ff50c28\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":71}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5924f02\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"2c41add\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"76b9c5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0233.jpg\",\"id\":116},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"150\",\"height\":\"200\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ed43723\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"dcd04e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35b22d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"e80c054\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9131e24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0233.jpg\",\"id\":116},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"150\",\"height\":\"200\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a66570\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ce48b6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1770a8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b814b49\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8aa30bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161023003731\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\" data-wplink-edit=\\\"true\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2c17028\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e58433\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5a405f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(551,119,'_elementor_version','0.4'),(552,119,'_elementor_template_type','post'),(554,24,'ocean_post_layout','full-width'),(555,24,'_elementor_edit_mode','builder'),(556,24,'_elementor_data','[{\"id\":\"1d02beeb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/1a.jpg\",\"id\":604}},\"elements\":[{\"id\":\"5068b065\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13a059d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25b3bf11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Acupuncture\\u00a0 \\u00a0 \\u00a0 Herbal\\u00a0 \\u00a0 \\u00a0 Massage\\u00a0 \\u00a0 \\u00a0 Qigong<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"34\",\"bottom\":\"34\",\"left\":\"34\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a945cdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e62b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5246e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture\",\"title_color\":\"#000000\",\"header_size\":\"h1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1482aef\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0e7e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c051a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/ac7.jpg\",\"id\":137}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e0ffa16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15744fe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/Acupuncture500-1.jpg\",\"id\":143}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72a9504\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b39eba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/acupuncture_500-e1522635045797.jpg\",\"id\":144}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c0f0005\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"753c81b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5740abf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.<\\/p><h3>Acupuncture can be used to treat all types of health issues:<\\/h3><p>Addictions<br \\/> Allergies<br \\/> Cosmetic procedures (such as acupuncture for face lifting)<br \\/> Degenerative diseases due to aging<br \\/> Depression<br \\/> Men\\u2019s Health<br \\/> Pain Management<br \\/> Stroke Rehabilitation<br \\/> Weight Loss and Management<br \\/> Women\\u2019s Health (PMS, Menopause, Low libido, Infertility, etc.)<\\/p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.<\\/p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.<\\/p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec0d743\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8d51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"93a445e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Herbal Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38708fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b63b587\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5dd77b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17814.jpg\",\"id\":145}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2abd357\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c23e197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/jt-ai-020223846.jpg\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"302e538\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c678bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17815.jpg\",\"id\":146}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"65f85cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"19ec65f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17845.jpg\",\"id\":147}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a441ce4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"c027e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8075edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.<\\/p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.<\\/p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617123300\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an herbal consultation today!<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1050842\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"312fd40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b26e839\",\"elType\":\"widget\",\"settings\":{\"title\":\"Massage\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c22f36b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2d5a971\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f4ebd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nmm.jpg\",\"id\":151}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1d5f1ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ea50966\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nm.jpg\",\"id\":149}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f3901a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8f9a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nl.jpg\",\"id\":150}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22995b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"e5aa6a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9419cff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>O<\\/strong><strong>riental Bodywork<\\/strong><\\/p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:<\\/p><p>Reduced stress and anxiety<br \\/> Relief from muscle tension and joint stiffness<br \\/> Increased blood circulation<br \\/> Reduced heart rate<br \\/> Induces relaxation<br \\/> Reduces back pain<br \\/> Relieves depression and insomnia<br \\/> Relieves Myofascial and Fibromyalgia pain<br \\/> Releives headaches\\/migraines<\\/p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.<\\/p><p>For more information about our massage therapists on staff, click <a title=\\\"Our Staff\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=46\\\">HERE<\\/a>.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment with one of our massage therapists.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d5284f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54a0c3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1bf07a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Qigong\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f518dd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d37e106\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"569f061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/taiji.jpg\",\"id\":152}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"91a2607\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"794de3c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/th.jpg\",\"id\":154}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e58b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"8e03323\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57bb45a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"contents\\\" class=\\\"clearfix\\\"><div id=\\\"maincol\\\"><div class=\\\"post\\\">\\u00a0<\\/div><\\/div><\\/div><div><p>Qigong (pronounced Chee Kung)\\u00a0is a method that combines body movement, breath exercise and mental concentration to exercise the body\\u2019s vital energy, or \\u201cQi\\u201d. In China, Qigong is widely accepted for it\\u2019s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.<\\/p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body\\u2019s immune ability, postpone the aging process and develop the body\\u2019s potential.<\\/p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:<\\/p><p>Anemia<br \\/> Anxiety\\/Depression<br \\/> Arthritis<br \\/> Asthma<br \\/> Back Pain<br \\/> Bone Density<br \\/> Body Strength\\/Flexibility<br \\/> Concentration\\/Memory<br \\/> Hearing or Vision Impairment<br \\/> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br \\/> Immune Cell Activity\\/Dysfunction<br \\/> Kidney Deficiencies<br \\/> Mental Health<br \\/> Overall Health and Well Being<br \\/> Sexual Dysfunction<br \\/> Tinnitus<br \\/> Weight Management<\\/p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner\\u2019s supervision. The second approach, External Qi\\u00a0healing, is a process whereby the Qigong practitioner\\u2019s energy is used to stimulate and balance the patient\\u2019s Qi\\u00a0so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.<\\/p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160503111017\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment for a Qigong consultation.<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f82c1f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f1ada06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(557,122,'_wp_page_template','default'),(558,122,'_elementor_edit_mode','builder'),(559,122,'_elementor_data','[{\"id\":\"e81ad0a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0160d21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ef840e1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/wb3.jpg\",\"id\":11},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(560,24,'_elementor_version','0.4'),(567,124,'_elementor_edit_mode','builder'),(568,124,'_elementor_data','[{\"id\":\"e81ad0a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0160d21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"466f6f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(566,124,'_wp_page_template','default'),(565,24,'_elementor_template_type','post'),(569,124,'_elementor_version','0.4'),(570,124,'_elementor_template_type','post'),(1259,307,'_wp_page_template','default'),(1260,307,'_elementor_template_type','post'),(1261,307,'_elementor_data','[{\"id\":\"47945f32\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":784},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"77470a13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"72023398\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Evergreen Wellness Center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Georgia\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7494c53c\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":4},\"color\":\"#23a455\",\"width\":{\"unit\":\"%\",\"size\":8},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fb67322\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>May you have a good health and longevity ... like the Evergreen.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.7\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1247,305,'_wp_page_template','default'),(1248,305,'_elementor_template_type','post'),(1249,305,'_elementor_data','[{\"id\":\"47945f32\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":784},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"77470a13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"72023398\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Evergreen Wellness Center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Georgia\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7494c53c\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":4},\"color\":\"#f4b522\",\"width\":{\"unit\":\"%\",\"size\":8},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fb67322\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.7\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(586,129,'_wp_page_template','default'),(587,129,'_elementor_edit_mode','builder'),(588,129,'_elementor_data','[{\"id\":\"6df5144f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"700\"},\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#444444\",\"background_image\":{\"id\":16,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/conifer-daylight-environment-454880.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"_visible\":\"\",\"section_structure\":\"\",\"background_overlay_title\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"50\",\"bottom\":\"80\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e68ce2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"id\":\"73\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/placeholder.png\"}},\"elements\":[{\"id\":\"27d0ccce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"size\":\"large\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85},\"typography_font_family\":\"Playfair Display\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"italic\",\"_background_image\":{\"id\":\"73\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/placeholder.png\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"on\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2383bf84\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":\"4\"},\"color\":\"#eaeaea\",\"width\":{\"unit\":\"%\",\"size\":7},\"align\":\"center\",\"_background_image\":{\"id\":\"73\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4f5e7151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture     Herbs     Massage     Qigong\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"27\"},\"typography_font_family\":\"Playfair Display\",\"typography_font_weight\":\"normal\",\"typography_font_style\":\"italic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"_background_image\":{\"id\":\"73\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/placeholder.png\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"on\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(589,129,'_elementor_version','0.4'),(590,129,'_elementor_template_type','post'),(605,136,'_wp_page_template','default'),(606,136,'_elementor_edit_mode','builder'),(607,136,'_elementor_data','[{\"id\":\"6df5144f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"700\"},\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#444444\",\"background_image\":{\"id\":16,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/conifer-daylight-environment-454880.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"_visible\":\"\",\"section_structure\":\"\",\"background_overlay_title\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"50\",\"bottom\":\"80\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e68ce2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"id\":\"73\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/placeholder.png\"}},\"elements\":[{\"id\":\"27d0ccce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"size\":\"large\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85},\"typography_font_family\":\"Playfair Display\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"italic\",\"_background_image\":{\"id\":\"73\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/placeholder.png\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"on\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2383bf84\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":\"4\"},\"color\":\"#eaeaea\",\"width\":{\"unit\":\"%\",\"size\":7},\"align\":\"center\",\"_background_image\":{\"id\":\"73\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4f5e7151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture     Herbs     Massage     Qigong\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_family\":\"Playfair Display\",\"typography_font_weight\":\"normal\",\"typography_font_style\":\"italic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"_background_image\":{\"id\":\"73\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/placeholder.png\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"on\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a945cdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e62b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5246e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61f3053\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b60f8a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"9807cee\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"20a9e67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6841b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/acupunture.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6640c5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b0aee1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/ac3.jpg\",\"id\":134}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(631,143,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:400;s:6:\"height\";i:268;s:4:\"file\";s:20:\"Acupuncture500-1.jpg\";}}'),(632,143,'_edit_last','1'),(633,144,'_wp_attached_file','2018/04/acupuncture_500-e1522635045797.jpg'),(634,144,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:420;s:6:\"height\";i:269;s:4:\"file\";s:42:\"2018/04/acupuncture_500-e1522635045797.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"acupuncture_500-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:27:\"acupuncture_500-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;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:{}}}'),(599,133,'_wp_attached_file','2018/04/11.jpg'),(600,133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:719;s:6:\"height\";i:1024;s:4:\"file\";s:14:\"2018/04/11.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"11-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:14:\"11-211x300.jpg\";s:5:\"width\";i:211;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"11-719x1024.jpg\";s:5:\"width\";i:719;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS-1Ds Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1158675697\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"105\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(601,134,'_wp_attached_file','2018/04/ac3.jpg'),(602,134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:445;s:4:\"file\";s:15:\"2018/04/ac3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ac3-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:15:\"ac3-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;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:{}}}'),(603,135,'_wp_attached_file','2018/04/acupunture.jpg'),(604,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:281;s:4:\"file\";s:22:\"2018/04/acupunture.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"acupunture-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:\"acupunture-300x281.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:281;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:{}}}'),(608,136,'_elementor_version','0.4'),(609,136,'_elementor_template_type','post'),(610,137,'_wp_attached_file','2018/04/ac7.jpg'),(611,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:420;s:6:\"height\";i:260;s:4:\"file\";s:15:\"2018/04/ac7.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ac7-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:15:\"ac7-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;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:{}}}'),(630,143,'_edit_lock','1522634755:1'),(614,139,'_wp_attached_file','2018/04/Acupuncture500.jpg'),(615,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:268;s:4:\"file\";s:26:\"2018/04/Acupuncture500.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Acupuncture500-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:\"Acupuncture500-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1173807323\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"105\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(635,144,'_edit_lock','1522634926:1'),(636,144,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:500;s:6:\"height\";i:320;s:4:\"file\";s:19:\"acupuncture_500.jpg\";}}'),(637,144,'_edit_last','1'),(916,213,'_wp_page_template','default'),(917,213,'_elementor_edit_mode','builder'),(918,213,'_elementor_data','[{\"id\":\"a945cdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e62b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5246e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture\",\"title_color\":\"#000000\",\"header_size\":\"h1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1482aef\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0e7e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c051a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/ac7.jpg\",\"id\":137}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e0ffa16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15744fe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/Acupuncture500-1.jpg\",\"id\":143}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72a9504\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b39eba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/acupuncture_500-e1522635045797.jpg\",\"id\":144}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c0f0005\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"753c81b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5740abf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.<\\/p><h3>Acupuncture can be used to treat all types of health issues:<\\/h3><p>Addictions<br \\/> Allergies<br \\/> Cosmetic procedures (such as acupuncture for face lifting)<br \\/> Degenerative diseases due to aging<br \\/> Depression<br \\/> Men\\u2019s Health<br \\/> Pain Management<br \\/> Stroke Rehabilitation<br \\/> Weight Loss and Management<br \\/> Women\\u2019s Health (PMS, Menopause, Low libido, Infertility, etc.)<\\/p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.<\\/p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.<\\/p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec0d743\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8d51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"93a445e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Herbal Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38708fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b63b587\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5dd77b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17814.jpg\",\"id\":145}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2abd357\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c23e197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/jt-ai-020223846.jpg\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"302e538\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c678bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17815.jpg\",\"id\":146}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"65f85cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"19ec65f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17845.jpg\",\"id\":147}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a441ce4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c027e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8075edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.<\\/p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.<\\/p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617123300\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an herbal consultation today!<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1050842\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"312fd40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b26e839\",\"elType\":\"widget\",\"settings\":{\"title\":\"Massage\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c22f36b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2d5a971\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f4ebd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nmm.jpg\",\"id\":151}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1d5f1ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ea50966\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nm.jpg\",\"id\":149}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f3901a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8f9a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nl.jpg\",\"id\":150}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22995b2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5aa6a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9419cff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>O<\\/strong><strong>riental Bodywork<\\/strong><\\/p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:<\\/p><p>Reduced stress and anxiety<br \\/> Relief from muscle tension and joint stiffness<br \\/> Increased blood circulation<br \\/> Reduced heart rate<br \\/> Induces relaxation<br \\/> Reduces back pain<br \\/> Relieves depression and insomnia<br \\/> Relieves Myofascial and Fibromyalgia pain<br \\/> Releives headaches\\/migraines<\\/p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.<\\/p><p>For more information about our massage therapists on staff, click <a title=\\\"Our Staff\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=46\\\">HERE<\\/a>.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment with one of our massage therapists.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d5284f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54a0c3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1bf07a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Qigong\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f518dd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d37e106\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"569f061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/taiji.jpg\",\"id\":152}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"91a2607\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"794de3c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/th.jpg\",\"id\":154}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e58b2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8e03323\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57bb45a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"contents\\\" class=\\\"clearfix\\\"><div id=\\\"maincol\\\"><div class=\\\"post\\\">\\u00a0<\\/div><\\/div><\\/div><div><p>Qigong (pronounced Chee Kung)\\u00a0is a method that combines body movement, breath exercise and mental concentration to exercise the body\\u2019s vital energy, or \\u201cQi\\u201d. In China, Qigong is widely accepted for it\\u2019s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.<\\/p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body\\u2019s immune ability, postpone the aging process and develop the body\\u2019s potential.<\\/p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:<\\/p><p>Anemia<br \\/> Anxiety\\/Depression<br \\/> Arthritis<br \\/> Asthma<br \\/> Back Pain<br \\/> Bone Density<br \\/> Body Strength\\/Flexibility<br \\/> Concentration\\/Memory<br \\/> Hearing or Vision Impairment<br \\/> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br \\/> Immune Cell Activity\\/Dysfunction<br \\/> Kidney Deficiencies<br \\/> Mental Health<br \\/> Overall Health and Well Being<br \\/> Sexual Dysfunction<br \\/> Tinnitus<br \\/> Weight Management<\\/p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner\\u2019s supervision. The second approach, External Qi\\u00a0healing, is a process whereby the Qigong practitioner\\u2019s energy is used to stimulate and balance the patient\\u2019s Qi\\u00a0so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.<\\/p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160503111017\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment for a Qigong consultation.<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f82c1f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f1ada06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(659,155,'_wp_page_template','default'),(660,155,'_elementor_edit_mode','builder'),(661,155,'_elementor_data','[{\"id\":\"6df5144f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"700\"},\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#444444\",\"background_image\":{\"id\":16,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/conifer-daylight-environment-454880.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"_visible\":\"\",\"section_structure\":\"\",\"background_overlay_title\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"50\",\"bottom\":\"80\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e68ce2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"id\":\"73\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/placeholder.png\"}},\"elements\":[{\"id\":\"27d0ccce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"size\":\"large\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85},\"typography_font_family\":\"Playfair Display\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"italic\",\"_background_image\":{\"id\":\"73\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/placeholder.png\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"on\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2383bf84\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":\"4\"},\"color\":\"#eaeaea\",\"width\":{\"unit\":\"%\",\"size\":7},\"align\":\"center\",\"_background_image\":{\"id\":\"73\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4f5e7151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture     Herbs     Massage     Qigong\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_family\":\"Playfair Display\",\"typography_font_weight\":\"normal\",\"typography_font_style\":\"italic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"_background_image\":{\"id\":\"73\",\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/placeholder.png\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"on\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a945cdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e62b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5246e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture\",\"title_color\":\"#000000\",\"header_size\":\"h1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1482aef\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0e7e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c051a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/ac7.jpg\",\"id\":137}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e0ffa16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15744fe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/Acupuncture500-1.jpg\",\"id\":143}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72a9504\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b39eba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/acupuncture_500-e1522635045797.jpg\",\"id\":144}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c0f0005\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"753c81b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5740abf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.<\\/p><h3>Acupuncture can be used to treat all types of health issues:<\\/h3><p>Addictions<br \\/> Allergies<br \\/> Cosmetic procedures (such as acupuncture for face lifting)<br \\/> Degenerative diseases due to aging<br \\/> Depression<br \\/> Men\\u2019s Health<br \\/> Pain Management<br \\/> Stroke Rehabilitation<br \\/> Weight Loss and Management<br \\/> Women\\u2019s Health (PMS, Menopause, Low libido, Infertility, etc.)<\\/p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.<\\/p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.<\\/p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec0d743\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8d51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"93a445e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Herbal Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38708fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b63b587\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5dd77b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17814.jpg\",\"id\":145}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2abd357\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c23e197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/jt-ai-020223846.jpg\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"302e538\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c678bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17815.jpg\",\"id\":146}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"65f85cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"19ec65f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17845.jpg\",\"id\":147}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a441ce4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c027e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8075edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.<\\/p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.<\\/p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617123300\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an herbal consultation today!<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1050842\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"312fd40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b26e839\",\"elType\":\"widget\",\"settings\":{\"title\":\"Massage\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c22f36b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2d5a971\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f4ebd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nmm.jpg\",\"id\":151}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1d5f1ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ea50966\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nm.jpg\",\"id\":149}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f3901a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8f9a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nl.jpg\",\"id\":150}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22995b2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5aa6a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9419cff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>O<\\/strong><strong>riental Bodywork<\\/strong><\\/p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:<\\/p><p>Reduced stress and anxiety<br \\/> Relief from muscle tension and joint stiffness<br \\/> Increased blood circulation<br \\/> Reduced heart rate<br \\/> Induces relaxation<br \\/> Reduces back pain<br \\/> Relieves depression and insomnia<br \\/> Relieves Myofascial and Fibromyalgia pain<br \\/> Releives headaches\\/migraines<\\/p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.<\\/p><p>For more information about our massage therapists on staff, click <a title=\\\"Our Staff\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=46\\\">HERE<\\/a>.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment with one of our massage therapists.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d5284f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54a0c3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1bf07a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Qigong\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f518dd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d37e106\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"569f061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/taiji.jpg\",\"id\":152}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"91a2607\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"794de3c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/th.jpg\",\"id\":154}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e58b2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8e03323\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57bb45a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"contents\\\" class=\\\"clearfix\\\"><div id=\\\"maincol\\\"><div class=\\\"post\\\">\\u00a0<\\/div><\\/div><\\/div><div><p>Qigong (pronounced Chee Kung)\\u00a0is a method that combines body movement, breath exercise and mental concentration to exercise the body\\u2019s vital energy, or \\u201cQi\\u201d. In China, Qigong is widely accepted for it\\u2019s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.<\\/p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body\\u2019s immune ability, postpone the aging process and develop the body\\u2019s potential.<\\/p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:<\\/p><p>Anemia<br \\/> Anxiety\\/Depression<br \\/> Arthritis<br \\/> Asthma<br \\/> Back Pain<br \\/> Bone Density<br \\/> Body Strength\\/Flexibility<br \\/> Concentration\\/Memory<br \\/> Hearing or Vision Impairment<br \\/> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br \\/> Immune Cell Activity\\/Dysfunction<br \\/> Kidney Deficiencies<br \\/> Mental Health<br \\/> Overall Health and Well Being<br \\/> Sexual Dysfunction<br \\/> Tinnitus<br \\/> Weight Management<\\/p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner\\u2019s supervision. The second approach, External Qi\\u00a0healing, is a process whereby the Qigong practitioner\\u2019s energy is used to stimulate and balance the patient\\u2019s Qi\\u00a0so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.<\\/p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160503111017\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment for a Qigong consultation.<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f82c1f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f1ada06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(629,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:388;s:6:\"height\";i:260;s:4:\"file\";s:43:\"2018/04/Acupuncture500-1-e1522634879500.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Acupuncture500-1-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:28:\"Acupuncture500-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1173807323\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"105\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(628,143,'_wp_attached_file','2018/04/Acupuncture500-1-e1522634879500.jpg'),(624,139,'_edit_last','1'),(625,142,'_wp_attached_file','2018/04/acu.png'),(626,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:374;s:6:\"height\";i:278;s:4:\"file\";s:15:\"2018/04/acu.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"acu-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"acu-300x223.png\";s:5:\"width\";i:300;s:6:\"height\";i:223;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:{}}}'),(623,139,'_edit_lock','1522634235:1'),(638,145,'_wp_attached_file','2018/04/mhrf-cpmh17814.jpg'),(639,145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2018/04/mhrf-cpmh17814.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"mhrf-cpmh17814-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:\"mhrf-cpmh17814-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:26:\"Copyright:www.quanjing.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:14:\"mhrf-cpmh17814\";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:14:\"mhrf-cpmh17814\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(640,146,'_wp_attached_file','2018/04/mhrf-cpmh17815.jpg'),(641,146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2018/04/mhrf-cpmh17815.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"mhrf-cpmh17815-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:\"mhrf-cpmh17815-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:26:\"Copyright:www.quanjing.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:14:\"mhrf-cpmh17815\";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:14:\"mhrf-cpmh17815\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(642,147,'_wp_attached_file','2018/04/mhrf-cpmh17845.jpg'),(643,147,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2018/04/mhrf-cpmh17845.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"mhrf-cpmh17845-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:\"mhrf-cpmh17845-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:26:\"Copyright:www.quanjing.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:14:\"mhrf-cpmh17845\";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:14:\"mhrf-cpmh17845\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(644,148,'_wp_attached_file','2018/04/jt-ai-020223846.jpg'),(645,148,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2018/04/jt-ai-020223846.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"jt-ai-020223846-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:27:\"jt-ai-020223846-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:26:\"Copyright:www.quanjing.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:15:\"jt-ai-020223846\";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:15:\"jt-ai-020223846\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(646,149,'_wp_attached_file','2018/04/nm.jpg'),(647,149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:14:\"2018/04/nm.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"nm-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:14:\"nm-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:26:\"Copyright:www.quanjing.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:15:\"zrgrfing-000266\";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:15:\"zrgrfing-000266\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(648,150,'_wp_attached_file','2018/04/nl.jpg'),(649,150,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:14:\"2018/04/nl.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"nl-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:14:\"nl-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:26:\"Copyright:www.quanjing.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:15:\"zrgrfing-000421\";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:15:\"zrgrfing-000421\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(650,151,'_wp_attached_file','2018/04/nmm.jpg'),(651,151,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:401;s:4:\"file\";s:15:\"2018/04/nmm.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"nmm-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:15:\"nmm-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:26:\"Copyright:www.quanjing.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:15:\"east-a21-154586\";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:15:\"east-a21-154586\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(652,152,'_wp_attached_file','2018/04/taiji.jpg'),(653,152,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:399;s:4:\"file\";s:17:\"2018/04/taiji.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"taiji-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:17:\"taiji-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:\"1\";s:8:\"keywords\";a:0:{}}}'),(657,154,'_wp_attached_file','2018/04/th.jpg'),(658,154,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:399;s:4:\"file\";s:14:\"2018/04/th.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"th-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:14:\"th-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:\"1\";s:8:\"keywords\";a:0:{}}}'),(662,155,'_elementor_version','0.4'),(663,155,'_elementor_template_type','post'),(666,25,'ocean_post_layout','full-width'),(667,25,'_elementor_edit_mode','builder'),(678,159,'_elementor_template_type','post'),(677,159,'_elementor_edit_mode','builder'),(670,25,'_elementor_template_type','post'),(676,159,'_wp_page_template','default'),(675,25,'_elementor_data','[{\"id\":\"4032e44e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/3.png\",\"id\":606}},\"elements\":[{\"id\":\"353cd307\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c01f006\",\"elType\":\"widget\",\"settings\":{\"title\":\"    Knowledge Base   \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_font_weight\":\"600\",\"_background_background\":\"classic\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c644254\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Knowledge is the power<\\/p>\",\"align\":\"center\",\"text_color\":\"#f9f9f9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"typography_font_family\":\"Arial\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40d922d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4df6137\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a5d9b95\",\"elType\":\"widget\",\"settings\":{\"title\":\"What\\u2019s being treated?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8232c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8c5312e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48e1091\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/treatment.jpg\",\"id\":158}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0565030\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1c7f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"13dc2d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da6e27d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"2ac14d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bc5763d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world\\u2019s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.<\\/p><p>Q. Isn\\u2019t Traditional Chinese Medicine just a system of folk healing?<\\/p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.<\\/p><p><br \\/>Q. How does Traditional Chinese Medicine work?<\\/p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body\\u2019s healthy or righteous energy and attacking any unhealthy or negative energy. <\\/p><p>Q. How does a TCM practitioner determine what is out of balance?<\\/p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient\\u2019s face, body, and especially their tongue and its coating. The third is listening to the patient\\u2019s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.<\\/p><p><br \\/>Q. How is this rebalancing accomplished?<\\/p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture\\/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.<\\/p><p><br \\/>Q. Is Traditional Chinese Medicine safe?<\\/p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ac19ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"793d218\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e963fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a9ab31\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"ca4a9fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a6d187\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There is a plethora of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.<\\/p><p><a title=\\\"Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=303\\\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/a><\\/p><p><a title=\\\"Post-Stroke Rehabilitation\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=291\\\">Post-Stroke Rehabilitation<\\/a><\\/p><p><a title=\\\"Stroke Rehabilitation and Traditional Chinese Medicine\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=294\\\">Stroke Rehabilitation and Traditional Chinese Medicine<\\/a><\\/p><p><a title=\\\"TCM and Heart Diseases\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=297\\\">TCM and Heart Diseases<\\/a><\\/p><p><a title=\\\"Traditional Chinese Medicine and Infertility\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=289\\\">Traditional Chinese Medicine and Infertility<\\/a><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(673,158,'_wp_attached_file','2018/04/treatment.jpg'),(674,158,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:686;s:6:\"height\";i:332;s:4:\"file\";s:21:\"2018/04/treatment.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"treatment-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:21:\"treatment-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;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:{}}}'),(679,159,'_elementor_data','[{\"id\":\"232884ac\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":12,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/3e0783ce254ffe2df99b5dbee447b04d.gif\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7425592b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ab5cdf7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Knowledge Base<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_family\":\"Open Sans\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"-42\",\"bottom\":\"-42\",\"left\":\"-42\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40d922d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4df6137\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a5d9b95\",\"elType\":\"widget\",\"settings\":{\"title\":\"What\\u2019s being treated?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8232c6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8c5312e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48e1091\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/treatment.jpg\",\"id\":158}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(680,25,'_elementor_version','0.4'),(687,162,'_wp_page_template','default'),(688,162,'_elementor_edit_mode','builder'),(689,162,'_elementor_template_type','post'),(690,162,'_elementor_data','[{\"id\":\"232884ac\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":12,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/3e0783ce254ffe2df99b5dbee447b04d.gif\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7425592b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ab5cdf7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Knowledge Base<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_family\":\"Open Sans\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"-42\",\"bottom\":\"-42\",\"left\":\"-42\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40d922d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4df6137\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a5d9b95\",\"elType\":\"widget\",\"settings\":{\"title\":\"What\\u2019s being treated?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8232c6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8c5312e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48e1091\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/treatment.jpg\",\"id\":158}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0565030\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1c7f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"13dc2d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ac19ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"793d218\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e963fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(686,161,'_wp_attached_file','2018/04/QA_ChineseMedicine.pdf'),(691,162,'_elementor_version','0.4'),(692,27,'ocean_post_layout','full-width'),(693,27,'_elementor_edit_mode','builder'),(1300,314,'_elementor_version','0.4'),(1301,314,'_elementor_edit_mode','builder'),(1304,315,'_wp_page_template','default'),(1305,315,'_elementor_template_type','post'),(1306,315,'_elementor_data','[{\"id\":\"47945f32\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1321},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"heading_visibility\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"77470a13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"72023398\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Evergreen Wellness Center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Georgia\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7494c53c\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":4},\"color\":\"#23a455\",\"width\":{\"unit\":\"%\",\"size\":8},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fb67322\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>May you have a good health and longevity ... like the Evergreen.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.7\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1307,315,'_elementor_version','0.4'),(1308,315,'_elementor_edit_mode','builder'),(1311,316,'_wp_page_template','default'),(1312,316,'_elementor_template_type','post'),(1313,316,'_elementor_data','[{\"id\":\"47945f32\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1321},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"heading_visibility\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"77470a13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"72023398\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Evergreen Wellness Center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Georgia\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7494c53c\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":4},\"color\":\"#23a455\",\"width\":{\"unit\":\"%\",\"size\":8},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fb67322\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>May you have a good health and longevity ... like the Evergreen.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.7\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(713,167,'_elementor_edit_mode','builder'),(712,167,'_wp_page_template','default'),(708,27,'_elementor_template_type','post'),(711,27,'_elementor_data','[{\"id\":\"1f2cde97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/2-1.png\",\"id\":594},\"background_position\":\"top right\"},\"elements\":[{\"id\":\"e6ca9ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"105ded37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Arial\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f61811\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-718e069e elementor-widget elementor-widget-heading\\\" data-id=\\\"718e069e\\\" data-element_type=\\\"heading.default\\\"><h4 class=\\\"elementor-widget-container\\\">Need an expert?<\\/h4><h4 class=\\\"elementor-widget-container\\\">You are more than welcomed to leave your contact info<\\/h4><h4 class=\\\"elementor-widget-container\\\">and we will be in touch shortly<\\/h4><\\/div>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":2},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.2}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"9\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"color_text\":\"#000000\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Contact Us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#0a0a0a\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#23a455\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ad0d881\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"177\\\" title=\\\"Contact form 1\\\"]\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(59,124,26,0.5)\"}},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(714,167,'_elementor_template_type','post'),(715,167,'_elementor_data','[{\"id\":\"62edb0c8\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":681},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":13,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/blue-sky-clouds-daylight-97886.jpg\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#02122d\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"792ea270\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"46a99635\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"contact us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#fd5e29\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59},\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3237084e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"style\":\"dotted\",\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"rgba(255,255,255,0.5)\",\"width\":{\"unit\":\"%\",\"size\":\"10\"},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":20},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"72b2c30f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21},\"typography_font_weight\":\"bold\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(716,27,'_elementor_version','0.4'),(723,169,'_elementor_edit_mode','builder'),(724,169,'_elementor_template_type','post'),(725,169,'_elementor_data','[{\"id\":\"62edb0c8\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":681},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":13,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/blue-sky-clouds-daylight-97886.jpg\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#02122d\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_color\":\"rgba(255,255,255,0.45)\"},\"elements\":[{\"id\":\"792ea270\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"46a99635\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"contact us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#fd5e29\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59},\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3237084e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"style\":\"dotted\",\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"rgba(255,255,255,0.5)\",\"width\":{\"unit\":\"%\",\"size\":\"10\"},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":20},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"72b2c30f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21},\"typography_font_weight\":\"bold\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(722,169,'_wp_page_template','default'),(726,169,'_elementor_version','0.4'),(732,171,'_wp_page_template','default'),(733,171,'_elementor_edit_mode','builder'),(734,171,'_elementor_template_type','post'),(735,171,'_elementor_data','[{\"id\":\"62edb0c8\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":681},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":13,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/blue-sky-clouds-daylight-97886.jpg\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_color\":\"rgba(255,255,255,0.45)\"},\"elements\":[{\"id\":\"792ea270\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"46a99635\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"contact us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59},\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3237084e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"style\":\"dotted\",\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"rgba(255,255,255,0.5)\",\"width\":{\"unit\":\"%\",\"size\":\"10\"},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":20},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"72b2c30f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21},\"typography_font_weight\":\"bold\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"185005b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"aff9f24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3830a96\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"83d2110\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"88c251a\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"96c87c4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(736,171,'_elementor_version','0.4'),(1314,316,'_elementor_version','0.4'),(1315,316,'_elementor_edit_mode','builder'),(1362,325,'_elementor_version','0.4'),(1363,325,'_elementor_edit_mode','builder'),(1413,337,'_wp_page_template','default'),(1414,337,'_elementor_template_type','post'),(1415,337,'_elementor_data','[{\"id\":\"3c8b5685\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_video_fallback\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/p.jpg\",\"id\":276},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"29330069\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c1c9ff7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#23a455\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c75a358\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen.<\\/p>\",\"align\":\"right\",\"text_color\":\"#af2edd\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1366,326,'_wp_page_template','default'),(1367,326,'_elementor_template_type','post'),(1368,326,'_elementor_data','[{\"id\":\"c54aad0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"46ea89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"47945f32\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1252},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(97,206,112,0.43)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"heading_visibility\":\"\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"content_position\":\"middle\",\"border_border\":\"solid\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"animation\":\"flash\",\"animation_duration\":\"slow\",\"animation_delay\":10},\"elements\":[{\"id\":\"77470a13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"72023398\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Evergreen Wellness Center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Georgia\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7494c53c\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":4},\"color\":\"#23a455\",\"width\":{\"unit\":\"%\",\"size\":8},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fb67322\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>May you have a good health and longevity ... like the Evergreen.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.7\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(858,197,'_wp_page_template','default'),(859,197,'_elementor_edit_mode','builder'),(860,197,'_elementor_template_type','post'),(861,197,'_elementor_data','[{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"9\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Contact Us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#23a455\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":\"13\"},\"text_color\":\"#636363\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ad0d881\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"177\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(768,178,'_wp_page_template','default'),(769,178,'_elementor_edit_mode','builder'),(770,178,'_elementor_template_type','post'),(771,178,'_elementor_data','[{\"id\":\"62edb0c8\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":681},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":13,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/blue-sky-clouds-daylight-97886.jpg\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_color\":\"rgba(255,255,255,0.45)\"},\"elements\":[{\"id\":\"792ea270\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"46a99635\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"contact us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59},\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3237084e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"style\":\"dotted\",\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"rgba(255,255,255,0.5)\",\"width\":{\"unit\":\"%\",\"size\":\"10\"},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":20},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"72b2c30f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21},\"typography_font_weight\":\"bold\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"40.635\",\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Contact Us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#23a455\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":\"13\"},\"text_color\":\"#636363\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"59.366\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ad0d881\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"177\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(757,176,'_wp_page_template','default'),(758,176,'_elementor_edit_mode','builder'),(759,176,'_elementor_template_type','post'),(760,176,'_elementor_data','[{\"id\":\"62edb0c8\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":681},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":13,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/blue-sky-clouds-daylight-97886.jpg\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_color\":\"rgba(255,255,255,0.45)\"},\"elements\":[{\"id\":\"792ea270\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"46a99635\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"contact us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59},\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3237084e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"style\":\"dotted\",\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"rgba(255,255,255,0.5)\",\"width\":{\"unit\":\"%\",\"size\":\"10\"},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":20},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"72b2c30f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21},\"typography_font_weight\":\"bold\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"185005b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"aff9f24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3830a96\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"83d2110\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"88c251a\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"96c87c4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"40.635\",\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Contact Us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#23a455\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":\"13\"},\"text_color\":\"#636363\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"59.366\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(746,174,'_wp_page_template','default'),(747,174,'_elementor_edit_mode','builder'),(748,174,'_elementor_template_type','post'),(749,174,'_elementor_data','[{\"id\":\"62edb0c8\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":681},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":13,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/blue-sky-clouds-daylight-97886.jpg\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_color\":\"rgba(255,255,255,0.45)\"},\"elements\":[{\"id\":\"792ea270\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"46a99635\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"contact us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59},\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3237084e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"style\":\"dotted\",\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"rgba(255,255,255,0.5)\",\"width\":{\"unit\":\"%\",\"size\":\"10\"},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":20},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"72b2c30f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21},\"typography_font_weight\":\"bold\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"185005b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"aff9f24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3830a96\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"83d2110\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"88c251a\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"96c87c4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"40.635\",\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Office location\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#f4b522\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":\"13\"},\"text_color\":\"#636363\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"59.366\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"1ac390ad\",\"elType\":\"widget\",\"settings\":{\"section_map\":\"\",\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":421},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(750,174,'_elementor_version','0.4'),(761,176,'_elementor_version','0.4'),(762,177,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]'),(763,177,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:16:\"\"[your-subject]\"\";s:6:\"sender\";s:45:\"[your-name] <wordpress@evergreenwellness.com>\";s:9:\"recipient\";s:16:\"ewc316@gmail.com\";s:4:\"body\";s:167:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on  (http://evergreenwellness.com)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(764,177,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:16:\"\"[your-subject]\"\";s:6:\"sender\";s:33:\"<wordpress@evergreenwellness.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:109:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on  (http://evergreenwellness.com)\";s:18:\"additional_headers\";s:25:\"Reply-To: qzgau@yahoo.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(765,177,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(766,177,'_additional_settings',''),(767,177,'_locale','en_US'),(772,178,'_elementor_version','0.4'),(773,179,'_wp_page_template','default'),(774,179,'_elementor_edit_mode','builder'),(775,179,'_elementor_template_type','post'),(776,179,'_elementor_data','[{\"id\":\"62edb0c8\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":681},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":13,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/blue-sky-clouds-daylight-97886.jpg\"},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.57},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_color\":\"rgba(255,255,255,0.45)\"},\"elements\":[{\"id\":\"792ea270\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"46a99635\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"contact us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59},\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3237084e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"style\":\"dotted\",\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"rgba(255,255,255,0.5)\",\"width\":{\"unit\":\"%\",\"size\":\"10\"},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":20},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"72b2c30f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21},\"typography_font_weight\":\"bold\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"9\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"40.635\",\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Contact Us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#23a455\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":\"13\"},\"text_color\":\"#636363\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"59.366\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ad0d881\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"177\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(777,179,'_elementor_version','0.4'),(790,182,'_elementor_data','[{\"id\":\"232884ac\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":12,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/3e0783ce254ffe2df99b5dbee447b04d.gif\"},\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7425592b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ab5cdf7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Knowledge Base<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_family\":\"Open Sans\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"-42\",\"bottom\":\"-42\",\"left\":\"-42\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40d922d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4df6137\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a5d9b95\",\"elType\":\"widget\",\"settings\":{\"title\":\"What\\u2019s being treated?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8232c6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8c5312e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48e1091\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/treatment.jpg\",\"id\":158}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0565030\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1c7f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"13dc2d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da6e27d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2ac14d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bc5763d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world\\u2019s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.<\\/p><p>Q. Isn\\u2019t Traditional Chinese Medicine just a system of folk healing?<\\/p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.<\\/p><p><br \\/>Q. How does Traditional Chinese Medicine work?<\\/p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body\\u2019s healthy or righteous energy and attacking any unhealthy or negative energy. <\\/p><p>Q. How does a TCM practitioner determine what is out of balance?<\\/p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient\\u2019s face, body, and especially their tongue and its coating. The third is listening to the patient\\u2019s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.<\\/p><p><br \\/>Q. How is this rebalancing accomplished?<\\/p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture\\/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.<\\/p><p><br \\/>Q. Is Traditional Chinese Medicine safe?<\\/p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ac19ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"793d218\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e963fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a9ab31\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ca4a9fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a6d187\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There is a plethora of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.<\\/p><p><a title=\\\"Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=303\\\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/a><\\/p><p><a title=\\\"Post-Stroke Rehabilitation\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=291\\\">Post-Stroke Rehabilitation<\\/a><\\/p><p><a title=\\\"Stroke Rehabilitation and Traditional Chinese Medicine\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=294\\\">Stroke Rehabilitation and Traditional Chinese Medicine<\\/a><\\/p><p><a title=\\\"TCM and Heart Diseases\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=297\\\">TCM and Heart Diseases<\\/a><\\/p><p><a title=\\\"Traditional Chinese Medicine and Infertility\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=289\\\">Traditional Chinese Medicine and Infertility<\\/a><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(922,214,'_wp_page_template','default'),(923,214,'_elementor_edit_mode','builder'),(924,214,'_elementor_template_type','post'),(925,214,'_elementor_data','[{\"id\":\"40d922d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4df6137\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a5d9b95\",\"elType\":\"widget\",\"settings\":{\"title\":\"What\\u2019s being treated?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8232c6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8c5312e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48e1091\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/treatment.jpg\",\"id\":158}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0565030\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1c7f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"13dc2d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da6e27d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2ac14d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bc5763d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world\\u2019s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.<\\/p><p>Q. Isn\\u2019t Traditional Chinese Medicine just a system of folk healing?<\\/p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.<\\/p><p><br \\/>Q. How does Traditional Chinese Medicine work?<\\/p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body\\u2019s healthy or righteous energy and attacking any unhealthy or negative energy. <\\/p><p>Q. How does a TCM practitioner determine what is out of balance?<\\/p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient\\u2019s face, body, and especially their tongue and its coating. The third is listening to the patient\\u2019s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.<\\/p><p><br \\/>Q. How is this rebalancing accomplished?<\\/p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture\\/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.<\\/p><p><br \\/>Q. Is Traditional Chinese Medicine safe?<\\/p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ac19ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"793d218\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e963fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a9ab31\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ca4a9fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a6d187\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There is a plethora of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.<\\/p><p><a title=\\\"Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=303\\\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/a><\\/p><p><a title=\\\"Post-Stroke Rehabilitation\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=291\\\">Post-Stroke Rehabilitation<\\/a><\\/p><p><a title=\\\"Stroke Rehabilitation and Traditional Chinese Medicine\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=294\\\">Stroke Rehabilitation and Traditional Chinese Medicine<\\/a><\\/p><p><a title=\\\"TCM and Heart Diseases\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=297\\\">TCM and Heart Diseases<\\/a><\\/p><p><a title=\\\"Traditional Chinese Medicine and Infertility\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=289\\\">Traditional Chinese Medicine and Infertility<\\/a><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(787,182,'_wp_page_template','default'),(788,182,'_elementor_edit_mode','builder'),(789,182,'_elementor_template_type','post'),(791,182,'_elementor_version','0.4'),(793,183,'_edit_last','1'),(794,183,'_edit_lock','1523127856:1'),(795,183,'_wp_page_template','default'),(796,183,'ocean_sidebar','0'),(797,183,'ocean_second_sidebar','0'),(798,183,'ocean_disable_margins','enable'),(799,183,'ocean_display_top_bar','default'),(800,183,'ocean_display_header','default'),(801,183,'ocean_center_header_left_menu','0'),(802,183,'ocean_custom_header_template','0'),(803,183,'ocean_header_custom_menu','0'),(804,183,'ocean_disable_title','on'),(805,183,'ocean_disable_heading','default'),(806,183,'ocean_disable_breadcrumbs','default'),(807,183,'ocean_display_footer_widgets','default'),(808,183,'ocean_display_footer_bottom','default'),(809,183,'ocean_post_layout','full-width'),(810,183,'_elementor_edit_mode','builder'),(820,189,'_elementor_edit_mode','builder'),(819,189,'_wp_page_template','default'),(813,183,'_elementor_template_type','post'),(818,183,'_elementor_data','[{\"id\":\"118be89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cae6fe1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c899a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16bb0a53\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"59a7ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ffe8045\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Traditional Chinese Medicine and Infertility<\\/strong><\\/p><p>Traditional Chinese Medicine (TCM) has been developing for over 2000 years.\\u00a0 Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts through the ages have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>In TCM the holistic concept includes integrity of the body and its relationship with the natural world.\\u00a0 The body is an organic whole and its functions are interconnected.\\u00a0 The meridian system, which allows vital energy to flow, links the body as a whole.\\u00a0 The TCM practitioner will treat patients with therapies from four main categories:\\u00a0 Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese Massage and Qigong (energy healing).\\u00a0<\\/p><p>TCM has proven an effective alternative to addressing numerous reproductive issues including: PMS, amenorrhea, endometriosis, blocked fallopian tubes, immune system incongruities, and infertility related hormonal imbalances.\\u00a0 Presently, TCM in both China and America has proven to be an effective course of treatment when practiced in conjunction with standard Western medical techniques.\\u00a0<\\/p><p>\\u00a0<\\/p><p><strong>Treating Infertility<\\/strong><\\/p><p>There are no guarantees of fertility when opting to use TCM as there are no guarantees with Western medical options.\\u00a0 Patients that have functional rather than structural reason for infertility are the most successful candidates for the use of TCM techniques.\\u00a0 For example, a woman with damaged fallopian tubes would be experiencing structural infertility while a woman with nonfunctioning ovaries has a functional challenge with fertility.<\\/p><p>In general, TCM treatment of fertility issues would include a regimen of acupuncture, herbal treatments and possibly physical exercise or massage.\\u00a0 This approach will many times increase blood flow to the uterus and stimulate ovulation in women and can help increase sperm motility in men.\\u00a0 Additionally, most contemporary medical treatments involve the use of numerous drugs.\\u00a0 The use of acupuncture and herbal regimens could effectively reduce the prescription requirements throughout the treatment course.<\\/p><p>According to a German study published by the National Library of Medicine in April 2002 acupuncture may also increase a couple\\u2019s chance of conception when used in conjunction with traditional Western treatments such as in vitro fertilization (IVF).\\u00a0 In this study, 160 participants were divided into 2 groups each receiving standard IVF procedures.\\u00a0 One of the groups received TCM treatments before and after implantation.\\u00a0 The standard in-vitro group had a 26.3 percent pregnancy rate while the TCM group showed a 42.5 percent pregnancy rate.<\\/p><p>There are some distinct advantages to the integration of TCM when dealing with fertility challenges:<\\/p><ul><li>TCM sees a personal as an integral mind\\/body organism and seeks to stimulate the body\\u2019s natural healing potential by treating root causes.<\\/li><li>TCM used in the treatment of infertility minimizes undesired side effects and accumulated toxicity from invasive procedures and drug therapies.<\\/li><li>Traditional Chinese Medicine may be sued to strengthen and balance one\\u2019s general health so that IVF, GIFT, ZIFT, ICSI, AHT and TET procedures are more effective. The TCM patient\\u00a0 derives general health benefits and endocrine balancing from specific acupuncture and herbal regimes.\\u00a0 Pregnancy becomes easier to achieve and postpartum recuperation happens faster.\\u00a0<\\/li><li>The widespread use of TCM suggests that it is an effective medical health care system that can be successfully integrated with traditional Western medical techniques.<\\/li><\\/ul><p>\\u00a0<\\/p><p><strong>Things To Consider When Integrating Traditional Chinese Medicine Into Your Fertility Treatments<\\/strong><\\/p><ul><li>Timing and consistency of treatment is of primary importance. Basic foundation treatments are required to regulate the body\\u2019s systems regardless of age.\\u00a0 For men and women alike, it may take 3-6 months to heal individual segments of the reproductive cycle.\\u00a0<\\/li><\\/ul><p>In general, men and women alike can benefit from concentrated foundational treatment event if they are not trying to conceive to balance the body\\u2019s systems.<\\/p><ul><li>Age, medical history and lifestyle are important factors regardless of age. If a couple is in their 40\\u2019s and has had numerous fertility drug cycles, extensive use of birth control pills, a history of smoking, drinking drug abuse, medical reproductive issues such as endometriosis, sperm antibodies or a host of other variables, it will take longer to balance the reproductive system.<\\/li><\\/ul><p>A couple should allow a minimum of 6-9 months before really expecting to evaluate results.\\u00a0 There is not short cut to conception but in many cases, \\u201cturning back the clock\\u201d is possible.<\\/p><ul><li>Lifestyle changes may be appropriate. Men and women alike should be in a high state of wellness from the TCM point of view.\\u00a0 Both should be normally active and have a relatively low stress level, positive energy and an abundant lifestyle.\\u00a0 The important point is that all aspects of ones life should be considered to assure you make the most of your treatment and pregnancy.<\\/li><li>Correct diet and exercise habits are important for both the pre-conceptive mother and father. Based on individual assessments there may be specific physical exercises and or treatments that the TCM practitioner recommends to help generate the right environment necessary for conception.<\\/li><li>The combination of conventional reproductive technologies and those associated with Traditional Chinese Medicine requires that the patient facilitate open and accurate communication between all parties. TCM therapies work differently the traditional western medicines.\\u00a0 The patients and practitioners need to have a full understanding of all activities to assure that each patient is achieving the optimum result from all treatments.<\\/li><li>When choosing a TCM practitioner it is important to substantiate that individual is suitably qualified to do fertility work. Communication, experience and skill are requirements.\\u00a0 Entry level TCM practitioners will have the skill to assist with the removal of pre-exiting conditions that may be contributing to infertility.\\u00a0 However, if either reproductive function or biological age of the endocrine system is contributing to the condition than specific skills and experience is necessary.<\\/li><\\/ul><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.\\u00a0 Issues with fertility and other health concerns are directly associated with an imbalance of the body\\u2019s energy.\\u00a0 Through a holistic approach TCM works with the patient to restore and maintain each individual\\u2019s optimum state of health.\\u00a0 As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.\\u00a0 Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.<\\/p><p>TCM treatments for infertility and other conditions is provided by Dr. Qizhi Gao at the Evergreen Wellness Center.\\u00a0 You can contact the Evergreen Wellness Center at 316-691-8811 for an appointments or additional information.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(816,188,'_wp_attached_file','2018/04/bg.jpg'),(817,188,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2018/04/bg.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"bg-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:14:\"bg-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"bg-768x658.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"bg-1024x878.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:878;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:{}}}'),(821,189,'_elementor_template_type','post'),(822,189,'_elementor_data','[{\"id\":\"118be89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cae6fe1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c899a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16bb0a53\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"253e5909\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b1e082f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Things To Consider When Integrating Traditional Chinese Medicine Into Your Fertility Treatments<\\/strong>\\r\\n<ul>\\r\\n \\t<li>Timing and consistency of treatment is of primary importance. Basic foundation treatments are required to regulate the body\\u2019s systems regardless of age.\\u00a0 For men and women alike, it may take 3-6 months to heal individual segments of the reproductive cycle.<\\/li>\\r\\n<\\/ul>\\r\\nIn general, men and women alike can benefit from concentrated foundational treatment event if they are not trying to conceive to balance the body\\u2019s systems.\\r\\n<ul>\\r\\n \\t<li>Age, medical history and lifestyle are important factors regardless of age. If a couple is in their 40\\u2019s and has had numerous fertility drug cycles, extensive use of birth control pills, a history of smoking, drinking drug abuse, medical reproductive issues such as endometriosis, sperm antibodies or a host of other variables, it will take longer to balance the reproductive system.<\\/li>\\r\\n<\\/ul>\\r\\nA couple should allow a minimum of 6-9 months before really expecting to evaluate results.\\u00a0 There is not short cut to conception but in many cases, \\u201cturning back the clock\\u201d is possible.\\r\\n<ul>\\r\\n \\t<li>Lifestyle changes may be appropriate. Men and women alike should be in a high state of wellness from the TCM point of view.\\u00a0 Both should be normally active and have a relatively low stress level, positive energy and an abundant lifestyle.\\u00a0 The important point is that all aspects of ones life should be considered to assure you make the most of your treatment and pregnancy.<\\/li>\\r\\n \\t<li>Correct diet and exercise habits are important for both the pre-conceptive mother and father. Based on individual assessments there may be specific physical exercises and or treatments that the TCM practitioner recommends to help generate the right environment necessary for conception.<\\/li>\\r\\n \\t<li>The combination of conventional reproductive technologies and those associated with Traditional Chinese Medicine requires that the patient facilitate open and accurate communication between all parties. TCM therapies work differently the traditional western medicines.\\u00a0 The patients and practitioners need to have a full understanding of all activities to assure that each patient is achieving the optimum result from all treatments.<\\/li>\\r\\n \\t<li>When choosing a TCM practitioner it is important to substantiate that individual is suitably qualified to do fertility work. Communication, experience and skill are requirements.\\u00a0 Entry level TCM practitioners will have the skill to assist with the removal of pre-exiting conditions that may be contributing to infertility.\\u00a0 However, if either reproductive function or biological age of the endocrine system is contributing to the condition than specific skills and experience is necessary.<\\/li>\\r\\n<\\/ul>\\r\\nTraditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.\\u00a0 Issues with fertility and other health concerns are directly associated with an imbalance of the body\\u2019s energy.\\u00a0 Through a holistic approach TCM works with the patient to restore and maintain each individual\\u2019s optimum state of health.\\u00a0 As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.\\u00a0 Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.\\r\\n\\r\\nTCM treatments for infertility and other conditions is provided by Dr. Qizhi Gao at the Evergreen Wellness Center.\\u00a0 You can contact the Evergreen Wellness Center at 316-691-8811 for an appointments or additional information.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(823,183,'_elementor_version','0.4'),(824,190,'_wp_page_template','default'),(825,190,'_elementor_edit_mode','builder'),(826,190,'_elementor_template_type','post'),(827,190,'_elementor_data','[{\"id\":\"118be89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cae6fe1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c899a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16bb0a53\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"59a7ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ffe8045\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Traditional Chinese Medicine and Infertility<\\/strong><\\/p><p>Traditional Chinese Medicine (TCM) has been developing for over 2000 years.\\u00a0 Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts through the ages have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.<\\/p><p>In TCM the holistic concept includes integrity of the body and its relationship with the natural world.\\u00a0 The body is an organic whole and its functions are interconnected.\\u00a0 The meridian system, which allows vital energy to flow, links the body as a whole.\\u00a0 The TCM practitioner will treat patients with therapies from four main categories:\\u00a0 Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese Massage and Qigong (energy healing).\\u00a0<\\/p><p>TCM has proven an effective alternative to addressing numerous reproductive issues including: PMS, amenorrhea, endometriosis, blocked fallopian tubes, immune system incongruities, and infertility related hormonal imbalances.\\u00a0 Presently, TCM in both China and America has proven to be an effective course of treatment when practiced in conjunction with standard Western medical techniques.\\u00a0<\\/p><p>\\u00a0<\\/p><p><strong>Treating Infertility<\\/strong><\\/p><p>There are no guarantees of fertility when opting to use TCM as there are no guarantees with Western medical options.\\u00a0 Patients that have functional rather than structural reason for infertility are the most successful candidates for the use of TCM techniques.\\u00a0 For example, a woman with damaged fallopian tubes would be experiencing structural infertility while a woman with nonfunctioning ovaries has a functional challenge with fertility.<\\/p><p>In general, TCM treatment of fertility issues would include a regimen of acupuncture, herbal treatments and possibly physical exercise or massage.\\u00a0 This approach will many times increase blood flow to the uterus and stimulate ovulation in women and can help increase sperm motility in men.\\u00a0 Additionally, most contemporary medical treatments involve the use of numerous drugs.\\u00a0 The use of acupuncture and herbal regimens could effectively reduce the prescription requirements throughout the treatment course.<\\/p><p>According to a German study published by the National Library of Medicine in April 2002 acupuncture may also increase a couple\\u2019s chance of conception when used in conjunction with traditional Western treatments such as in vitro fertilization (IVF).\\u00a0 In this study, 160 participants were divided into 2 groups each receiving standard IVF procedures.\\u00a0 One of the groups received TCM treatments before and after implantation.\\u00a0 The standard in-vitro group had a 26.3 percent pregnancy rate while the TCM group showed a 42.5 percent pregnancy rate.<\\/p><p>There are some distinct advantages to the integration of TCM when dealing with fertility challenges:<\\/p><ul><li>TCM sees a personal as an integral mind\\/body organism and seeks to stimulate the body\\u2019s natural healing potential by treating root causes.<\\/li><li>TCM used in the treatment of infertility minimizes undesired side effects and accumulated toxicity from invasive procedures and drug therapies.<\\/li><li>Traditional Chinese Medicine may be sued to strengthen and balance one\\u2019s general health so that IVF, GIFT, ZIFT, ICSI, AHT and TET procedures are more effective. The TCM patient\\u00a0 derives general health benefits and endocrine balancing from specific acupuncture and herbal regimes.\\u00a0 Pregnancy becomes easier to achieve and postpartum recuperation happens faster.\\u00a0<\\/li><li>The widespread use of TCM suggests that it is an effective medical health care system that can be successfully integrated with traditional Western medical techniques.<\\/li><\\/ul><p>\\u00a0<\\/p><p><strong>Things To Consider When Integrating Traditional Chinese Medicine Into Your Fertility Treatments<\\/strong><\\/p><ul><li>Timing and consistency of treatment is of primary importance. Basic foundation treatments are required to regulate the body\\u2019s systems regardless of age.\\u00a0 For men and women alike, it may take 3-6 months to heal individual segments of the reproductive cycle.\\u00a0<\\/li><\\/ul><p>In general, men and women alike can benefit from concentrated foundational treatment event if they are not trying to conceive to balance the body\\u2019s systems.<\\/p><ul><li>Age, medical history and lifestyle are important factors regardless of age. If a couple is in their 40\\u2019s and has had numerous fertility drug cycles, extensive use of birth control pills, a history of smoking, drinking drug abuse, medical reproductive issues such as endometriosis, sperm antibodies or a host of other variables, it will take longer to balance the reproductive system.<\\/li><\\/ul><p>A couple should allow a minimum of 6-9 months before really expecting to evaluate results.\\u00a0 There is not short cut to conception but in many cases, \\u201cturning back the clock\\u201d is possible.<\\/p><ul><li>Lifestyle changes may be appropriate. Men and women alike should be in a high state of wellness from the TCM point of view.\\u00a0 Both should be normally active and have a relatively low stress level, positive energy and an abundant lifestyle.\\u00a0 The important point is that all aspects of ones life should be considered to assure you make the most of your treatment and pregnancy.<\\/li><li>Correct diet and exercise habits are important for both the pre-conceptive mother and father. Based on individual assessments there may be specific physical exercises and or treatments that the TCM practitioner recommends to help generate the right environment necessary for conception.<\\/li><li>The combination of conventional reproductive technologies and those associated with Traditional Chinese Medicine requires that the patient facilitate open and accurate communication between all parties. TCM therapies work differently the traditional western medicines.\\u00a0 The patients and practitioners need to have a full understanding of all activities to assure that each patient is achieving the optimum result from all treatments.<\\/li><li>When choosing a TCM practitioner it is important to substantiate that individual is suitably qualified to do fertility work. Communication, experience and skill are requirements.\\u00a0 Entry level TCM practitioners will have the skill to assist with the removal of pre-exiting conditions that may be contributing to infertility.\\u00a0 However, if either reproductive function or biological age of the endocrine system is contributing to the condition than specific skills and experience is necessary.<\\/li><\\/ul><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.\\u00a0 Issues with fertility and other health concerns are directly associated with an imbalance of the body\\u2019s energy.\\u00a0 Through a holistic approach TCM works with the patient to restore and maintain each individual\\u2019s optimum state of health.\\u00a0 As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.\\u00a0 Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.<\\/p><p>TCM treatments for infertility and other conditions is provided by Dr. Qizhi Gao at the Evergreen Wellness Center.\\u00a0 You can contact the Evergreen Wellness Center at 316-691-8811 for an appointments or additional information.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(828,190,'_elementor_version','0.4'),(841,194,'_elementor_template_type','post'),(842,194,'_elementor_data','[{\"id\":\"118be89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cae6fe1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c899a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63bfb78\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"c6312bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.912},\"elements\":[{\"id\":\"e29053b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/wb3.jpg\",\"id\":11}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"638b4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":65.085},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(839,194,'_wp_page_template','default'),(840,194,'_elementor_edit_mode','builder'),(1324,318,'_wp_page_template','default'),(1325,318,'_elementor_template_type','post'),(1326,318,'_elementor_data','[{\"id\":\"47945f32\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1252},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(97,206,112,0.43)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"heading_visibility\":\"\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"content_position\":\"middle\",\"border_border\":\"solid\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"animation\":\"flash\",\"animation_duration\":\"slow\",\"animation_delay\":10},\"elements\":[{\"id\":\"77470a13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"72023398\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Evergreen Wellness Center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Georgia\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7494c53c\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":4},\"color\":\"#23a455\",\"width\":{\"unit\":\"%\",\"size\":8},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fb67322\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>May you have a good health and longevity ... like the Evergreen.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.7\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1327,318,'_elementor_version','0.4'),(1328,318,'_elementor_edit_mode','builder'),(2551,611,'_elementor_version','0.4'),(2552,611,'_elementor_template_type','post'),(2553,611,'_elementor_edit_mode','builder'),(2554,611,'_elementor_css','a:3:{s:4:\"time\";i:1523326506;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:6:\"status\";s:4:\"file\";}'),(1355,324,'_elementor_version','0.4'),(1356,324,'_elementor_edit_mode','builder'),(1359,325,'_wp_page_template','default'),(1360,325,'_elementor_template_type','post'),(1361,325,'_elementor_data','[{\"id\":\"47945f32\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1252},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(97,206,112,0.43)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"heading_visibility\":\"\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"content_position\":\"middle\",\"border_border\":\"solid\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"animation\":\"flash\",\"animation_duration\":\"slow\",\"animation_delay\":10},\"elements\":[{\"id\":\"77470a13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"72023398\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Evergreen Wellness Center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Georgia\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7494c53c\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":4},\"color\":\"#23a455\",\"width\":{\"unit\":\"%\",\"size\":8},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fb67322\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>May you have a good health and longevity ... like the Evergreen.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.7\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1346,323,'_wp_page_template','default'),(1347,323,'_elementor_template_type','post'),(1348,323,'_elementor_data','[{\"id\":\"47945f32\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1252},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(97,206,112,0.43)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"heading_visibility\":\"\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"content_position\":\"middle\",\"border_border\":\"solid\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"animation\":\"flash\",\"animation_duration\":\"slow\",\"animation_delay\":10},\"elements\":[{\"id\":\"77470a13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"72023398\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Evergreen Wellness Center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Georgia\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7494c53c\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":4},\"color\":\"#23a455\",\"width\":{\"unit\":\"%\",\"size\":8},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fb67322\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>May you have a good health and longevity ... like the Evergreen.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.7\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1349,323,'_elementor_version','0.4'),(1350,323,'_elementor_edit_mode','builder'),(1352,324,'_wp_page_template','default'),(1353,324,'_elementor_template_type','post'),(1354,324,'_elementor_data','[{\"id\":\"47945f32\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1252},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(97,206,112,0.43)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"heading_visibility\":\"\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"content_position\":\"middle\",\"border_border\":\"solid\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":0,\"bottom\":\"200\",\"left\":0,\"isLinked\":true},\"animation\":\"flash\",\"animation_duration\":\"slow\",\"animation_delay\":10},\"elements\":[{\"id\":\"77470a13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"72023398\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Evergreen Wellness Center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Georgia\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7494c53c\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":4},\"color\":\"#23a455\",\"width\":{\"unit\":\"%\",\"size\":8},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fb67322\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>May you have a good health and longevity ... like the Evergreen.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.7\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(997,227,'_wp_attached_file','2018/04/bamboo-454-2.jpg'),(862,197,'_elementor_version','0.4'),(865,188,'_wp_attachment_is_custom_background','custom-lite'),(1240,302,'_elementor_version','0.4'),(1280,311,'_elementor_version','0.4'),(1281,311,'_elementor_edit_mode','builder'),(879,202,'_wp_attached_file','2018/03/cropped-wb1.jpg'),(880,202,'_wp_attachment_context','custom-header'),(881,202,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2018/03/cropped-wb1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"cropped-wb1-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:23:\"cropped-wb1-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"cropped-wb1-768x256.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"cropped-wb1-1024x341.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"cropped-wb1-400x133.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:133;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:{}}s:17:\"attachment_parent\";i:10;}'),(882,202,'_wp_attachment_custom_header_last_used_custom-lite','1522712112'),(883,202,'_wp_attachment_is_custom_header','custom-lite'),(843,194,'_elementor_version','0.4'),(853,196,'_elementor_version','0.4'),(854,196,'_elementor_edit_mode','builder'),(998,227,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:24:\"2018/04/bamboo-454-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"bamboo-454-2-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:24:\"bamboo-454-2-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"bamboo-454-2-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"bamboo-454-2-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"bamboo-454-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;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:{}}}'),(999,227,'_wp_attachment_is_custom_background','nikko-portfolio'),(996,145,'_wp_attachment_is_custom_background','custom-lite'),(913,212,'_elementor_version','0.4'),(914,212,'_elementor_template_type','post'),(919,213,'_elementor_version','0.4'),(920,213,'_elementor_template_type','post'),(926,214,'_elementor_version','0.4'),(941,21,'_oembed_fa04b74d6cd9b8ced8eb361886164496','<iframe src=\"https://player.vimeo.com/video/194991450?app_id=122963\" width=\"480\" height=\"360\" frameborder=\"0\" title=\"What Is Bigu Qigong\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>'),(942,21,'_oembed_time_fa04b74d6cd9b8ced8eb361886164496','1522715851'),(1277,311,'_wp_page_template','default'),(1278,311,'_elementor_template_type','post'),(1279,311,'_elementor_data','[{\"id\":\"47945f32\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1321},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"heading_visibility\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"77470a13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"72023398\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Evergreen Wellness Center\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Georgia\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7494c53c\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":4},\"color\":\"#23a455\",\"width\":{\"unit\":\"%\",\"size\":8},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fb67322\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>May you have a good health and longevity ... like the Evergreen.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#636363\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.7\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(973,219,'_edit_last','1'),(1369,326,'_elementor_version','0.4'),(1370,326,'_elementor_edit_mode','builder'),(1416,337,'_elementor_version','0.4'),(1417,337,'_elementor_edit_mode','builder'),(1419,338,'_wp_page_template','default'),(1420,338,'_elementor_template_type','post'),(1421,338,'_elementor_data','[{\"id\":\"3c8b5685\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_video_fallback\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/p.jpg\",\"id\":276},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"29330069\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c1c9ff7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#23a455\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c75a358\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen.<\\/p>\",\"align\":\"center\",\"text_color\":\"#23a455\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1380,302,'_edit_lock','1522810418:1'),(1381,328,'_elementor_template_type','page'),(1382,328,'_elementor_edit_mode','builder'),(1383,328,'_elementor_data','[]'),(1399,333,'_elementor_template_type','page'),(1400,333,'_elementor_edit_mode','builder'),(1401,333,'_elementor_data','[{\"id\":\"41ae5f35\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"64772957\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"111a7456\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":329,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/review_3-1.png\"},\"title_text\":\"Christopher Brown\",\"description_text\":\"\\\"Vestibulum dapibus odio at nisl consequat, in semper augue auctor. Duis risus felis, pulvinar quis tempus vitae\\u201d \",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":34},\"image_size\":{\"unit\":\"%\",\"size\":50},\"section_style_content\":\"\",\"text_align\":\"left\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#595858\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"title_typography_font_family\":\"Open Sans\",\"heading_description\":\"\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_family\":\"Poppins\",\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6950726c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"60d42a83\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":330,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/review_2-1.png\"},\"title_text\":\"Lora Spielberg\",\"description_text\":\"\\\"Vestibulum dapibus odio at nisl consequat, in semper augue auctor. Duis risus felis, pulvinar quis tempus vitae\\u201d \",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":34},\"image_size\":{\"unit\":\"%\",\"size\":50},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#595858\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"title_typography_font_family\":\"Open Sans\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_family\":\"Poppins\",\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"629243b1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"7592846f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"6c04865\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":331,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/review_1-1.png\"},\"title_text\":\"Jessie Olive\",\"description_text\":\"\\\"Vestibulum dapibus odio at nisl consequat, in semper augue auctor. Duis risus felis, pulvinar quis tempus vitae\\u201d \",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":34},\"image_size\":{\"unit\":\"%\",\"size\":50},\"section_style_content\":\"\",\"text_align\":\"left\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#595858\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"title_typography_font_family\":\"Open Sans\",\"heading_description\":\"\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_family\":\"Poppins\",\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"47550cae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"7d1a3f51\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":332,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/circle-1.png\"},\"title_text\":\"Pam Lipton\",\"description_text\":\"\\\"Vestibulum dapibus odio at nisl consequat, in semper augue auctor. Duis risus felis, pulvinar quis tempus vitae\\u201d \",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":34},\"image_size\":{\"unit\":\"%\",\"size\":47},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#595858\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"title_typography_font_family\":\"Open Sans\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_family\":\"Poppins\",\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(1384,328,'_elementor_version','0.4'),(1386,328,'_wp_page_template','default'),(1402,334,'_elementor_template_type','page'),(1403,334,'_elementor_edit_mode','builder'),(1404,334,'_elementor_data','[{\"id\":\"41ae5f35\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"64772957\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"111a7456\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":329,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/review_3-1.png\"},\"title_text\":\"Christopher Brown\",\"description_text\":\"\\\"Vestibulum dapibus odio at nisl consequat, in semper augue auctor. Duis risus felis, pulvinar quis tempus vitae\\u201d \",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":34},\"image_size\":{\"unit\":\"%\",\"size\":50},\"section_style_content\":\"\",\"text_align\":\"left\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#595858\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"title_typography_font_family\":\"Open Sans\",\"heading_description\":\"\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_family\":\"Poppins\",\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6950726c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"60d42a83\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":330,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/review_2-1.png\"},\"title_text\":\"Lora Spielberg\",\"description_text\":\"\\\"Vestibulum dapibus odio at nisl consequat, in semper augue auctor. Duis risus felis, pulvinar quis tempus vitae\\u201d \",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":34},\"image_size\":{\"unit\":\"%\",\"size\":50},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#595858\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"title_typography_font_family\":\"Open Sans\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_family\":\"Poppins\",\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"629243b1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"7592846f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"6c04865\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":331,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/review_1-1.png\"},\"title_text\":\"Jessie Olive\",\"description_text\":\"\\\"Vestibulum dapibus odio at nisl consequat, in semper augue auctor. Duis risus felis, pulvinar quis tempus vitae\\u201d \",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":34},\"image_size\":{\"unit\":\"%\",\"size\":50},\"section_style_content\":\"\",\"text_align\":\"left\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#595858\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"title_typography_font_family\":\"Open Sans\",\"heading_description\":\"\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_family\":\"Poppins\",\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"47550cae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"7d1a3f51\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":332,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/circle-1.png\"},\"title_text\":\"Pam Lipton\",\"description_text\":\"\\\"Vestibulum dapibus odio at nisl consequat, in semper augue auctor. Duis risus felis, pulvinar quis tempus vitae\\u201d \",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":34},\"image_size\":{\"unit\":\"%\",\"size\":47},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#595858\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"title_typography_font_family\":\"Open Sans\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_family\":\"Poppins\",\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(1405,333,'_elementor_version','0.4'),(1406,335,'_elementor_template_type','page'),(1407,335,'_elementor_edit_mode','builder'),(1408,335,'_elementor_data','[{\"id\":\"341c4a16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"ade3bf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"3896511e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Work\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6982e416\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe actions speak louder than words.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17c0dd4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"17b54e35\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"7d04db69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"6a045e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"OUR SERVICES\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"background_color\":\"#13497e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"63d8804e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"3853fdbc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SEE US IN ACTION\",\"link\":{\"url\":\"\\/our-work\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"button_text_color\":\"#13497e\",\"background_color\":\"rgba(255,255,255,0)\",\"hover_color\":\"#6ec1e4\",\"button_background_hover_color\":\"rgba(255,255,255,0)\",\"button_hover_border_color\":\"#6ec1e4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#13497e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1409,336,'_elementor_template_type','page'),(1410,336,'_elementor_edit_mode','builder'),(1411,336,'_elementor_data','[{\"id\":\"341c4a16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"ade3bf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"3896511e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Work\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6982e416\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We believe actions speak louder than words.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17c0dd4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"17b54e35\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"7d04db69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"6a045e80\",\"elType\":\"widget\",\"settings\":{\"text\":\"OUR SERVICES\",\"link\":{\"url\":\"\\/services\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"background_color\":\"#13497e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"63d8804e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"3853fdbc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SEE US IN ACTION\",\"link\":{\"url\":\"\\/our-work\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"button_text_color\":\"#13497e\",\"background_color\":\"rgba(255,255,255,0)\",\"hover_color\":\"#6ec1e4\",\"button_background_hover_color\":\"rgba(255,255,255,0)\",\"button_hover_border_color\":\"#6ec1e4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#13497e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1412,335,'_elementor_version','0.4'),(1422,338,'_elementor_version','0.4'),(1423,338,'_elementor_edit_mode','builder'),(1437,341,'_wp_page_template','default'),(1438,341,'_elementor_template_type','post'),(1439,341,'_elementor_data','[{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1432,340,'_wp_page_template','default'),(1433,340,'_elementor_template_type','post'),(1434,340,'_elementor_data','[{\"id\":\"3c8b5685\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_video_fallback\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/p.jpg\",\"id\":276},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"29330069\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c1c9ff7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#23a455\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c75a358\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen.<\\/p>\",\"align\":\"center\",\"text_color\":\"#23a455\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6aa698c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"rgba(0,0,0,0.77)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1435,340,'_elementor_version','0.4'),(1436,340,'_elementor_edit_mode','builder'),(1440,341,'_elementor_version','0.4'),(1441,341,'_elementor_edit_mode','builder'),(1453,343,'_wp_page_template','default'),(1454,343,'_elementor_template_type','post'),(1455,343,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/p.jpg\",\"id\":276}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#23a455\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"center\",\"text_color\":\"#23a455\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":47.595},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":52.427},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":55.443},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.579},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1456,343,'_elementor_version','0.4'),(1457,343,'_elementor_edit_mode','builder'),(1459,344,'_wp_page_template','default'),(1460,344,'_elementor_template_type','post'),(1461,344,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/p.jpg\",\"id\":276}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#23a455\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"center\",\"text_color\":\"#23a455\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(229,229,229,0.38)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#ededed\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1462,344,'_elementor_version','0.4'),(1463,344,'_elementor_edit_mode','builder'),(1473,346,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/wb3.jpg\",\"id\":11}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5924f02\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"2c41add\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"76b9c5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0233.jpg\",\"id\":116},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"150\",\"height\":\"200\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ed43723\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"dcd04e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35b22d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"e80c054\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9131e24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0233.jpg\",\"id\":116},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"150\",\"height\":\"200\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a66570\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ce48b6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1770a8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b814b49\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8aa30bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161023003731\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\" data-wplink-edit=\\\"true\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2c17028\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e58433\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5a405f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1471,346,'_wp_page_template','default'),(1472,346,'_elementor_edit_mode','builder'),(1474,346,'_elementor_version','0.4'),(1475,346,'_elementor_template_type','post'),(1487,350,'_elementor_template_type','page'),(1488,350,'_elementor_edit_mode','builder'),(1489,350,'_elementor_data','[{\"id\":\"46252be3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\",\"background_overlay_section\":\"\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"4c84477a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"7aa28cff\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"our services\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#222329\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f895d0a\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"30\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"3937c872\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#222329\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"797f214a\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":347,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/SEVICES_1-1.png\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1a36f929\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"PACKING\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7eda3a\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#dfaa0a\",\"width\":{\"unit\":\"%\",\"size\":\"13\"},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":\"10\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ddb42c9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>\\u00a0Nunc et augue pulvinar, luctus mi non, sagittis odio. Phasellus congue sem nulla.non sodales orci malesu da vel. Aliquam mi eros.\\u00a0<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c6ab0fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#222329\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"16a31f8c\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":348,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/SERVICES_2-1.png\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26c6c937\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"MOVING \",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db002ec\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#dfaa0a\",\"width\":{\"unit\":\"%\",\"size\":\"13\"},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":\"10\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7d70430d\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Phasellus congue sem nulla.non sodales orci malesuada vel. Aliquam posuere mi eros.at condimentum elit feugiat vel.\\u00a0<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6b53006f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#222329\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"52e367b0\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":349,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/SERVICES_3-1.png\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28e43628\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"STORAGE\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48d1da77\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#dfaa0a\",\"width\":{\"unit\":\"%\",\"size\":\"13\"},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":\"10\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"331858a0\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>\\u00a0Nunc et augue pulvinar, luctus mi non, sagittis odio. non sodales orci malesu da vel. Aliquam posuere mi eros. at centum elit feugiat vel.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1490,351,'_elementor_template_type','page'),(1491,351,'_elementor_edit_mode','builder'),(1492,351,'_elementor_data','[{\"id\":\"46252be3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\",\"background_overlay_section\":\"\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"4c84477a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"7aa28cff\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"our services\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#222329\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f895d0a\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"30\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"3937c872\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#222329\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"797f214a\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":347,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/SEVICES_1-1.png\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1a36f929\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"PACKING\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7eda3a\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#dfaa0a\",\"width\":{\"unit\":\"%\",\"size\":\"13\"},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":\"10\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3ddb42c9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>\\u00a0Nunc et augue pulvinar, luctus mi non, sagittis odio. Phasellus congue sem nulla.non sodales orci malesu da vel. Aliquam mi eros.\\u00a0<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c6ab0fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#222329\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"16a31f8c\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":348,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/SERVICES_2-1.png\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26c6c937\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"MOVING \",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db002ec\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#dfaa0a\",\"width\":{\"unit\":\"%\",\"size\":\"13\"},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":\"10\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7d70430d\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Phasellus congue sem nulla.non sodales orci malesuada vel. Aliquam posuere mi eros.at condimentum elit feugiat vel.\\u00a0<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6b53006f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#222329\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"52e367b0\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":349,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/SERVICES_3-1.png\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"28e43628\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"STORAGE\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48d1da77\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#dfaa0a\",\"width\":{\"unit\":\"%\",\"size\":\"13\"},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":\"10\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"331858a0\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>\\u00a0Nunc et augue pulvinar, luctus mi non, sagittis odio. non sodales orci malesu da vel. Aliquam posuere mi eros. at centum elit feugiat vel.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1493,350,'_elementor_version','0.4'),(1943,436,'_wp_page_template','default'),(1944,436,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/wb3.jpg\",\"id\":11}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":356,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao-1.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":406,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/carrie.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist\\u00a0\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1770a8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b814b49\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d8d8d8\"},\"elements\":[{\"id\":\"8aa30bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161023003731\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\" data-wplink-edit=\\\"true\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1670,408,'_wp_page_template','default'),(1671,408,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/wb3.jpg\",\"id\":11}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":407,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":406,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/carrie.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist OM\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1770a8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b814b49\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d8d8d8\"},\"elements\":[{\"id\":\"8aa30bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161023003731\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\" data-wplink-edit=\\\"true\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a04517\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"7a274cd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1501,353,'_wp_page_template','default'),(1502,353,'_elementor_edit_mode','builder'),(1503,353,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/wb3.jpg\",\"id\":11}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(122,122,122,0.89)\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":116,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0233.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#222329\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":330,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/review_2-1.png\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ebaae17\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"STORAGE\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"2\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f91a9ea\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#dfaa0a\",\"width\":{\"unit\":\"%\",\"size\":\"13\"},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":\"10\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>\\u00a0Nunc et augue pulvinar, luctus mi non, sagittis odio. non sodales orci malesu da vel. Aliquam posuere mi eros. at centum elit feugiat vel.<\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35b22d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"e80c054\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9131e24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0233.jpg\",\"id\":116},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"150\",\"height\":\"200\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a66570\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ce48b6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1770a8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b814b49\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8aa30bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161023003731\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\" data-wplink-edit=\\\"true\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2c17028\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e58433\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5a405f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a04517\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"7a274cd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1504,353,'_elementor_version','0.4'),(1505,353,'_elementor_template_type','post'),(1511,21,'_oembed_24bafe6eb3312d12645ae719bec06fb9','<iframe src=\"https://player.vimeo.com/video/194991450?app_id=122963\" width=\"480\" height=\"360\" frameborder=\"0\" title=\"What Is Bigu Qigong\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>'),(1512,21,'_oembed_time_24bafe6eb3312d12645ae719bec06fb9','1522875475'),(1509,356,'_wp_attached_file','2018/04/gao-1.jpg'),(1510,356,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:287;s:6:\"height\";i:275;s:4:\"file\";s:17:\"2018/04/gao-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"gao-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(1524,364,'_wp_page_template','default'),(1525,364,'_elementor_template_type','post'),(1526,364,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/7b.jpg\",\"id\":363}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(163,201,38,0.85)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"rgba(0,0,0,0.76)\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#ededed\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1527,364,'_elementor_version','0.4'),(1528,364,'_elementor_edit_mode','builder'),(2502,600,'_wp_attached_file','2018/04/1-1.jpg'),(2503,600,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1157;s:6:\"height\";i:320;s:4:\"file\";s:15:\"2018/04/1-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"1-1-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:14:\"1-1-300x83.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"1-1-768x212.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"1-1-1024x283.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:283;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(1542,371,'_wp_attached_file','2018/04/2-1.jpg'),(1543,371,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:980;s:6:\"height\";i:353;s:4:\"file\";s:15:\"2018/04/2-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"2-1-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:15:\"2-1-300x108.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"2-1-768x277.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:277;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(2235,531,'_elementor_version','0.4'),(2236,531,'_elementor_edit_mode','builder'),(2138,507,'_elementor_template_type','post'),(2139,507,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#2c871c\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/bbm.png\",\"id\":504}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"#7a7a7a\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a16c354\",\"elType\":\"widget\",\"settings\":{\"title\":\"If you have any questions, please contact us.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7737759\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"69bcd84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3c023a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2063,470,'_wp_attached_file','2018/04/8757c1aa057517a.jpg'),(2064,470,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1016;s:6:\"height\";i:260;s:4:\"file\";s:27:\"2018/04/8757c1aa057517a.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"8757c1aa057517a-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:\"8757c1aa057517a-300x77.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"8757c1aa057517a-768x197.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:197;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:{}}}'),(1584,388,'_elementor_edit_mode','builder'),(1583,388,'_elementor_version','0.4'),(1615,396,'_wp_page_template','default'),(1580,388,'_wp_page_template','default'),(1581,388,'_elementor_template_type','post'),(1582,388,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#2c871c\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/b44.jpg\",\"id\":387}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(134,155,27,0.53)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"#ffffff\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(188,224,58,0.53)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2241,533,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/2.png\",\"id\":529}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#3d3d3d\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"center\",\"text_color\":\"#191919\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":356,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao-1.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":444,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0238.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist\\u00a0\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.<\\/p><p>She strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.<\\/p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1dd45c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"81b7eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eaf6e0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\"><span style=\\\"text-decoration: underline;\\\"><strong>contact us<\\/strong><\\/span><\\/a>.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"_background_background\":\"classic\",\"_background_color\":\"#eaeaea\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2127,502,'_wp_attached_file','2018/04/b32.jpg'),(2128,502,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:15:\"2018/04/b32.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b32-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(2240,533,'_wp_page_template','default'),(2137,507,'_wp_page_template','default'),(1603,394,'_wp_page_template','default'),(1602,393,'_elementor_edit_mode','builder'),(1601,393,'_elementor_version','0.4'),(1600,393,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#2c871c\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/bb1.jpg\",\"id\":392}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(134,155,27,0.53)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"#f7f7f7\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(188,224,58,0.53)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1598,393,'_wp_page_template','default'),(1599,393,'_elementor_template_type','post'),(1604,394,'_elementor_template_type','post'),(1605,394,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#2c871c\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/bb1.jpg\",\"id\":392}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(134,155,27,0.53)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"#f7f7f7\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(188,224,58,0.53)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_font_style\":\"normal\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1606,394,'_elementor_version','0.4'),(1607,394,'_elementor_edit_mode','builder'),(1637,400,'_wp_page_template','default'),(1620,397,'_wp_page_template','default'),(1638,400,'_elementor_template_type','post'),(1618,396,'_elementor_version','0.4'),(1619,396,'_elementor_edit_mode','builder'),(1616,396,'_elementor_template_type','post'),(1617,396,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#2c871c\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/bb1.jpg\",\"id\":392}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(188,224,58,0.53)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"#f7f7f7\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(188,224,58,0.53)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align\":\"left\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1621,397,'_elementor_template_type','post'),(1622,397,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#2c871c\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/bb1.jpg\",\"id\":392}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome<\\/span><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\"> to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"#f7f7f7\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"rgba(247,247,247,0.11)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align\":\"left\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1623,397,'_elementor_version','0.4'),(1624,397,'_elementor_edit_mode','builder'),(1654,402,'_elementor_edit_mode','builder'),(2143,508,'_wp_page_template','default'),(1626,398,'_wp_page_template','default'),(1627,398,'_elementor_template_type','post'),(1628,398,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#2c871c\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/bb1.jpg\",\"id\":392}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome<\\/span><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\"> to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"#f7f7f7\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"8fe89d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"rgba(0,0,0,0.11)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"align\":\"left\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1629,398,'_elementor_version','0.4'),(1630,398,'_elementor_edit_mode','builder'),(1640,400,'_elementor_version','0.4'),(1641,400,'_elementor_edit_mode','builder'),(1639,400,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#2c871c\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/bb1.jpg\",\"id\":392}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome<\\/span><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\"> to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"#f7f7f7\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1653,402,'_elementor_version','0.4'),(1650,402,'_wp_page_template','default'),(1651,402,'_elementor_template_type','post'),(1652,402,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#2c871c\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/bb1.jpg\",\"id\":392}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h3\",\"align\":\"right\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"#7a7a7a\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2144,508,'_elementor_template_type','post'),(1656,23,'_elementor_edit_mode','builder'),(1660,406,'_wp_attached_file','2018/04/carrie.jpg'),(1661,406,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2656;s:6:\"height\";i:2656;s:4:\"file\";s:18:\"2018/04/carrie.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"carrie-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:18:\"carrie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"carrie-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"carrie-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(1662,407,'_wp_attached_file','2018/04/gao.jpg'),(1663,407,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2656;s:6:\"height\";i:2656;s:4:\"file\";s:15:\"2018/04/gao.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"gao-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:15:\"gao-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"gao-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"gao-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(1672,408,'_elementor_version','0.4'),(1673,408,'_elementor_template_type','post'),(1674,408,'_elementor_edit_mode','builder'),(1937,435,'_wp_page_template','default'),(1938,435,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/wb3.jpg\",\"id\":11}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":356,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao-1.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":406,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/carrie.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist\\u00a0\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1770a8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b814b49\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d8d8d8\"},\"elements\":[{\"id\":\"8aa30bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161023003731\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\" data-wplink-edit=\\\"true\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a04517\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"7a274cd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1677,410,'_elementor_edit_mode','builder'),(1678,410,'_elementor_data','[{\"id\":\"1d02beeb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/b23.jpg\",\"id\":379}},\"elements\":[{\"id\":\"5068b065\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13a059d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25b3bf11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Acupuncture\\u00a0 \\u00a0 \\u00a0 Herbal\\u00a0 \\u00a0 \\u00a0 Massage\\u00a0 \\u00a0 \\u00a0 Qigong<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"34\",\"bottom\":\"34\",\"left\":\"34\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a945cdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e62b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5246e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture\",\"title_color\":\"#000000\",\"header_size\":\"h1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1482aef\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0e7e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c051a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/ac7.jpg\",\"id\":137}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e0ffa16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15744fe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/Acupuncture500-1.jpg\",\"id\":143}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72a9504\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b39eba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/acupuncture_500-e1522635045797.jpg\",\"id\":144}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c0f0005\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"753c81b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5740abf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.<\\/p><h3>Acupuncture can be used to treat all types of health issues:<\\/h3><p>Addictions<br \\/> Allergies<br \\/> Cosmetic procedures (such as acupuncture for face lifting)<br \\/> Degenerative diseases due to aging<br \\/> Depression<br \\/> Men\\u2019s Health<br \\/> Pain Management<br \\/> Stroke Rehabilitation<br \\/> Weight Loss and Management<br \\/> Women\\u2019s Health (PMS, Menopause, Low libido, Infertility, etc.)<\\/p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.<\\/p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.<\\/p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec0d743\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8d51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"93a445e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Herbal Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38708fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b63b587\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5dd77b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17814.jpg\",\"id\":145}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2abd357\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c23e197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/jt-ai-020223846.jpg\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"302e538\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c678bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17815.jpg\",\"id\":146}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"65f85cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"19ec65f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17845.jpg\",\"id\":147}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a441ce4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"c027e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8075edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.<\\/p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.<\\/p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617123300\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an herbal consultation today!<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1050842\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"312fd40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b26e839\",\"elType\":\"widget\",\"settings\":{\"title\":\"Massage\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c22f36b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2d5a971\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f4ebd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nmm.jpg\",\"id\":151}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1d5f1ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ea50966\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nm.jpg\",\"id\":149}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f3901a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8f9a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nl.jpg\",\"id\":150}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22995b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"e5aa6a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9419cff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>O<\\/strong><strong>riental Bodywork<\\/strong><\\/p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:<\\/p><p>Reduced stress and anxiety<br \\/> Relief from muscle tension and joint stiffness<br \\/> Increased blood circulation<br \\/> Reduced heart rate<br \\/> Induces relaxation<br \\/> Reduces back pain<br \\/> Relieves depression and insomnia<br \\/> Relieves Myofascial and Fibromyalgia pain<br \\/> Releives headaches\\/migraines<\\/p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.<\\/p><p>For more information about our massage therapists on staff, click <a title=\\\"Our Staff\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=46\\\">HERE<\\/a>.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment with one of our massage therapists.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d5284f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54a0c3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1bf07a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Qigong\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f518dd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d37e106\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"569f061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/taiji.jpg\",\"id\":152}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"91a2607\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"794de3c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/th.jpg\",\"id\":154}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e58b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"8e03323\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57bb45a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"contents\\\" class=\\\"clearfix\\\"><div id=\\\"maincol\\\"><div class=\\\"post\\\">\\u00a0<\\/div><\\/div><\\/div><div><p>Qigong (pronounced Chee Kung)\\u00a0is a method that combines body movement, breath exercise and mental concentration to exercise the body\\u2019s vital energy, or \\u201cQi\\u201d. In China, Qigong is widely accepted for it\\u2019s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.<\\/p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body\\u2019s immune ability, postpone the aging process and develop the body\\u2019s potential.<\\/p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:<\\/p><p>Anemia<br \\/> Anxiety\\/Depression<br \\/> Arthritis<br \\/> Asthma<br \\/> Back Pain<br \\/> Bone Density<br \\/> Body Strength\\/Flexibility<br \\/> Concentration\\/Memory<br \\/> Hearing or Vision Impairment<br \\/> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br \\/> Immune Cell Activity\\/Dysfunction<br \\/> Kidney Deficiencies<br \\/> Mental Health<br \\/> Overall Health and Well Being<br \\/> Sexual Dysfunction<br \\/> Tinnitus<br \\/> Weight Management<\\/p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner\\u2019s supervision. The second approach, External Qi\\u00a0healing, is a process whereby the Qigong practitioner\\u2019s energy is used to stimulate and balance the patient\\u2019s Qi\\u00a0so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.<\\/p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160503111017\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment for a Qigong consultation.<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f82c1f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f1ada06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1679,410,'_elementor_version','0.4'),(1680,410,'_elementor_template_type','post'),(1689,412,'_wp_page_template','default'),(1690,412,'_elementor_edit_mode','builder'),(1691,412,'_elementor_template_type','post');
INSERT INTO `aCPMymRSpostmeta` VALUES (1692,412,'_elementor_data','[{\"id\":\"4032e44e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/b21.jpg\",\"id\":385}},\"elements\":[{\"id\":\"353cd307\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c01f006\",\"elType\":\"widget\",\"settings\":{\"title\":\"Knowledge Base\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"title_color\":\"#000000\",\"typography_font_weight\":\"800\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c644254\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Knowledge is the power<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40d922d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4df6137\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a5d9b95\",\"elType\":\"widget\",\"settings\":{\"title\":\"What\\u2019s being treated?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8232c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8c5312e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48e1091\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/treatment.jpg\",\"id\":158}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0565030\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1c7f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"13dc2d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da6e27d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"2ac14d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bc5763d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world\\u2019s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.<\\/p><p>Q. Isn\\u2019t Traditional Chinese Medicine just a system of folk healing?<\\/p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.<\\/p><p><br \\/>Q. How does Traditional Chinese Medicine work?<\\/p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body\\u2019s healthy or righteous energy and attacking any unhealthy or negative energy. <\\/p><p>Q. How does a TCM practitioner determine what is out of balance?<\\/p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient\\u2019s face, body, and especially their tongue and its coating. The third is listening to the patient\\u2019s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.<\\/p><p><br \\/>Q. How is this rebalancing accomplished?<\\/p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture\\/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.<\\/p><p><br \\/>Q. Is Traditional Chinese Medicine safe?<\\/p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ac19ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"793d218\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e963fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a9ab31\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"ca4a9fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a6d187\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There is a plethora of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.<\\/p><p><a title=\\\"Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=303\\\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/a><\\/p><p><a title=\\\"Post-Stroke Rehabilitation\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=291\\\">Post-Stroke Rehabilitation<\\/a><\\/p><p><a title=\\\"Stroke Rehabilitation and Traditional Chinese Medicine\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=294\\\">Stroke Rehabilitation and Traditional Chinese Medicine<\\/a><\\/p><p><a title=\\\"TCM and Heart Diseases\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=297\\\">TCM and Heart Diseases<\\/a><\\/p><p><a title=\\\"Traditional Chinese Medicine and Infertility\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=289\\\">Traditional Chinese Medicine and Infertility<\\/a><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1693,412,'_elementor_version','0.4'),(2359,564,'_wp_attached_file','2018/04/12.png'),(2360,564,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1328;s:6:\"height\";i:360;s:4:\"file\";s:14:\"2018/04/12.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"12-300x81.png\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"12-768x208.png\";s:5:\"width\";i:768;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"12-1024x278.png\";s:5:\"width\";i:1024;s:6:\"height\";i:278;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:{}}}'),(1695,413,'_wp_page_template','default'),(1696,413,'_elementor_edit_mode','builder'),(1697,413,'_elementor_template_type','post'),(1698,413,'_elementor_data','[{\"id\":\"4032e44e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/b21.jpg\",\"id\":385}},\"elements\":[{\"id\":\"353cd307\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c01f006\",\"elType\":\"widget\",\"settings\":{\"title\":\"Knowledge Base   \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"title_color\":\"#000000\",\"typography_font_weight\":\"800\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c644254\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Knowledge is the power<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40d922d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4df6137\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a5d9b95\",\"elType\":\"widget\",\"settings\":{\"title\":\"What\\u2019s being treated?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8232c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8c5312e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48e1091\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/treatment.jpg\",\"id\":158}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0565030\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1c7f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"13dc2d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da6e27d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"2ac14d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bc5763d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world\\u2019s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.<\\/p><p>Q. Isn\\u2019t Traditional Chinese Medicine just a system of folk healing?<\\/p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.<\\/p><p><br \\/>Q. How does Traditional Chinese Medicine work?<\\/p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body\\u2019s healthy or righteous energy and attacking any unhealthy or negative energy. <\\/p><p>Q. How does a TCM practitioner determine what is out of balance?<\\/p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient\\u2019s face, body, and especially their tongue and its coating. The third is listening to the patient\\u2019s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.<\\/p><p><br \\/>Q. How is this rebalancing accomplished?<\\/p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture\\/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.<\\/p><p><br \\/>Q. Is Traditional Chinese Medicine safe?<\\/p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ac19ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"793d218\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e963fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a9ab31\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"ca4a9fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a6d187\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There is a plethora of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.<\\/p><p><a title=\\\"Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=303\\\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/a><\\/p><p><a title=\\\"Post-Stroke Rehabilitation\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=291\\\">Post-Stroke Rehabilitation<\\/a><\\/p><p><a title=\\\"Stroke Rehabilitation and Traditional Chinese Medicine\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=294\\\">Stroke Rehabilitation and Traditional Chinese Medicine<\\/a><\\/p><p><a title=\\\"TCM and Heart Diseases\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=297\\\">TCM and Heart Diseases<\\/a><\\/p><p><a title=\\\"Traditional Chinese Medicine and Infertility\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=289\\\">Traditional Chinese Medicine and Infertility<\\/a><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1699,413,'_elementor_version','0.4'),(1711,415,'_elementor_data','[{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"9\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Contact Us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#23a455\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":\"13\"},\"text_color\":\"#636363\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ad0d881\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"177\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f2cde97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/bbb.jpg\",\"id\":381}},\"elements\":[{\"id\":\"e6ca9ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"105ded37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f61811\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-718e069e elementor-widget elementor-widget-heading\\\" data-id=\\\"718e069e\\\" data-element_type=\\\"heading.default\\\"><div class=\\\"elementor-widget-container\\\"><h5 class=\\\"elementor-heading-title elementor-size-large\\\">Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly<\\/h5><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1710,415,'_elementor_template_type','post'),(1708,415,'_wp_page_template','default'),(1709,415,'_elementor_edit_mode','builder'),(1712,415,'_elementor_version','0.4'),(1719,417,'_wp_page_template','default'),(1713,416,'_wp_page_template','default'),(1714,416,'_elementor_edit_mode','builder'),(1715,416,'_elementor_template_type','post'),(1716,416,'_elementor_data','[{\"id\":\"1f2cde97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/bbb.jpg\",\"id\":381}},\"elements\":[{\"id\":\"e6ca9ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"105ded37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f61811\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-718e069e elementor-widget elementor-widget-heading\\\" data-id=\\\"718e069e\\\" data-element_type=\\\"heading.default\\\"><div class=\\\"elementor-widget-container\\\"><h5 class=\\\"elementor-heading-title elementor-size-large\\\">Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly<\\/h5><\\/div><\\/div>\",\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"9\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\",\"background_background\":\"classic\",\"background_color\":\"#f4f4f4\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Contact Us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#23a455\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":\"13\"},\"text_color\":\"#636363\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ad0d881\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"177\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(1717,416,'_elementor_version','0.4'),(2267,541,'_wp_page_template','default'),(2268,541,'_elementor_edit_mode','builder'),(1720,417,'_elementor_edit_mode','builder'),(1721,417,'_elementor_template_type','post'),(1722,417,'_elementor_data','[{\"id\":\"1f2cde97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/bbb.jpg\",\"id\":381}},\"elements\":[{\"id\":\"e6ca9ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"105ded37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f61811\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-718e069e elementor-widget elementor-widget-heading\\\" data-id=\\\"718e069e\\\" data-element_type=\\\"heading.default\\\"><h4 class=\\\"elementor-widget-container\\\">Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly<\\/h4><\\/div>\",\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"9\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\",\"background_background\":\"classic\",\"background_color\":\"#f4f4f4\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Contact Us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#23a455\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":\"13\"},\"text_color\":\"#636363\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ad0d881\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"177\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(1723,417,'_elementor_version','0.4'),(1726,418,'_wp_page_template','default'),(1727,418,'_elementor_template_type','post'),(1728,418,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#2c871c\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/bbb.jpg\",\"id\":381}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"right\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"#7a7a7a\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1729,418,'_elementor_version','0.4'),(1730,418,'_elementor_edit_mode','builder'),(1733,419,'_wp_page_template','default'),(1734,419,'_elementor_edit_mode','builder'),(1735,419,'_elementor_template_type','post'),(1736,419,'_elementor_data','[{\"id\":\"1f2cde97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/7b.jpg\",\"id\":363}},\"elements\":[{\"id\":\"e6ca9ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"105ded37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f61811\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-718e069e elementor-widget elementor-widget-heading\\\" data-id=\\\"718e069e\\\" data-element_type=\\\"heading.default\\\"><h4 class=\\\"elementor-widget-container\\\">Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly<\\/h4><\\/div>\",\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"9\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\",\"background_background\":\"classic\",\"background_color\":\"#f4f4f4\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Contact Us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#23a455\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":\"13\"},\"text_color\":\"#636363\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ad0d881\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"177\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(1737,419,'_elementor_version','0.4'),(1898,432,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1897,432,'_menu_item_target',''),(1896,432,'_menu_item_object','page'),(1895,432,'_menu_item_object_id','25'),(1894,432,'_menu_item_menu_item_parent','0'),(1893,432,'_menu_item_type','post_type'),(1892,431,'_menu_item_icon',''),(1891,431,'_menu_item_megamenu_widgetarea',''),(1890,431,'_menu_item_megamenu_heading',''),(1889,431,'_menu_item_megamenu_col',''),(1888,431,'_menu_item_megamenu_auto_width',''),(1887,431,'_menu_item_megamenu',''),(1886,431,'_menu_item_category_post',''),(1885,431,'_menu_item_nolink',''),(1884,431,'_menu_item_mega_template',''),(1883,431,'_menu_item_template',''),(1882,431,'_menu_item_url',''),(1881,431,'_menu_item_xfn',''),(1880,431,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1879,431,'_menu_item_target',''),(1878,431,'_menu_item_object','page'),(1877,431,'_menu_item_object_id','24'),(1876,431,'_menu_item_menu_item_parent','0'),(1875,431,'_menu_item_type','post_type'),(1874,430,'_menu_item_icon',''),(1873,430,'_menu_item_megamenu_widgetarea',''),(1872,430,'_menu_item_megamenu_heading',''),(1871,430,'_menu_item_megamenu_col',''),(1870,430,'_menu_item_megamenu_auto_width',''),(1869,430,'_menu_item_megamenu',''),(1868,430,'_menu_item_category_post',''),(1867,430,'_menu_item_nolink',''),(1866,430,'_menu_item_mega_template',''),(1865,430,'_menu_item_template',''),(1864,430,'_menu_item_url',''),(1863,430,'_menu_item_xfn',''),(1862,430,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1861,430,'_menu_item_target',''),(1860,430,'_menu_item_object','page'),(1859,430,'_menu_item_object_id','23'),(1858,430,'_menu_item_menu_item_parent','0'),(1857,430,'_menu_item_type','post_type'),(1856,429,'_menu_item_icon',''),(1855,429,'_menu_item_megamenu_widgetarea',''),(1854,429,'_menu_item_megamenu_heading',''),(1853,429,'_menu_item_megamenu_col',''),(1852,429,'_menu_item_megamenu_auto_width',''),(1851,429,'_menu_item_megamenu',''),(1850,429,'_menu_item_category_post',''),(1849,429,'_menu_item_nolink',''),(1848,429,'_menu_item_mega_template',''),(1847,429,'_menu_item_template',''),(1846,429,'_menu_item_url','http://evergreenwellness.com'),(1845,429,'_menu_item_xfn',''),(1844,429,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1843,429,'_menu_item_target',''),(1842,429,'_menu_item_object','custom'),(1841,429,'_menu_item_object_id','429'),(1840,429,'_menu_item_menu_item_parent','0'),(1839,429,'_menu_item_type','custom'),(1899,432,'_menu_item_xfn',''),(1900,432,'_menu_item_url',''),(1901,432,'_menu_item_template',''),(1902,432,'_menu_item_mega_template',''),(1903,432,'_menu_item_nolink',''),(1904,432,'_menu_item_category_post',''),(1905,432,'_menu_item_megamenu',''),(1906,432,'_menu_item_megamenu_auto_width',''),(1907,432,'_menu_item_megamenu_col',''),(1908,432,'_menu_item_megamenu_heading',''),(1909,432,'_menu_item_megamenu_widgetarea',''),(1910,432,'_menu_item_icon',''),(1911,433,'_menu_item_type','post_type'),(1912,433,'_menu_item_menu_item_parent','0'),(1913,433,'_menu_item_object_id','27'),(1914,433,'_menu_item_object','page'),(1915,433,'_menu_item_target',''),(1916,433,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1917,433,'_menu_item_xfn',''),(1918,433,'_menu_item_url',''),(1919,433,'_menu_item_template',''),(1920,433,'_menu_item_mega_template',''),(1921,433,'_menu_item_nolink',''),(1922,433,'_menu_item_category_post',''),(1923,433,'_menu_item_megamenu',''),(1924,433,'_menu_item_megamenu_auto_width',''),(1925,433,'_menu_item_megamenu_col',''),(1926,433,'_menu_item_megamenu_heading',''),(1927,433,'_menu_item_megamenu_widgetarea',''),(1928,433,'_menu_item_icon',''),(1931,434,'_wp_page_template','default'),(1932,434,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/wb3.jpg\",\"id\":11}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":356,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao-1.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":406,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/carrie.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist OM\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1770a8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b814b49\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d8d8d8\"},\"elements\":[{\"id\":\"8aa30bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161023003731\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\" data-wplink-edit=\\\"true\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a04517\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"7a274cd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1933,434,'_elementor_version','0.4'),(1934,434,'_elementor_template_type','post'),(1935,434,'_elementor_edit_mode','builder'),(1939,435,'_elementor_version','0.4'),(1940,435,'_elementor_template_type','post'),(1941,435,'_elementor_edit_mode','builder'),(1956,438,'_elementor_version','0.4'),(1945,436,'_elementor_version','0.4'),(1946,436,'_elementor_template_type','post'),(1947,436,'_elementor_edit_mode','builder'),(1955,438,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/wb3.jpg\",\"id\":11}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":356,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao-1.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":406,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/carrie.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist\\u00a0\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\"><span style=\\\"text-decoration: underline;\\\"><strong>contact us<\\/strong><\\/span><\\/a>.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1770a8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b814b49\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d8d8d8\"},\"elements\":[{\"id\":\"8aa30bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1954,438,'_wp_page_template','default'),(1957,438,'_elementor_template_type','post'),(1958,438,'_elementor_edit_mode','builder'),(1967,440,'_elementor_template_type','post'),(1966,440,'_elementor_version','0.4'),(1965,440,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/wb3.jpg\",\"id\":11}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":356,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao-1.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":406,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/carrie.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist\\u00a0\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\"><span style=\\\"text-decoration: underline;\\\"><strong>contact us<\\/strong><\\/span><\\/a>.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1770a8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b814b49\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d8d8d8\"},\"elements\":[{\"id\":\"8aa30bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1964,440,'_wp_page_template','default'),(1968,440,'_elementor_edit_mode','builder'),(2005,447,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/wb3.jpg\",\"id\":11}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":356,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao-1.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":444,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0238.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist\\u00a0\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Carrie Hao X Shen \\u00a0is \\u00a0a Licensed Acupuncturist (L.Ac.) and had completed her 4000 hour Oriental Medicine apprenticeship program under Dr. Qizhi Gao in 2014, She provides acupuncture treatments at Evergreen Wellness Center in Wichita, Kansas, as well as guidance in the areas of diet, exercise and Qi gong, from the Chinese Traditional Medicine perspective.<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1dd45c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"81b7eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eaf6e0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\"><span style=\\\"text-decoration: underline;\\\"><strong>contact us<\\/strong><\\/span><\\/a>.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"_background_background\":\"classic\",\"_background_color\":\"#eaeaea\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1970,441,'_wp_page_template','default'),(1971,441,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/wb3.jpg\",\"id\":11}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":356,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao-1.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":406,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/carrie.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist\\u00a0\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1dd45c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"81b7eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eaf6e0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\"><span style=\\\"text-decoration: underline;\\\"><strong>contact us<\\/strong><\\/span><\\/a>.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"_background_background\":\"classic\",\"_background_color\":\"#eaeaea\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1972,441,'_elementor_version','0.4'),(1973,441,'_elementor_template_type','post'),(1974,441,'_elementor_edit_mode','builder'),(1977,442,'_wp_page_template','default'),(1978,442,'_elementor_template_type','post'),(1979,442,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#2c871c\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/bbb.jpg\",\"id\":381}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"right\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"#7a7a7a\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a16c354\",\"elType\":\"widget\",\"settings\":{\"title\":\"If you have any questions, please contact us.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7737759\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"69bcd84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3c023a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1980,442,'_elementor_version','0.4'),(1981,442,'_elementor_edit_mode','builder'),(1984,443,'_wp_page_template','default'),(1985,443,'_elementor_template_type','post'),(1986,443,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#2c871c\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/bbb.jpg\",\"id\":381}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"right\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"#7a7a7a\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a16c354\",\"elType\":\"widget\",\"settings\":{\"title\":\"If you have any questions, please contact us.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7737759\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"69bcd84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3c023a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1987,443,'_elementor_version','0.4'),(1988,443,'_elementor_edit_mode','builder'),(1991,444,'_wp_attached_file','2018/04/IMG_0238.jpg'),(1992,444,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2656;s:6:\"height\";i:2656;s:4:\"file\";s:20:\"2018/04/IMG_0238.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0238-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:20:\"IMG_0238-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"IMG_0238-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_0238-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(2003,446,'_elementor_edit_mode','builder'),(2001,446,'_elementor_version','0.4'),(2002,446,'_elementor_template_type','post'),(2004,447,'_wp_page_template','default'),(1999,446,'_wp_page_template','default'),(2000,446,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/wb3.jpg\",\"id\":11}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":356,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao-1.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":444,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0238.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist\\u00a0\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1dd45c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"81b7eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eaf6e0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\"><span style=\\\"text-decoration: underline;\\\"><strong>contact us<\\/strong><\\/span><\\/a>.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"_background_background\":\"classic\",\"_background_color\":\"#eaeaea\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2006,447,'_elementor_version','0.4'),(2007,447,'_elementor_template_type','post'),(2008,447,'_elementor_edit_mode','builder'),(2010,448,'_wp_page_template','default'),(2011,448,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/03\\/wb3.jpg\",\"id\":11}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":356,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao-1.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":444,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0238.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist\\u00a0\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.<\\/p><p>She strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.<\\/p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1dd45c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"81b7eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eaf6e0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\"><span style=\\\"text-decoration: underline;\\\"><strong>contact us<\\/strong><\\/span><\\/a>.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"_background_background\":\"classic\",\"_background_color\":\"#eaeaea\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2012,448,'_elementor_version','0.4'),(2013,448,'_elementor_template_type','post'),(2014,448,'_elementor_edit_mode','builder'),(2145,508,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#2c871c\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/bbm.png\",\"id\":504}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":1},\"text_color\":\"#7a7a7a\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a16c354\",\"elType\":\"widget\",\"settings\":{\"title\":\"If you have any questions, please contact us.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7737759\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"69bcd84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3c023a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"background_color\":\"#3ea322\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2140,507,'_elementor_version','0.4'),(2141,507,'_elementor_edit_mode','builder'),(2146,508,'_elementor_version','0.4'),(2147,508,'_elementor_edit_mode','builder'),(2166,512,'_wp_page_template','default'),(2167,512,'_elementor_template_type','post'),(2149,509,'_wp_page_template','default'),(2150,509,'_elementor_template_type','post'),(2151,509,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#2c871c\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/bbm.png\",\"id\":504}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"text_color\":\"#7a7a7a\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a16c354\",\"elType\":\"widget\",\"settings\":{\"title\":\"If you have any questions, please contact us.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7737759\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"69bcd84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3c023a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"background_color\":\"#3ea322\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2152,509,'_elementor_version','0.4'),(2153,509,'_elementor_edit_mode','builder'),(2157,510,'_wp_page_template','default'),(2158,510,'_elementor_edit_mode','builder'),(2159,510,'_elementor_data','[{\"id\":\"1d02beeb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/b16.jpg\",\"id\":382}},\"elements\":[{\"id\":\"5068b065\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13a059d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25b3bf11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Acupuncture\\u00a0 \\u00a0 \\u00a0 Herbal\\u00a0 \\u00a0 \\u00a0 Massage\\u00a0 \\u00a0 \\u00a0 Qigong<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"34\",\"bottom\":\"34\",\"left\":\"34\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a945cdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e62b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5246e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture\",\"title_color\":\"#000000\",\"header_size\":\"h1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1482aef\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0e7e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c051a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/ac7.jpg\",\"id\":137}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e0ffa16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15744fe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/Acupuncture500-1.jpg\",\"id\":143}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72a9504\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b39eba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/acupuncture_500-e1522635045797.jpg\",\"id\":144}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c0f0005\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"753c81b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5740abf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.<\\/p><h3>Acupuncture can be used to treat all types of health issues:<\\/h3><p>Addictions<br \\/> Allergies<br \\/> Cosmetic procedures (such as acupuncture for face lifting)<br \\/> Degenerative diseases due to aging<br \\/> Depression<br \\/> Men\\u2019s Health<br \\/> Pain Management<br \\/> Stroke Rehabilitation<br \\/> Weight Loss and Management<br \\/> Women\\u2019s Health (PMS, Menopause, Low libido, Infertility, etc.)<\\/p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.<\\/p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.<\\/p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec0d743\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8d51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"93a445e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Herbal Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38708fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b63b587\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5dd77b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17814.jpg\",\"id\":145}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2abd357\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c23e197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/jt-ai-020223846.jpg\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"302e538\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c678bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17815.jpg\",\"id\":146}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"65f85cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"19ec65f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17845.jpg\",\"id\":147}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a441ce4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"c027e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8075edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.<\\/p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.<\\/p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617123300\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an herbal consultation today!<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1050842\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"312fd40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b26e839\",\"elType\":\"widget\",\"settings\":{\"title\":\"Massage\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c22f36b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2d5a971\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f4ebd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nmm.jpg\",\"id\":151}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1d5f1ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ea50966\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nm.jpg\",\"id\":149}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f3901a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8f9a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nl.jpg\",\"id\":150}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22995b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"e5aa6a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9419cff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>O<\\/strong><strong>riental Bodywork<\\/strong><\\/p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:<\\/p><p>Reduced stress and anxiety<br \\/> Relief from muscle tension and joint stiffness<br \\/> Increased blood circulation<br \\/> Reduced heart rate<br \\/> Induces relaxation<br \\/> Reduces back pain<br \\/> Relieves depression and insomnia<br \\/> Relieves Myofascial and Fibromyalgia pain<br \\/> Releives headaches\\/migraines<\\/p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.<\\/p><p>For more information about our massage therapists on staff, click <a title=\\\"Our Staff\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=46\\\">HERE<\\/a>.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment with one of our massage therapists.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d5284f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54a0c3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1bf07a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Qigong\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f518dd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d37e106\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"569f061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/taiji.jpg\",\"id\":152}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"91a2607\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"794de3c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/th.jpg\",\"id\":154}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e58b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"8e03323\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57bb45a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"contents\\\" class=\\\"clearfix\\\"><div id=\\\"maincol\\\"><div class=\\\"post\\\">\\u00a0<\\/div><\\/div><\\/div><div><p>Qigong (pronounced Chee Kung)\\u00a0is a method that combines body movement, breath exercise and mental concentration to exercise the body\\u2019s vital energy, or \\u201cQi\\u201d. In China, Qigong is widely accepted for it\\u2019s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.<\\/p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body\\u2019s immune ability, postpone the aging process and develop the body\\u2019s potential.<\\/p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:<\\/p><p>Anemia<br \\/> Anxiety\\/Depression<br \\/> Arthritis<br \\/> Asthma<br \\/> Back Pain<br \\/> Bone Density<br \\/> Body Strength\\/Flexibility<br \\/> Concentration\\/Memory<br \\/> Hearing or Vision Impairment<br \\/> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br \\/> Immune Cell Activity\\/Dysfunction<br \\/> Kidney Deficiencies<br \\/> Mental Health<br \\/> Overall Health and Well Being<br \\/> Sexual Dysfunction<br \\/> Tinnitus<br \\/> Weight Management<\\/p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner\\u2019s supervision. The second approach, External Qi\\u00a0healing, is a process whereby the Qigong practitioner\\u2019s energy is used to stimulate and balance the patient\\u2019s Qi\\u00a0so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.<\\/p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160503111017\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment for a Qigong consultation.<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f82c1f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f1ada06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2160,510,'_elementor_version','0.4'),(2161,510,'_elementor_template_type','post'),(2200,521,'_elementor_version','0.4'),(2201,521,'_elementor_edit_mode','builder'),(2168,512,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"text_color\":\"#7a7a7a\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a16c354\",\"elType\":\"widget\",\"settings\":{\"title\":\"If you have any questions, please contact us.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7737759\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"69bcd84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3c023a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"background_color\":\"#3ea322\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2169,512,'_elementor_version','0.4'),(2170,512,'_elementor_edit_mode','builder'),(2174,514,'_wp_page_template','default'),(2175,514,'_elementor_template_type','post'),(2176,514,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/3357a0a44971e94-1.jpg\",\"id\":513}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"text_color\":\"#7a7a7a\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a16c354\",\"elType\":\"widget\",\"settings\":{\"title\":\"If you have any questions, please contact us.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7737759\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"69bcd84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3c023a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"background_color\":\"#3ea322\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2177,514,'_elementor_version','0.4'),(2178,514,'_elementor_edit_mode','builder'),(2199,521,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/1.jpg\",\"id\":520}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"text_color\":\"#7a7a7a\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a16c354\",\"elType\":\"widget\",\"settings\":{\"title\":\"If you have any questions, please contact us.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7737759\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"69bcd84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3c023a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"background_color\":\"#3ea322\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2197,521,'_wp_page_template','default'),(2198,521,'_elementor_template_type','post'),(2227,529,'_wp_attached_file','2018/04/2.png'),(2228,529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1416;s:6:\"height\";i:391;s:4:\"file\";s:13:\"2018/04/2.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:12:\"2-300x83.png\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"2-768x212.png\";s:5:\"width\";i:768;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"2-1024x283.png\";s:5:\"width\";i:1024;s:6:\"height\";i:283;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:{}}}'),(2234,531,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/jg1.jpg\",\"id\":530}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Times New Roman\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"text_color\":\"#7a7a7a\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a16c354\",\"elType\":\"widget\",\"settings\":{\"title\":\"If you have any questions, please contact us.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7737759\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"69bcd84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3c023a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"background_color\":\"#3ea322\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2232,531,'_wp_page_template','default'),(2233,531,'_elementor_template_type','post'),(2258,538,'_wp_attached_file','2018/04/4.png'),(2259,538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:918;s:6:\"height\";i:287;s:4:\"file\";s:13:\"2018/04/4.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:12:\"4-300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"4-768x240.png\";s:5:\"width\";i:768;s:6:\"height\";i:240;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:{}}}'),(2261,539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:863;s:6:\"height\";i:228;s:4:\"file\";s:15:\"2018/04/4-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"4-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"4-1-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"4-1-768x203.png\";s:5:\"width\";i:768;s:6:\"height\";i:203;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:{}}}'),(2266,540,'_elementor_version','0.4'),(2260,539,'_wp_attached_file','2018/04/4-1.png'),(2262,540,'_wp_page_template','default'),(2269,541,'_elementor_template_type','post'),(2270,541,'_elementor_data','[{\"id\":\"1f2cde97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/4.png\",\"id\":538},\"background_position\":\"bottom right\"},\"elements\":[{\"id\":\"e6ca9ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"105ded37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Arial\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f61811\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-718e069e elementor-widget elementor-widget-heading\\\" data-id=\\\"718e069e\\\" data-element_type=\\\"heading.default\\\"><h4 class=\\\"elementor-widget-container\\\">Need an expert?<\\/h4><h4 class=\\\"elementor-widget-container\\\">You are more than welcomed to leave your contact info<\\/h4><h4 class=\\\"elementor-widget-container\\\">and we will be in touch shortly<\\/h4><\\/div>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":2},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.2}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"9\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\",\"background_background\":\"classic\",\"background_color\":\"#f4f4f4\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Contact Us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#454545\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#23a455\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":\"13\"},\"text_color\":\"#636363\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ad0d881\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"177\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2271,541,'_elementor_version','0.4'),(2305,552,'_elementor_version','0.4'),(2306,552,'_elementor_edit_mode','builder'),(2304,552,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/6-1.jpg\",\"id\":551}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>&nbsp;May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"text_color\":\"#7a7a7a\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a16c354\",\"elType\":\"widget\",\"settings\":{\"title\":\"If you have any questions, please contact us.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7737759\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"69bcd84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3c023a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"background_color\":\"#3ea322\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2302,552,'_wp_page_template','default'),(2303,552,'_elementor_template_type','post'),(2307,553,'_wp_page_template','default'),(2308,553,'_elementor_template_type','post'),(2309,553,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/6-1.jpg\",\"id\":551}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>&nbsp;May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"text_color\":\"#7a7a7a\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a16c354\",\"elType\":\"widget\",\"settings\":{\"title\":\"If you have any questions, please contact us.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7737759\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"69bcd84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3c023a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"background_color\":\"#3ea322\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2310,553,'_elementor_version','0.4'),(2311,553,'_elementor_edit_mode','builder'),(2325,556,'_wp_page_template','default'),(2326,556,'_elementor_edit_mode','builder'),(2327,556,'_elementor_template_type','post'),(2324,555,'_elementor_version','0.4'),(2323,555,'_elementor_data','[{\"id\":\"1f2cde97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/4.png\",\"id\":538},\"background_position\":\"bottom right\"},\"elements\":[{\"id\":\"e6ca9ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"105ded37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Arial\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f61811\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-718e069e elementor-widget elementor-widget-heading\\\" data-id=\\\"718e069e\\\" data-element_type=\\\"heading.default\\\"><h4 class=\\\"elementor-widget-container\\\">Need an expert?<\\/h4><h4 class=\\\"elementor-widget-container\\\">You are more than welcomed to leave your contact info<\\/h4><h4 class=\\\"elementor-widget-container\\\">and we will be in touch shortly<\\/h4><\\/div>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":2},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.2}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"9\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"color_text\":\"#000000\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Contact Us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#0a0a0a\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#23a455\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ad0d881\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"177\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2322,555,'_elementor_template_type','post'),(2320,555,'_wp_page_template','default'),(2321,555,'_elementor_edit_mode','builder'),(2328,556,'_elementor_data','[{\"id\":\"1f2cde97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/4.png\",\"id\":538},\"background_position\":\"top right\"},\"elements\":[{\"id\":\"e6ca9ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"105ded37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Arial\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f61811\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-718e069e elementor-widget elementor-widget-heading\\\" data-id=\\\"718e069e\\\" data-element_type=\\\"heading.default\\\"><h4 class=\\\"elementor-widget-container\\\">Need an expert?<\\/h4><h4 class=\\\"elementor-widget-container\\\">You are more than welcomed to leave your contact info<\\/h4><h4 class=\\\"elementor-widget-container\\\">and we will be in touch shortly<\\/h4><\\/div>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":2},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.2}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"9\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"color_text\":\"#000000\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Contact Us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#0a0a0a\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#23a455\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ad0d881\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"177\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2329,556,'_elementor_version','0.4'),(2333,558,'_wp_page_template','default'),(2334,558,'_elementor_edit_mode','builder'),(2335,558,'_elementor_data','[{\"id\":\"1d02beeb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/8.jpg\",\"id\":557}},\"elements\":[{\"id\":\"5068b065\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13a059d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25b3bf11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Acupuncture\\u00a0 \\u00a0 \\u00a0 Herbal\\u00a0 \\u00a0 \\u00a0 Massage\\u00a0 \\u00a0 \\u00a0 Qigong<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"34\",\"bottom\":\"34\",\"left\":\"34\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a945cdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e62b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5246e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture\",\"title_color\":\"#000000\",\"header_size\":\"h1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1482aef\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0e7e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c051a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/ac7.jpg\",\"id\":137}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e0ffa16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15744fe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/Acupuncture500-1.jpg\",\"id\":143}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72a9504\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b39eba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/acupuncture_500-e1522635045797.jpg\",\"id\":144}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c0f0005\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"753c81b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5740abf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.<\\/p><h3>Acupuncture can be used to treat all types of health issues:<\\/h3><p>Addictions<br \\/> Allergies<br \\/> Cosmetic procedures (such as acupuncture for face lifting)<br \\/> Degenerative diseases due to aging<br \\/> Depression<br \\/> Men\\u2019s Health<br \\/> Pain Management<br \\/> Stroke Rehabilitation<br \\/> Weight Loss and Management<br \\/> Women\\u2019s Health (PMS, Menopause, Low libido, Infertility, etc.)<\\/p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.<\\/p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.<\\/p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec0d743\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8d51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"93a445e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Herbal Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38708fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b63b587\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5dd77b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17814.jpg\",\"id\":145}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2abd357\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c23e197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/jt-ai-020223846.jpg\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"302e538\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c678bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17815.jpg\",\"id\":146}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"65f85cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"19ec65f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17845.jpg\",\"id\":147}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a441ce4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"c027e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8075edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.<\\/p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.<\\/p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617123300\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an herbal consultation today!<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1050842\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"312fd40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b26e839\",\"elType\":\"widget\",\"settings\":{\"title\":\"Massage\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c22f36b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2d5a971\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f4ebd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nmm.jpg\",\"id\":151}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1d5f1ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ea50966\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nm.jpg\",\"id\":149}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f3901a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8f9a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nl.jpg\",\"id\":150}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22995b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"e5aa6a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9419cff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>O<\\/strong><strong>riental Bodywork<\\/strong><\\/p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:<\\/p><p>Reduced stress and anxiety<br \\/> Relief from muscle tension and joint stiffness<br \\/> Increased blood circulation<br \\/> Reduced heart rate<br \\/> Induces relaxation<br \\/> Reduces back pain<br \\/> Relieves depression and insomnia<br \\/> Relieves Myofascial and Fibromyalgia pain<br \\/> Releives headaches\\/migraines<\\/p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.<\\/p><p>For more information about our massage therapists on staff, click <a title=\\\"Our Staff\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=46\\\">HERE<\\/a>.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment with one of our massage therapists.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d5284f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54a0c3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1bf07a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Qigong\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f518dd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d37e106\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"569f061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/taiji.jpg\",\"id\":152}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"91a2607\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"794de3c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/th.jpg\",\"id\":154}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e58b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"8e03323\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57bb45a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"contents\\\" class=\\\"clearfix\\\"><div id=\\\"maincol\\\"><div class=\\\"post\\\">\\u00a0<\\/div><\\/div><\\/div><div><p>Qigong (pronounced Chee Kung)\\u00a0is a method that combines body movement, breath exercise and mental concentration to exercise the body\\u2019s vital energy, or \\u201cQi\\u201d. In China, Qigong is widely accepted for it\\u2019s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.<\\/p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body\\u2019s immune ability, postpone the aging process and develop the body\\u2019s potential.<\\/p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:<\\/p><p>Anemia<br \\/> Anxiety\\/Depression<br \\/> Arthritis<br \\/> Asthma<br \\/> Back Pain<br \\/> Bone Density<br \\/> Body Strength\\/Flexibility<br \\/> Concentration\\/Memory<br \\/> Hearing or Vision Impairment<br \\/> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br \\/> Immune Cell Activity\\/Dysfunction<br \\/> Kidney Deficiencies<br \\/> Mental Health<br \\/> Overall Health and Well Being<br \\/> Sexual Dysfunction<br \\/> Tinnitus<br \\/> Weight Management<\\/p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner\\u2019s supervision. The second approach, External Qi\\u00a0healing, is a process whereby the Qigong practitioner\\u2019s energy is used to stimulate and balance the patient\\u2019s Qi\\u00a0so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.<\\/p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160503111017\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment for a Qigong consultation.<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f82c1f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f1ada06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2336,558,'_elementor_version','0.4'),(2337,558,'_elementor_template_type','post'),(2416,581,'_wp_page_template','default'),(2341,560,'_wp_page_template','default'),(2342,560,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/9-1.jpg\",\"id\":559}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#3d3d3d\",\"size\":\"large\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0\\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"right\",\"text_color\":\"#191919\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_weight\":\"600\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":356,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao-1.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":444,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0238.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist\\u00a0\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.<\\/p><p>She strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.<\\/p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1dd45c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"81b7eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eaf6e0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\"><span style=\\\"text-decoration: underline;\\\"><strong>contact us<\\/strong><\\/span><\\/a>.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"_background_background\":\"classic\",\"_background_color\":\"#eaeaea\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2343,560,'_elementor_version','0.4'),(2344,560,'_elementor_template_type','post'),(2345,560,'_elementor_edit_mode','builder'),(2351,562,'_wp_attached_file','2018/04/10.jpg'),(2352,562,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1109;s:6:\"height\";i:323;s:4:\"file\";s:14:\"2018/04/10.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"10-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:13:\"10-300x87.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"10-768x224.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"10-1024x298.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:298;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(2353,563,'_wp_page_template','default'),(2354,563,'_elementor_edit_mode','builder'),(2355,563,'_elementor_template_type','post'),(2356,563,'_elementor_data','[{\"id\":\"4032e44e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/10.jpg\",\"id\":562}},\"elements\":[{\"id\":\"353cd307\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c01f006\",\"elType\":\"widget\",\"settings\":{\"title\":\"    Knowledge Base   \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_weight\":\"600\",\"_background_background\":\"classic\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c644254\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Knowledge is the power<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"typography_font_family\":\"Arial\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40d922d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4df6137\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a5d9b95\",\"elType\":\"widget\",\"settings\":{\"title\":\"What\\u2019s being treated?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8232c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8c5312e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48e1091\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/treatment.jpg\",\"id\":158}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0565030\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1c7f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"13dc2d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da6e27d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"2ac14d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bc5763d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world\\u2019s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.<\\/p><p>Q. Isn\\u2019t Traditional Chinese Medicine just a system of folk healing?<\\/p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.<\\/p><p><br \\/>Q. How does Traditional Chinese Medicine work?<\\/p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body\\u2019s healthy or righteous energy and attacking any unhealthy or negative energy. <\\/p><p>Q. How does a TCM practitioner determine what is out of balance?<\\/p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient\\u2019s face, body, and especially their tongue and its coating. The third is listening to the patient\\u2019s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.<\\/p><p><br \\/>Q. How is this rebalancing accomplished?<\\/p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture\\/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.<\\/p><p><br \\/>Q. Is Traditional Chinese Medicine safe?<\\/p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ac19ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"793d218\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e963fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a9ab31\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"ca4a9fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a6d187\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There is a plethora of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.<\\/p><p><a title=\\\"Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=303\\\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/a><\\/p><p><a title=\\\"Post-Stroke Rehabilitation\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=291\\\">Post-Stroke Rehabilitation<\\/a><\\/p><p><a title=\\\"Stroke Rehabilitation and Traditional Chinese Medicine\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=294\\\">Stroke Rehabilitation and Traditional Chinese Medicine<\\/a><\\/p><p><a title=\\\"TCM and Heart Diseases\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=297\\\">TCM and Heart Diseases<\\/a><\\/p><p><a title=\\\"Traditional Chinese Medicine and Infertility\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=289\\\">Traditional Chinese Medicine and Infertility<\\/a><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2357,563,'_elementor_version','0.4'),(2370,568,'_wp_attached_file','2018/04/0.png'),(2371,568,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1123;s:6:\"height\";i:299;s:4:\"file\";s:13:\"2018/04/0.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"0-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:12:\"0-300x80.png\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"0-768x204.png\";s:5:\"width\";i:768;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"0-1024x273.png\";s:5:\"width\";i:1024;s:6:\"height\";i:273;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:{}}}'),(2373,569,'_elementor_edit_mode','builder'),(2374,569,'_elementor_template_type','post'),(2375,569,'_elementor_data','[{\"id\":\"4032e44e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/0.png\",\"id\":568}},\"elements\":[{\"id\":\"353cd307\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c01f006\",\"elType\":\"widget\",\"settings\":{\"title\":\"    Knowledge Base   \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"title_color\":\"#000000\",\"typography_font_weight\":\"600\",\"_background_background\":\"classic\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c644254\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Knowledge is the power<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"typography_font_family\":\"Arial\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40d922d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4df6137\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a5d9b95\",\"elType\":\"widget\",\"settings\":{\"title\":\"What\\u2019s being treated?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8232c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8c5312e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48e1091\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/treatment.jpg\",\"id\":158}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0565030\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1c7f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"13dc2d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da6e27d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"2ac14d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bc5763d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world\\u2019s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.<\\/p><p>Q. Isn\\u2019t Traditional Chinese Medicine just a system of folk healing?<\\/p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.<\\/p><p><br \\/>Q. How does Traditional Chinese Medicine work?<\\/p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body\\u2019s healthy or righteous energy and attacking any unhealthy or negative energy. <\\/p><p>Q. How does a TCM practitioner determine what is out of balance?<\\/p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient\\u2019s face, body, and especially their tongue and its coating. The third is listening to the patient\\u2019s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.<\\/p><p><br \\/>Q. How is this rebalancing accomplished?<\\/p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture\\/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.<\\/p><p><br \\/>Q. Is Traditional Chinese Medicine safe?<\\/p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ac19ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"793d218\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e963fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a9ab31\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"ca4a9fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a6d187\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There is a plethora of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.<\\/p><p><a title=\\\"Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=303\\\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/a><\\/p><p><a title=\\\"Post-Stroke Rehabilitation\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=291\\\">Post-Stroke Rehabilitation<\\/a><\\/p><p><a title=\\\"Stroke Rehabilitation and Traditional Chinese Medicine\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=294\\\">Stroke Rehabilitation and Traditional Chinese Medicine<\\/a><\\/p><p><a title=\\\"TCM and Heart Diseases\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=297\\\">TCM and Heart Diseases<\\/a><\\/p><p><a title=\\\"Traditional Chinese Medicine and Infertility\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=289\\\">Traditional Chinese Medicine and Infertility<\\/a><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2372,569,'_wp_page_template','default'),(2376,569,'_elementor_version','0.4'),(2380,571,'_wp_attached_file','2018/04/01.png'),(2381,571,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:970;s:6:\"height\";i:444;s:4:\"file\";s:14:\"2018/04/01.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"01-300x137.png\";s:5:\"width\";i:300;s:6:\"height\";i:137;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"01-768x352.png\";s:5:\"width\";i:768;s:6:\"height\";i:352;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:{}}}'),(2382,572,'_wp_attached_file','2018/04/011.png'),(2383,572,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:776;s:6:\"height\";i:356;s:4:\"file\";s:15:\"2018/04/011.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"011-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"011-300x138.png\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"011-768x352.png\";s:5:\"width\";i:768;s:6:\"height\";i:352;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:{}}}'),(2542,608,'_wp_page_template','default'),(2384,573,'_wp_page_template','default'),(2385,573,'_elementor_template_type','post'),(2386,573,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/011.png\",\"id\":572}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>&nbsp;May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"text_color\":\"#7a7a7a\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a16c354\",\"elType\":\"widget\",\"settings\":{\"title\":\"If you have any questions, please contact us.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7737759\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"69bcd84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3c023a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"background_color\":\"#3ea322\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2387,573,'_elementor_version','0.4'),(2388,573,'_elementor_edit_mode','builder'),(2417,581,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/9.5.jpg\",\"id\":580}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#3d3d3d\",\"size\":\"large\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0\\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"right\",\"text_color\":\"#191919\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_weight\":\"600\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":356,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao-1.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":444,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0238.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist\\u00a0\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.<\\/p><p>She strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.<\\/p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1dd45c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"81b7eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eaf6e0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\"><span style=\\\"text-decoration: underline;\\\"><strong>contact us<\\/strong><\\/span><\\/a>.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"_background_background\":\"classic\",\"_background_color\":\"#eaeaea\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2414,580,'_wp_attached_file','2018/04/9.5.jpg'),(2415,580,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1207;s:6:\"height\";i:300;s:4:\"file\";s:15:\"2018/04/9.5.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"9.5-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:14:\"9.5-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"9.5-768x191.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"9.5-1024x255.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:255;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(2410,579,'_elementor_version','0.4'),(2411,579,'_elementor_template_type','post'),(2412,579,'_elementor_edit_mode','builder'),(2408,579,'_wp_page_template','default'),(2409,579,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/9.3.jpg\",\"id\":578}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#3d3d3d\",\"size\":\"large\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0\\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"right\",\"text_color\":\"#191919\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_weight\":\"600\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":356,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao-1.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":444,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0238.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist\\u00a0\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.<\\/p><p>She strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.<\\/p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1dd45c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"81b7eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eaf6e0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\"><span style=\\\"text-decoration: underline;\\\"><strong>contact us<\\/strong><\\/span><\\/a>.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"_background_background\":\"classic\",\"_background_color\":\"#eaeaea\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2418,581,'_elementor_version','0.4'),(2419,581,'_elementor_template_type','post'),(2420,581,'_elementor_edit_mode','builder'),(2437,585,'_elementor_version','0.4'),(2436,585,'_elementor_data','[{\"id\":\"1f2cde97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/1.3.jpg\",\"id\":584},\"background_position\":\"top right\"},\"elements\":[{\"id\":\"e6ca9ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"105ded37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Arial\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f61811\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-718e069e elementor-widget elementor-widget-heading\\\" data-id=\\\"718e069e\\\" data-element_type=\\\"heading.default\\\"><h4 class=\\\"elementor-widget-container\\\">Need an expert?<\\/h4><h4 class=\\\"elementor-widget-container\\\">You are more than welcomed to leave your contact info<\\/h4><h4 class=\\\"elementor-widget-container\\\">and we will be in touch shortly<\\/h4><\\/div>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":2},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.2}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"9\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"color_text\":\"#000000\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Contact Us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#0a0a0a\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#23a455\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ad0d881\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"177\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2433,585,'_wp_page_template','default'),(2434,585,'_elementor_edit_mode','builder'),(2435,585,'_elementor_template_type','post'),(2439,586,'_wp_attached_file','2018/04/2.3.png'),(2440,586,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1156;s:6:\"height\";i:368;s:4:\"file\";s:15:\"2018/04/2.3.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"2.3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"2.3-300x96.png\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"2.3-768x244.png\";s:5:\"width\";i:768;s:6:\"height\";i:244;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"2.3-1024x326.png\";s:5:\"width\";i:1024;s:6:\"height\";i:326;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:{}}}'),(2534,607,'_elementor_version','0.4'),(2533,607,'_elementor_data','[{\"id\":\"4032e44e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/3.png\",\"id\":606}},\"elements\":[{\"id\":\"353cd307\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c01f006\",\"elType\":\"widget\",\"settings\":{\"title\":\"    Knowledge Base   \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.8},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_font_weight\":\"600\",\"_background_background\":\"classic\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c644254\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Knowledge is the power<\\/p>\",\"align\":\"center\",\"text_color\":\"#f9f9f9\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24},\"typography_font_family\":\"Arial\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40d922d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4df6137\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a5d9b95\",\"elType\":\"widget\",\"settings\":{\"title\":\"What\\u2019s being treated?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8232c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\"},\"elements\":[{\"id\":\"8c5312e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48e1091\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/treatment.jpg\",\"id\":158}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0565030\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1c7f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"13dc2d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Q & A on Traditional Chinese Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da6e27d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"2ac14d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bc5763d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world\\u2019s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.<\\/p><p>Q. Isn\\u2019t Traditional Chinese Medicine just a system of folk healing?<\\/p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.<\\/p><p><br \\/>Q. How does Traditional Chinese Medicine work?<\\/p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body\\u2019s healthy or righteous energy and attacking any unhealthy or negative energy. <\\/p><p>Q. How does a TCM practitioner determine what is out of balance?<\\/p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient\\u2019s face, body, and especially their tongue and its coating. The third is listening to the patient\\u2019s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.<\\/p><p><br \\/>Q. How is this rebalancing accomplished?<\\/p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture\\/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.<\\/p><p><br \\/>Q. Is Traditional Chinese Medicine safe?<\\/p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ac19ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"793d218\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e963fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a9ab31\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"ca4a9fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a6d187\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There is a plethora of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.<\\/p><p><a title=\\\"Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=303\\\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/a><\\/p><p><a title=\\\"Post-Stroke Rehabilitation\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=291\\\">Post-Stroke Rehabilitation<\\/a><\\/p><p><a title=\\\"Stroke Rehabilitation and Traditional Chinese Medicine\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=294\\\">Stroke Rehabilitation and Traditional Chinese Medicine<\\/a><\\/p><p><a title=\\\"TCM and Heart Diseases\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=297\\\">TCM and Heart Diseases<\\/a><\\/p><p><a title=\\\"Traditional Chinese Medicine and Infertility\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20161022194812\\/http:\\/\\/evergreenwellness.com\\/?page_id=289\\\">Traditional Chinese Medicine and Infertility<\\/a><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2532,607,'_elementor_template_type','post'),(2530,607,'_wp_page_template','default'),(2531,607,'_elementor_edit_mode','builder'),(2448,588,'_wp_attached_file','2018/04/green.png'),(2449,588,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1388;s:6:\"height\";i:1296;s:4:\"file\";s:17:\"2018/04/green.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"green-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"green-300x280.png\";s:5:\"width\";i:300;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"green-768x717.png\";s:5:\"width\";i:768;s:6:\"height\";i:717;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"green-1024x956.png\";s:5:\"width\";i:1024;s:6:\"height\";i:956;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:{}}}'),(2550,611,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/9.5.jpg\",\"id\":580}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#3d3d3d\",\"size\":\"large\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0\\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"right\",\"text_color\":\"#191919\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_weight\":\"600\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":356,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao-1.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Kansas. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":444,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0238.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist\\u00a0\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.<\\/p><p>She strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.<\\/p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1dd45c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"81b7eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eaf6e0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\"><span style=\\\"text-decoration: underline;\\\"><strong>contact us<\\/strong><\\/span><\\/a>.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"_background_background\":\"classic\",\"_background_color\":\"#eaeaea\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2549,611,'_wp_page_template','default'),(2452,590,'_wp_page_template','default'),(2453,590,'_elementor_template_type','post'),(2454,590,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/011.png\",\"id\":572}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>&nbsp;May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"text_color\":\"#7a7a7a\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a16c354\",\"elType\":\"widget\",\"settings\":{\"title\":\"If you have any questions, please contact us.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7737759\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"69bcd84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3c023a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"background_color\":\"#1a8207\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2455,590,'_elementor_version','0.4'),(2456,590,'_elementor_edit_mode','builder'),(2459,591,'_wp_page_template','default'),(2460,591,'_elementor_edit_mode','builder'),(2461,591,'_elementor_template_type','post'),(2462,591,'_elementor_data','[{\"id\":\"1f2cde97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/1.3.jpg\",\"id\":584},\"background_position\":\"top right\"},\"elements\":[{\"id\":\"e6ca9ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"105ded37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Arial\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f61811\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-718e069e elementor-widget elementor-widget-heading\\\" data-id=\\\"718e069e\\\" data-element_type=\\\"heading.default\\\"><h4 class=\\\"elementor-widget-container\\\">Need an expert?<\\/h4><h4 class=\\\"elementor-widget-container\\\">You are more than welcomed to leave your contact info<\\/h4><h4 class=\\\"elementor-widget-container\\\">and we will be in touch shortly<\\/h4><\\/div>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":2},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.2}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"9\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"color_text\":\"#000000\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Contact Us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#0a0a0a\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#23a455\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ad0d881\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"177\\\" title=\\\"Contact form 1\\\"]\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(59,124,26,0.5)\"}},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2463,591,'_elementor_version','0.4'),(2544,608,'_elementor_data','[{\"id\":\"68b876d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/1a.jpg\",\"id\":604}},\"elements\":[{\"id\":\"741470aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74863335\",\"elType\":\"widget\",\"settings\":{\"title\":\"Evergreen Wellness Center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Times New Roman\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4791c4a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>&nbsp;May you have a good health and longevity ... like the evergreen<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_weight\":\"400\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2409fba\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1025},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"58b016a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"810930e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong><span style=\\\"color: black; font-family: \'&amp;quot\', serif; font-size: 10.5pt;\\\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/span><\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11},\"text_color\":\"#7a7a7a\",\"align\":\"justify\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":3}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7d2136\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4f35d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e66a3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story of one of our stroke rehabilitation patient\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86d46d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"4cfe924\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.114},\"elements\":[{\"id\":\"4f6d057\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"abd6976\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":54.908},\"elements\":[{\"id\":\"3e6f11a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing.\\u00a0<span style=\\\"font-size: 14px;\\\">Eventually, the doctors gave up and told my husband they didn\\u2019t think I would live.\\u00a0 I had one health crisis after another.\\u00a0<\\/span><span style=\\\"font-size: 14px;\\\">Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims. \\u00a0He immediately called a doctor- Dr. Gao trained in TCM to examine me.\\u00a0<br \\/><\\/span><span style=\\\"font-size: 14px;\\\">Now the good news ... ...<\\/span><span style=\\\"font-size: 14px;\\\">Within two weeks\\u2026<\\/span><strong style=\\\"font-size: 14px;\\\">only<\\/strong> <strong style=\\\"font-size: 14px;\\\">two short weeks<\\/strong><span style=\\\"font-size: 14px;\\\">, after starting treatments I began to speak.\\u00a0 \\u00a0First it was words, then phrases and then sentences.\\u00a0 I had been locked up inside myself for two months. It was absolutely amazing!\\u00a0 Click on the video for the whole story.<\\/span><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff5469\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b0d808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f2521b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management -- Breathing yourself thin\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a1ec4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"rgba(247,247,247,0.43)\"},\"elements\":[{\"id\":\"2a95a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":49.589},\"elements\":[{\"id\":\"ec7865d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You\\u2019ve spent hours exercising. You\\u2019ve denied cravings with dieting. No matter what you\\u2019ve tried, there are some extra pounds you just can\\u2019t seem to shed. But have you tried\\u2026breathing?<\\/p><p>KAKE TV introduces you to an ancient Chinese method that doesn\\u2019t take a lot of time and is really working for real Kansans.Best of all, there\\u2019s no special diet or exercise!<\\/p><p>Chi Gong \\u2013 Breathing Yourself Thin. Click <a href=\\\"http:\\/\\/ibreathin.com\\\"><span style=\\\"color: #0000ff;\\\">Here<\\/span><\\/a> for more detail about online class.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6542753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.433},\"elements\":[{\"id\":\"9c5e798\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb68936\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffc97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a16c354\",\"elType\":\"widget\",\"settings\":{\"title\":\"If you have any questions, please contact us.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7737759\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"69bcd84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3c023a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"background_color\":\"#1a8207\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2475,594,'_wp_attached_file','2018/04/2-1.png'),(2476,594,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1154;s:6:\"height\";i:295;s:4:\"file\";s:15:\"2018/04/2-1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"2-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"2-1-300x77.png\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"2-1-768x196.png\";s:5:\"width\";i:768;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"2-1-1024x262.png\";s:5:\"width\";i:1024;s:6:\"height\";i:262;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:{}}}'),(2468,593,'_wp_page_template','default'),(2469,593,'_elementor_edit_mode','builder'),(2470,593,'_elementor_template_type','post'),(2471,593,'_elementor_data','[{\"id\":\"1f2cde97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/1.png\",\"id\":592},\"background_position\":\"top right\"},\"elements\":[{\"id\":\"e6ca9ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"105ded37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Arial\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f61811\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-718e069e elementor-widget elementor-widget-heading\\\" data-id=\\\"718e069e\\\" data-element_type=\\\"heading.default\\\"><h4 class=\\\"elementor-widget-container\\\">Need an expert?<\\/h4><h4 class=\\\"elementor-widget-container\\\">You are more than welcomed to leave your contact info<\\/h4><h4 class=\\\"elementor-widget-container\\\">and we will be in touch shortly<\\/h4><\\/div>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":2},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.2}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"9\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"color_text\":\"#000000\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Contact Us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#0a0a0a\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#23a455\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ad0d881\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"177\\\" title=\\\"Contact form 1\\\"]\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(59,124,26,0.5)\"}},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2472,593,'_elementor_version','0.4'),(2543,608,'_elementor_template_type','post'),(2477,595,'_wp_page_template','default'),(2478,595,'_elementor_edit_mode','builder'),(2479,595,'_elementor_template_type','post'),(2480,595,'_elementor_data','[{\"id\":\"1f2cde97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/2-1.png\",\"id\":594},\"background_position\":\"top right\"},\"elements\":[{\"id\":\"e6ca9ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"105ded37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#000000\",\"typography_font_family\":\"Arial\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(255,255,255,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f61811\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-718e069e elementor-widget elementor-widget-heading\\\" data-id=\\\"718e069e\\\" data-element_type=\\\"heading.default\\\"><h4 class=\\\"elementor-widget-container\\\">Need an expert?<\\/h4><h4 class=\\\"elementor-widget-container\\\">You are more than welcomed to leave your contact info<\\/h4><h4 class=\\\"elementor-widget-container\\\">and we will be in touch shortly<\\/h4><\\/div>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":2},\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.2}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a6fae\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"9\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"heading_visibility\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"color_text\":\"#000000\"},\"elements\":[{\"id\":\"450833bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"74a6ed8f\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Contact Us\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#0a0a0a\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"24\"},\"typography_font_family\":\"Georgia\",\"typography_font_weight\":\"bold\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743ec462\",\"elType\":\"widget\",\"settings\":{\"section_icon\":\"\",\"icon_list\":[{\"text\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\",\"icon\":\"fa fa-home\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"8e48838\"},{\"text\":\"(316) 691-8811\",\"icon\":\"fa fa-phone-square\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"4149d66\"},{\"text\":\"ewc316@gmail.com\",\"icon\":\"fa fa-envelope\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"88b8eac\"}],\"section_icon_style\":\"\",\"icon_color\":\"#23a455\",\"icon_size\":{\"unit\":\"px\",\"size\":\"21\"},\"section_text_style\":\"\",\"text_indent\":{\"unit\":\"px\",\"size\":15},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"icon_typography_font_family\":\"Open Sans\",\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"3\"},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"313e244b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ad0d881\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"177\\\" title=\\\"Contact form 1\\\"]\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(59,124,26,0.5)\"}},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d347e17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"351a955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf130c5\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S Webb Road, Suite 160,\\u00a0Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(2481,595,'_elementor_version','0.4'),(2541,27,'_elementor_css','a:3:{s:4:\"time\";i:1523336174;s:5:\"fonts\";a:3:{i:0;s:5:\"Arial\";i:2;s:7:\"Georgia\";i:3;s:9:\"Open Sans\";}s:6:\"status\";s:4:\"file\";}'),(2505,601,'_elementor_edit_mode','builder'),(2506,601,'_elementor_data','[{\"id\":\"1d02beeb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/1-1.jpg\",\"id\":600}},\"elements\":[{\"id\":\"5068b065\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13a059d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25b3bf11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Acupuncture\\u00a0 \\u00a0 \\u00a0 Herbal\\u00a0 \\u00a0 \\u00a0 Massage\\u00a0 \\u00a0 \\u00a0 Qigong<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"34\",\"bottom\":\"34\",\"left\":\"34\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a945cdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e62b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5246e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture\",\"title_color\":\"#000000\",\"header_size\":\"h1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1482aef\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0e7e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c051a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/ac7.jpg\",\"id\":137}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e0ffa16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15744fe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/Acupuncture500-1.jpg\",\"id\":143}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72a9504\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b39eba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/acupuncture_500-e1522635045797.jpg\",\"id\":144}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c0f0005\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"753c81b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5740abf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.<\\/p><h3>Acupuncture can be used to treat all types of health issues:<\\/h3><p>Addictions<br \\/> Allergies<br \\/> Cosmetic procedures (such as acupuncture for face lifting)<br \\/> Degenerative diseases due to aging<br \\/> Depression<br \\/> Men\\u2019s Health<br \\/> Pain Management<br \\/> Stroke Rehabilitation<br \\/> Weight Loss and Management<br \\/> Women\\u2019s Health (PMS, Menopause, Low libido, Infertility, etc.)<\\/p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.<\\/p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.<\\/p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec0d743\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8d51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"93a445e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Herbal Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38708fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b63b587\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5dd77b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17814.jpg\",\"id\":145}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2abd357\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c23e197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/jt-ai-020223846.jpg\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"302e538\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c678bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17815.jpg\",\"id\":146}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"65f85cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"19ec65f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17845.jpg\",\"id\":147}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a441ce4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"c027e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8075edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.<\\/p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.<\\/p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617123300\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an herbal consultation today!<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1050842\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"312fd40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b26e839\",\"elType\":\"widget\",\"settings\":{\"title\":\"Massage\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c22f36b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2d5a971\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f4ebd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nmm.jpg\",\"id\":151}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1d5f1ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ea50966\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nm.jpg\",\"id\":149}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f3901a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8f9a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nl.jpg\",\"id\":150}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22995b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"e5aa6a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9419cff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>O<\\/strong><strong>riental Bodywork<\\/strong><\\/p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:<\\/p><p>Reduced stress and anxiety<br \\/> Relief from muscle tension and joint stiffness<br \\/> Increased blood circulation<br \\/> Reduced heart rate<br \\/> Induces relaxation<br \\/> Reduces back pain<br \\/> Relieves depression and insomnia<br \\/> Relieves Myofascial and Fibromyalgia pain<br \\/> Releives headaches\\/migraines<\\/p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.<\\/p><p>For more information about our massage therapists on staff, click <a title=\\\"Our Staff\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=46\\\">HERE<\\/a>.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment with one of our massage therapists.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d5284f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54a0c3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1bf07a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Qigong\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f518dd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d37e106\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"569f061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/taiji.jpg\",\"id\":152}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"91a2607\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"794de3c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/th.jpg\",\"id\":154}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e58b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"8e03323\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57bb45a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"contents\\\" class=\\\"clearfix\\\"><div id=\\\"maincol\\\"><div class=\\\"post\\\">\\u00a0<\\/div><\\/div><\\/div><div><p>Qigong (pronounced Chee Kung)\\u00a0is a method that combines body movement, breath exercise and mental concentration to exercise the body\\u2019s vital energy, or \\u201cQi\\u201d. In China, Qigong is widely accepted for it\\u2019s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.<\\/p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body\\u2019s immune ability, postpone the aging process and develop the body\\u2019s potential.<\\/p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:<\\/p><p>Anemia<br \\/> Anxiety\\/Depression<br \\/> Arthritis<br \\/> Asthma<br \\/> Back Pain<br \\/> Bone Density<br \\/> Body Strength\\/Flexibility<br \\/> Concentration\\/Memory<br \\/> Hearing or Vision Impairment<br \\/> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br \\/> Immune Cell Activity\\/Dysfunction<br \\/> Kidney Deficiencies<br \\/> Mental Health<br \\/> Overall Health and Well Being<br \\/> Sexual Dysfunction<br \\/> Tinnitus<br \\/> Weight Management<\\/p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner\\u2019s supervision. The second approach, External Qi\\u00a0healing, is a process whereby the Qigong practitioner\\u2019s energy is used to stimulate and balance the patient\\u2019s Qi\\u00a0so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.<\\/p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160503111017\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment for a Qigong consultation.<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f82c1f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f1ada06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2486,597,'_wp_page_template','default'),(2487,597,'_elementor_edit_mode','builder'),(2488,597,'_elementor_data','[{\"id\":\"1d02beeb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/1.jpg\",\"id\":596}},\"elements\":[{\"id\":\"5068b065\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13a059d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25b3bf11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Acupuncture\\u00a0 \\u00a0 \\u00a0 Herbal\\u00a0 \\u00a0 \\u00a0 Massage\\u00a0 \\u00a0 \\u00a0 Qigong<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"34\",\"bottom\":\"34\",\"left\":\"34\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a945cdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e62b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5246e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture\",\"title_color\":\"#000000\",\"header_size\":\"h1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1482aef\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0e7e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c051a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/ac7.jpg\",\"id\":137}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e0ffa16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15744fe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/Acupuncture500-1.jpg\",\"id\":143}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72a9504\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b39eba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/acupuncture_500-e1522635045797.jpg\",\"id\":144}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c0f0005\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"753c81b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5740abf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.<\\/p><h3>Acupuncture can be used to treat all types of health issues:<\\/h3><p>Addictions<br \\/> Allergies<br \\/> Cosmetic procedures (such as acupuncture for face lifting)<br \\/> Degenerative diseases due to aging<br \\/> Depression<br \\/> Men\\u2019s Health<br \\/> Pain Management<br \\/> Stroke Rehabilitation<br \\/> Weight Loss and Management<br \\/> Women\\u2019s Health (PMS, Menopause, Low libido, Infertility, etc.)<\\/p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.<\\/p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.<\\/p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec0d743\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8d51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"93a445e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Herbal Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38708fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b63b587\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5dd77b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17814.jpg\",\"id\":145}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2abd357\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c23e197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/jt-ai-020223846.jpg\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"302e538\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c678bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17815.jpg\",\"id\":146}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"65f85cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"19ec65f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17845.jpg\",\"id\":147}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a441ce4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"c027e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8075edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.<\\/p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.<\\/p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617123300\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an herbal consultation today!<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1050842\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"312fd40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b26e839\",\"elType\":\"widget\",\"settings\":{\"title\":\"Massage\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c22f36b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2d5a971\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f4ebd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nmm.jpg\",\"id\":151}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1d5f1ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ea50966\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nm.jpg\",\"id\":149}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f3901a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8f9a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nl.jpg\",\"id\":150}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22995b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"e5aa6a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9419cff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>O<\\/strong><strong>riental Bodywork<\\/strong><\\/p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:<\\/p><p>Reduced stress and anxiety<br \\/> Relief from muscle tension and joint stiffness<br \\/> Increased blood circulation<br \\/> Reduced heart rate<br \\/> Induces relaxation<br \\/> Reduces back pain<br \\/> Relieves depression and insomnia<br \\/> Relieves Myofascial and Fibromyalgia pain<br \\/> Releives headaches\\/migraines<\\/p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.<\\/p><p>For more information about our massage therapists on staff, click <a title=\\\"Our Staff\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=46\\\">HERE<\\/a>.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment with one of our massage therapists.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d5284f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54a0c3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1bf07a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Qigong\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f518dd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d37e106\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"569f061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/taiji.jpg\",\"id\":152}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"91a2607\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"794de3c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/th.jpg\",\"id\":154}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e58b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"8e03323\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57bb45a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"contents\\\" class=\\\"clearfix\\\"><div id=\\\"maincol\\\"><div class=\\\"post\\\">\\u00a0<\\/div><\\/div><\\/div><div><p>Qigong (pronounced Chee Kung)\\u00a0is a method that combines body movement, breath exercise and mental concentration to exercise the body\\u2019s vital energy, or \\u201cQi\\u201d. In China, Qigong is widely accepted for it\\u2019s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.<\\/p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body\\u2019s immune ability, postpone the aging process and develop the body\\u2019s potential.<\\/p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:<\\/p><p>Anemia<br \\/> Anxiety\\/Depression<br \\/> Arthritis<br \\/> Asthma<br \\/> Back Pain<br \\/> Bone Density<br \\/> Body Strength\\/Flexibility<br \\/> Concentration\\/Memory<br \\/> Hearing or Vision Impairment<br \\/> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br \\/> Immune Cell Activity\\/Dysfunction<br \\/> Kidney Deficiencies<br \\/> Mental Health<br \\/> Overall Health and Well Being<br \\/> Sexual Dysfunction<br \\/> Tinnitus<br \\/> Weight Management<\\/p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner\\u2019s supervision. The second approach, External Qi\\u00a0healing, is a process whereby the Qigong practitioner\\u2019s energy is used to stimulate and balance the patient\\u2019s Qi\\u00a0so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.<\\/p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160503111017\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment for a Qigong consultation.<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f82c1f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f1ada06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2489,597,'_elementor_version','0.4'),(2490,597,'_elementor_template_type','post'),(2540,25,'_elementor_css','a:3:{s:4:\"time\";i:1523336173;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:6:\"status\";s:4:\"file\";}'),(2504,601,'_wp_page_template','default'),(2495,599,'_wp_page_template','default'),(2496,599,'_elementor_edit_mode','builder'),(2497,599,'_elementor_data','[{\"id\":\"1d02beeb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/1.jpg\",\"id\":598}},\"elements\":[{\"id\":\"5068b065\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13a059d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25b3bf11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Acupuncture\\u00a0 \\u00a0 \\u00a0 Herbal\\u00a0 \\u00a0 \\u00a0 Massage\\u00a0 \\u00a0 \\u00a0 Qigong<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"34\",\"bottom\":\"34\",\"left\":\"34\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a945cdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e62b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5246e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture\",\"title_color\":\"#000000\",\"header_size\":\"h1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1482aef\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0e7e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c051a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/ac7.jpg\",\"id\":137}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e0ffa16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15744fe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/Acupuncture500-1.jpg\",\"id\":143}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72a9504\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b39eba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/acupuncture_500-e1522635045797.jpg\",\"id\":144}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c0f0005\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"753c81b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5740abf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.<\\/p><h3>Acupuncture can be used to treat all types of health issues:<\\/h3><p>Addictions<br \\/> Allergies<br \\/> Cosmetic procedures (such as acupuncture for face lifting)<br \\/> Degenerative diseases due to aging<br \\/> Depression<br \\/> Men\\u2019s Health<br \\/> Pain Management<br \\/> Stroke Rehabilitation<br \\/> Weight Loss and Management<br \\/> Women\\u2019s Health (PMS, Menopause, Low libido, Infertility, etc.)<\\/p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.<\\/p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.<\\/p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec0d743\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8d51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"93a445e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Herbal Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38708fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b63b587\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5dd77b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17814.jpg\",\"id\":145}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2abd357\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c23e197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/jt-ai-020223846.jpg\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"302e538\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c678bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17815.jpg\",\"id\":146}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"65f85cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"19ec65f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17845.jpg\",\"id\":147}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a441ce4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"c027e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8075edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.<\\/p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.<\\/p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617123300\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an herbal consultation today!<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1050842\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"312fd40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b26e839\",\"elType\":\"widget\",\"settings\":{\"title\":\"Massage\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c22f36b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2d5a971\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f4ebd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nmm.jpg\",\"id\":151}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1d5f1ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ea50966\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nm.jpg\",\"id\":149}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f3901a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8f9a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nl.jpg\",\"id\":150}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22995b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"e5aa6a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9419cff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>O<\\/strong><strong>riental Bodywork<\\/strong><\\/p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:<\\/p><p>Reduced stress and anxiety<br \\/> Relief from muscle tension and joint stiffness<br \\/> Increased blood circulation<br \\/> Reduced heart rate<br \\/> Induces relaxation<br \\/> Reduces back pain<br \\/> Relieves depression and insomnia<br \\/> Relieves Myofascial and Fibromyalgia pain<br \\/> Releives headaches\\/migraines<\\/p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.<\\/p><p>For more information about our massage therapists on staff, click <a title=\\\"Our Staff\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=46\\\">HERE<\\/a>.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment with one of our massage therapists.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d5284f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54a0c3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1bf07a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Qigong\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f518dd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d37e106\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"569f061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/taiji.jpg\",\"id\":152}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"91a2607\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"794de3c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/th.jpg\",\"id\":154}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e58b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"8e03323\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57bb45a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"contents\\\" class=\\\"clearfix\\\"><div id=\\\"maincol\\\"><div class=\\\"post\\\">\\u00a0<\\/div><\\/div><\\/div><div><p>Qigong (pronounced Chee Kung)\\u00a0is a method that combines body movement, breath exercise and mental concentration to exercise the body\\u2019s vital energy, or \\u201cQi\\u201d. In China, Qigong is widely accepted for it\\u2019s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.<\\/p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body\\u2019s immune ability, postpone the aging process and develop the body\\u2019s potential.<\\/p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:<\\/p><p>Anemia<br \\/> Anxiety\\/Depression<br \\/> Arthritis<br \\/> Asthma<br \\/> Back Pain<br \\/> Bone Density<br \\/> Body Strength\\/Flexibility<br \\/> Concentration\\/Memory<br \\/> Hearing or Vision Impairment<br \\/> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br \\/> Immune Cell Activity\\/Dysfunction<br \\/> Kidney Deficiencies<br \\/> Mental Health<br \\/> Overall Health and Well Being<br \\/> Sexual Dysfunction<br \\/> Tinnitus<br \\/> Weight Management<\\/p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner\\u2019s supervision. The second approach, External Qi\\u00a0healing, is a process whereby the Qigong practitioner\\u2019s energy is used to stimulate and balance the patient\\u2019s Qi\\u00a0so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.<\\/p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160503111017\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment for a Qigong consultation.<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f82c1f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f1ada06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2498,599,'_elementor_version','0.4'),(2499,599,'_elementor_template_type','post'),(2539,24,'_elementor_css','a:3:{s:4:\"time\";i:1523336173;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:6:\"status\";s:4:\"file\";}'),(2507,601,'_elementor_version','0.4'),(2508,601,'_elementor_template_type','post'),(2548,21,'_elementor_css','a:3:{s:4:\"time\";i:1523387402;s:5:\"fonts\";a:3:{i:0;s:15:\"Times New Roman\";i:1;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:6:\"status\";s:4:\"file\";}'),(2510,602,'_wp_attached_file','2018/04/1.1.jpg'),(2511,602,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1128;s:6:\"height\";i:300;s:4:\"file\";s:15:\"2018/04/1.1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"1.1-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:14:\"1.1-300x80.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"1.1-768x204.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"1.1-1024x272.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:272;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(2512,603,'_wp_page_template','default'),(2513,603,'_elementor_edit_mode','builder'),(2514,603,'_elementor_data','[{\"id\":\"1d02beeb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/1.1.jpg\",\"id\":602}},\"elements\":[{\"id\":\"5068b065\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13a059d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25b3bf11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Acupuncture\\u00a0 \\u00a0 \\u00a0 Herbal\\u00a0 \\u00a0 \\u00a0 Massage\\u00a0 \\u00a0 \\u00a0 Qigong<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"34\",\"bottom\":\"34\",\"left\":\"34\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a945cdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e62b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5246e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture\",\"title_color\":\"#000000\",\"header_size\":\"h1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1482aef\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0e7e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c051a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/ac7.jpg\",\"id\":137}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e0ffa16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15744fe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/Acupuncture500-1.jpg\",\"id\":143}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72a9504\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b39eba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/acupuncture_500-e1522635045797.jpg\",\"id\":144}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c0f0005\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"753c81b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5740abf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.<\\/p><h3>Acupuncture can be used to treat all types of health issues:<\\/h3><p>Addictions<br \\/> Allergies<br \\/> Cosmetic procedures (such as acupuncture for face lifting)<br \\/> Degenerative diseases due to aging<br \\/> Depression<br \\/> Men\\u2019s Health<br \\/> Pain Management<br \\/> Stroke Rehabilitation<br \\/> Weight Loss and Management<br \\/> Women\\u2019s Health (PMS, Menopause, Low libido, Infertility, etc.)<\\/p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.<\\/p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.<\\/p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec0d743\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8d51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"93a445e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Herbal Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38708fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b63b587\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5dd77b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17814.jpg\",\"id\":145}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2abd357\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c23e197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/jt-ai-020223846.jpg\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"302e538\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c678bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17815.jpg\",\"id\":146}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"65f85cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"19ec65f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17845.jpg\",\"id\":147}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a441ce4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"c027e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8075edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.<\\/p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.<\\/p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617123300\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an herbal consultation today!<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1050842\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"312fd40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b26e839\",\"elType\":\"widget\",\"settings\":{\"title\":\"Massage\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c22f36b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2d5a971\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f4ebd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nmm.jpg\",\"id\":151}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1d5f1ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ea50966\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nm.jpg\",\"id\":149}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f3901a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8f9a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nl.jpg\",\"id\":150}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22995b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"e5aa6a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9419cff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>O<\\/strong><strong>riental Bodywork<\\/strong><\\/p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:<\\/p><p>Reduced stress and anxiety<br \\/> Relief from muscle tension and joint stiffness<br \\/> Increased blood circulation<br \\/> Reduced heart rate<br \\/> Induces relaxation<br \\/> Reduces back pain<br \\/> Relieves depression and insomnia<br \\/> Relieves Myofascial and Fibromyalgia pain<br \\/> Releives headaches\\/migraines<\\/p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.<\\/p><p>For more information about our massage therapists on staff, click <a title=\\\"Our Staff\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=46\\\">HERE<\\/a>.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment with one of our massage therapists.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d5284f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54a0c3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1bf07a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Qigong\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f518dd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d37e106\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"569f061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/taiji.jpg\",\"id\":152}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"91a2607\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"794de3c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/th.jpg\",\"id\":154}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e58b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"8e03323\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57bb45a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"contents\\\" class=\\\"clearfix\\\"><div id=\\\"maincol\\\"><div class=\\\"post\\\">\\u00a0<\\/div><\\/div><\\/div><div><p>Qigong (pronounced Chee Kung)\\u00a0is a method that combines body movement, breath exercise and mental concentration to exercise the body\\u2019s vital energy, or \\u201cQi\\u201d. In China, Qigong is widely accepted for it\\u2019s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.<\\/p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body\\u2019s immune ability, postpone the aging process and develop the body\\u2019s potential.<\\/p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:<\\/p><p>Anemia<br \\/> Anxiety\\/Depression<br \\/> Arthritis<br \\/> Asthma<br \\/> Back Pain<br \\/> Bone Density<br \\/> Body Strength\\/Flexibility<br \\/> Concentration\\/Memory<br \\/> Hearing or Vision Impairment<br \\/> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br \\/> Immune Cell Activity\\/Dysfunction<br \\/> Kidney Deficiencies<br \\/> Mental Health<br \\/> Overall Health and Well Being<br \\/> Sexual Dysfunction<br \\/> Tinnitus<br \\/> Weight Management<\\/p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner\\u2019s supervision. The second approach, External Qi\\u00a0healing, is a process whereby the Qigong practitioner\\u2019s energy is used to stimulate and balance the patient\\u2019s Qi\\u00a0so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.<\\/p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160503111017\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment for a Qigong consultation.<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f82c1f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f1ada06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2515,603,'_elementor_version','0.4'),(2516,603,'_elementor_template_type','post'),(2555,612,'_wp_page_template','default'),(2519,604,'_wp_attached_file','2018/04/1a.jpg'),(2520,604,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1167;s:6:\"height\";i:295;s:4:\"file\";s:14:\"2018/04/1a.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"1a-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:13:\"1a-300x76.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"1a-768x194.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"1a-1024x259.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:259;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(2521,605,'_wp_page_template','default'),(2522,605,'_elementor_edit_mode','builder'),(2523,605,'_elementor_data','[{\"id\":\"1d02beeb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/1a.jpg\",\"id\":604}},\"elements\":[{\"id\":\"5068b065\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13a059d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":31},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25b3bf11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Acupuncture\\u00a0 \\u00a0 \\u00a0 Herbal\\u00a0 \\u00a0 \\u00a0 Massage\\u00a0 \\u00a0 \\u00a0 Qigong<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"34\",\"bottom\":\"34\",\"left\":\"34\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a945cdf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e62b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5246e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture\",\"title_color\":\"#000000\",\"header_size\":\"h1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1482aef\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0e7e1b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c051a58\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/ac7.jpg\",\"id\":137}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e0ffa16\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15744fe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/Acupuncture500-1.jpg\",\"id\":143}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72a9504\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b39eba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/acupuncture_500-e1522635045797.jpg\",\"id\":144}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c0f0005\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"753c81b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5740abf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.<\\/p><h3>Acupuncture can be used to treat all types of health issues:<\\/h3><p>Addictions<br \\/> Allergies<br \\/> Cosmetic procedures (such as acupuncture for face lifting)<br \\/> Degenerative diseases due to aging<br \\/> Depression<br \\/> Men\\u2019s Health<br \\/> Pain Management<br \\/> Stroke Rehabilitation<br \\/> Weight Loss and Management<br \\/> Women\\u2019s Health (PMS, Menopause, Low libido, Infertility, etc.)<\\/p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.<\\/p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.<\\/p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec0d743\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8d51b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"93a445e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Herbal Medicine\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38708fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b63b587\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5dd77b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17814.jpg\",\"id\":145}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2abd357\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c23e197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/jt-ai-020223846.jpg\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"302e538\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c678bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17815.jpg\",\"id\":146}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"65f85cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"19ec65f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/mhrf-cpmh17845.jpg\",\"id\":147}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a441ce4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"c027e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8075edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.<\\/p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.<\\/p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617123300\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an herbal consultation today!<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1050842\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"312fd40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b26e839\",\"elType\":\"widget\",\"settings\":{\"title\":\"Massage\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c22f36b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2d5a971\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f4ebd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nmm.jpg\",\"id\":151}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1d5f1ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ea50966\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nm.jpg\",\"id\":149}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f3901a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8f9a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/nl.jpg\",\"id\":150}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22995b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"e5aa6a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9419cff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>O<\\/strong><strong>riental Bodywork<\\/strong><\\/p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.<\\/p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:<\\/p><p>Reduced stress and anxiety<br \\/> Relief from muscle tension and joint stiffness<br \\/> Increased blood circulation<br \\/> Reduced heart rate<br \\/> Induces relaxation<br \\/> Reduces back pain<br \\/> Relieves depression and insomnia<br \\/> Relieves Myofascial and Fibromyalgia pain<br \\/> Releives headaches\\/migraines<\\/p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.<\\/p><p>For more information about our massage therapists on staff, click <a title=\\\"Our Staff\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=46\\\">HERE<\\/a>.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160617122956\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment with one of our massage therapists.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d5284f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54a0c3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1bf07a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Qigong\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f518dd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d37e106\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"569f061\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/taiji.jpg\",\"id\":152}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"91a2607\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"794de3c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/th.jpg\",\"id\":154}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e58b2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"8e03323\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57bb45a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"contents\\\" class=\\\"clearfix\\\"><div id=\\\"maincol\\\"><div class=\\\"post\\\">\\u00a0<\\/div><\\/div><\\/div><div><p>Qigong (pronounced Chee Kung)\\u00a0is a method that combines body movement, breath exercise and mental concentration to exercise the body\\u2019s vital energy, or \\u201cQi\\u201d. In China, Qigong is widely accepted for it\\u2019s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.<\\/p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body\\u2019s immune ability, postpone the aging process and develop the body\\u2019s potential.<\\/p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:<\\/p><p>Anemia<br \\/> Anxiety\\/Depression<br \\/> Arthritis<br \\/> Asthma<br \\/> Back Pain<br \\/> Bone Density<br \\/> Body Strength\\/Flexibility<br \\/> Concentration\\/Memory<br \\/> Hearing or Vision Impairment<br \\/> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br \\/> Immune Cell Activity\\/Dysfunction<br \\/> Kidney Deficiencies<br \\/> Mental Health<br \\/> Overall Health and Well Being<br \\/> Sexual Dysfunction<br \\/> Tinnitus<br \\/> Weight Management<\\/p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner\\u2019s supervision. The second approach, External Qi\\u00a0healing, is a process whereby the Qigong practitioner\\u2019s energy is used to stimulate and balance the patient\\u2019s Qi\\u00a0so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.<\\/p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.<\\/p><p><a title=\\\"Contact Us\\\" href=\\\"https:\\/\\/web.archive.org\\/web\\/20160503111017\\/http:\\/\\/evergreenwellness.com\\/?page_id=21\\\">Contact us<\\/a> to schedule an appointment for a Qigong consultation.<\\/p><\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f82c1f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f1ada06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2524,605,'_elementor_version','0.4'),(2525,605,'_elementor_template_type','post'),(2556,612,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/9.5.jpg\",\"id\":580}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#3d3d3d\",\"size\":\"large\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0\\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"right\",\"text_color\":\"#191919\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_weight\":\"600\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":356,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao-1.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 40 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Kansas. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":444,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0238.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist\\u00a0\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.<\\/p><p>She strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.<\\/p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1dd45c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"81b7eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eaf6e0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\"><span style=\\\"text-decoration: underline;\\\"><strong>contact us<\\/strong><\\/span><\\/a>.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"_background_background\":\"classic\",\"_background_color\":\"#eaeaea\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2528,606,'_wp_attached_file','2018/04/3.png'),(2529,606,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1192;s:6:\"height\";i:300;s:4:\"file\";s:13:\"2018/04/3.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:12:\"3-300x76.png\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"3-768x193.png\";s:5:\"width\";i:768;s:6:\"height\";i:193;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"3-1024x258.png\";s:5:\"width\";i:1024;s:6:\"height\";i:258;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:{}}}'),(2545,608,'_elementor_version','0.4'),(2546,608,'_elementor_edit_mode','builder'),(2547,608,'_elementor_css','a:3:{s:4:\"time\";i:1523326507;s:5:\"fonts\";a:3:{i:0;s:15:\"Times New Roman\";i:1;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:6:\"status\";s:4:\"file\";}'),(2557,612,'_elementor_version','0.4'),(2558,612,'_elementor_template_type','post'),(2559,612,'_elementor_edit_mode','builder'),(2560,613,'_edit_lock','1532897748:1'),(2644,23,'_elementor_css','a:3:{s:4:\"time\";i:1532898268;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:6:\"status\";s:4:\"file\";}'),(2562,614,'_menu_item_type','custom'),(2563,614,'_menu_item_menu_item_parent','0'),(2564,614,'_menu_item_object_id','614'),(2565,614,'_menu_item_object','custom'),(2566,614,'_menu_item_target',''),(2567,614,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2568,614,'_menu_item_xfn',''),(2569,614,'_menu_item_url','http://evergreenwellness.com'),(2570,614,'_menu_item_template',''),(2571,614,'_menu_item_mega_template',''),(2572,614,'_menu_item_nolink',''),(2573,614,'_menu_item_category_post',''),(2574,614,'_menu_item_megamenu',''),(2575,614,'_menu_item_megamenu_auto_width',''),(2576,614,'_menu_item_megamenu_col',''),(2577,614,'_menu_item_megamenu_heading',''),(2578,614,'_menu_item_megamenu_widgetarea',''),(2579,614,'_menu_item_icon',''),(2580,615,'_menu_item_type','post_type'),(2581,615,'_menu_item_menu_item_parent','0'),(2582,615,'_menu_item_object_id','24'),(2583,615,'_menu_item_object','page'),(2584,615,'_menu_item_target',''),(2585,615,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2586,615,'_menu_item_xfn',''),(2587,615,'_menu_item_url',''),(2588,615,'_menu_item_template',''),(2589,615,'_menu_item_mega_template',''),(2590,615,'_menu_item_nolink',''),(2591,615,'_menu_item_category_post',''),(2592,615,'_menu_item_megamenu',''),(2593,615,'_menu_item_megamenu_auto_width',''),(2594,615,'_menu_item_megamenu_col',''),(2595,615,'_menu_item_megamenu_heading',''),(2596,615,'_menu_item_megamenu_widgetarea',''),(2597,615,'_menu_item_icon',''),(2598,616,'_menu_item_type','post_type'),(2599,616,'_menu_item_menu_item_parent','0'),(2600,616,'_menu_item_object_id','27'),(2601,616,'_menu_item_object','page'),(2602,616,'_menu_item_target',''),(2603,616,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2604,616,'_menu_item_xfn',''),(2605,616,'_menu_item_url',''),(2606,616,'_menu_item_template',''),(2607,616,'_menu_item_mega_template',''),(2608,616,'_menu_item_nolink',''),(2609,616,'_menu_item_category_post',''),(2610,616,'_menu_item_megamenu',''),(2611,616,'_menu_item_megamenu_auto_width',''),(2612,616,'_menu_item_megamenu_col',''),(2613,616,'_menu_item_megamenu_heading',''),(2614,616,'_menu_item_megamenu_widgetarea',''),(2615,616,'_menu_item_icon',''),(2616,617,'_menu_item_type','post_type'),(2617,617,'_menu_item_menu_item_parent','0'),(2618,617,'_menu_item_object_id','23'),(2619,617,'_menu_item_object','page'),(2620,617,'_menu_item_target',''),(2621,617,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2622,617,'_menu_item_xfn',''),(2623,617,'_menu_item_url',''),(2624,617,'_menu_item_template',''),(2625,617,'_menu_item_mega_template',''),(2626,617,'_menu_item_nolink',''),(2627,617,'_menu_item_category_post',''),(2628,617,'_menu_item_megamenu',''),(2629,617,'_menu_item_megamenu_auto_width',''),(2630,617,'_menu_item_megamenu_col',''),(2631,617,'_menu_item_megamenu_heading',''),(2632,617,'_menu_item_megamenu_widgetarea',''),(2633,617,'_menu_item_icon',''),(2634,613,'_wp_trash_meta_status','publish'),(2635,613,'_wp_trash_meta_time','1532897786'),(2636,618,'_wp_trash_meta_status','publish'),(2637,618,'_wp_trash_meta_time','1532897901'),(2638,619,'_wp_page_template','default'),(2639,619,'_elementor_data','[{\"id\":\"141c7cab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#fcfcfc\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/9.5.jpg\",\"id\":580}},\"elements\":[{\"id\":\"1de0d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7b211f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#3d3d3d\",\"size\":\"large\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5053c650\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Experienced professionals\\u00a0 \\u00a0\\u00a0 Quality patient-centered care<\\/p>\",\"align\":\"right\",\"text_color\":\"#191919\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_weight\":\"600\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e6d8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38aad9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"151d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mission Statement\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7b2690\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#e0e0e0\"},\"elements\":[{\"id\":\"3beb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"340ed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b29e0d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#adadad\"},\"elements\":[{\"id\":\"3acbd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"09d4962\",\"elType\":\"widget\",\"settings\":{\"title\":\"   Our Staff\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0,0,0,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b6073c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"gap\":\"no\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_overlay_section\":\"\"},\"elements\":[{\"id\":\"5e52eda5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45cbea75\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":356,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/gao-1.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51661b67\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 40 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and by the state of Kansas as an acupuncturist. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79d68ccf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3af4f1a1\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":444,\"url\":\"http:\\/\\/evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/04\\/IMG_0238.jpg\"},\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"thumbnail\",\"opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7707886f\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>Carrie Hao X. Shen, Lic. Acupuncturist\\u00a0\\u00a0<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.<\\/p><p>She strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.<\\/p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.<\\/p><\\/div><\\/div>\",\"section_style\":\"\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"01\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1dd45c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"81b7eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eaf6e0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fees and Insurence\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"781dcdf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"23\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"d7f3a96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7015eb8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>The fees for our services are varied, based on the patient\\u2019s age and other factors. Please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\">contact us<\\/a> to discuss the cost of treatment.<\\/p><\\/div><div><p>EWC does\\u00a0not file insurance claims. It is the patient\\u2019s responsibility to provide payment at the time of service and contact.\\u00a0More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.<\\/p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.<\\/p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\\\"http:\\/\\/evergreenwellness.com\\/contact\\/\\\"><span style=\\\"text-decoration: underline;\\\"><strong>contact us<\\/strong><\\/span><\\/a>.<\\/p><\\/div>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"_background_background\":\"classic\",\"_background_color\":\"#eaeaea\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2640,619,'_elementor_version','0.4'),(2641,619,'_elementor_template_type','post'),(2642,619,'_elementor_edit_mode','builder'),(2643,619,'_elementor_css','a:3:{s:4:\"time\";i:1532897728;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:6:\"status\";s:4:\"file\";}'),(2645,620,'_wp_trash_meta_status','publish'),(2646,620,'_wp_trash_meta_time','1532898374');
/*!40000 ALTER TABLE `aCPMymRSpostmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `aCPMymRSposts`
--

DROP TABLE IF EXISTS `aCPMymRSposts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `aCPMymRSposts` (
  `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=MyISAM AUTO_INCREMENT=622 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `aCPMymRSposts`
--

LOCK TABLES `aCPMymRSposts` WRITE;
/*!40000 ALTER TABLE `aCPMymRSposts` DISABLE KEYS */;
INSERT INTO `aCPMymRSposts` VALUES (21,1,'2018-03-31 22:16:55','2018-03-31 22:16:55','<h2>Evergreen Wellness Center</h2>		\n		<p>&nbsp;May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450		\n			<h2>If you have any questions, please contact us.</h2>		\n			<a href=\"http://evergreenwellness.com/contact/\" role=\"button\">\n						Contact Us\n					</a>','Home','','publish','closed','closed','','home','','','2018-04-10 19:09:56','2018-04-10 19:09:56','',0,'http://evergreenwellness.com/?page_id=21',0,'page','',0),(22,1,'2018-03-31 22:16:55','2018-03-31 22:16:55','','Home','','inherit','closed','closed','','21-revision-v1','','','2018-03-31 22:16:55','2018-03-31 22:16:55','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(23,1,'2018-03-31 22:30:36','2018-03-31 22:30:36','<h2>About Us</h2>		\n		<p>Experienced professionals     Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 40 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and by the state of Kansas as an acupuncturist. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist  </strong></p><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.</p><p>She strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.</p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a href=\"http://evergreenwellness.com/contact/\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\"http://evergreenwellness.com/contact/\"><strong>contact us</strong></a>.</p>','About','','publish','closed','closed','','about','','','2018-07-29 21:03:22','2018-07-29 21:03:22','',0,'http://evergreenwellness.com/?page_id=23',0,'page','',0),(24,1,'2018-03-31 22:31:15','2018-03-31 22:31:15','<h2>Services</h2>		\n		<p>Acupuncture      Herbal      Massage      Qigong</p>		\n			<h1>Acupuncture</h1>		\n										<img width=\"420\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg 420w, http://evergreenwellness.com/wp-content/uploads/2018/04/ac7-300x186.jpg 300w\" sizes=\"(max-width: 420px) 100vw, 420px\" />											\n										<img width=\"388\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Acupuncture500-1-e1522634879500.jpg\" alt=\"\" />											\n										<img width=\"420\" height=\"269\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/acupuncture_500-e1522635045797.jpg\" alt=\"\" />											\n		<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.</p><h3>Acupuncture can be used to treat all types of health issues:</h3><p>Addictions<br /> Allergies<br /> Cosmetic procedures (such as acupuncture for face lifting)<br /> Degenerative diseases due to aging<br /> Depression<br /> Men’s Health<br /> Pain Management<br /> Stroke Rehabilitation<br /> Weight Loss and Management<br /> Women’s Health (PMS, Menopause, Low libido, Infertility, etc.)</p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.</p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.</p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.</p>		\n			<h1>Herbal Medicine</h1>		\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.</p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.</p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617123300/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an herbal consultation today!</p> 		\n			<h1>Massage</h1>		\n										<img width=\"600\" height=\"401\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nmm-300x201.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nm-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nl-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		<p><strong>O</strong><strong>riental Bodywork</strong></p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.</p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:</p><p>Reduced stress and anxiety<br /> Relief from muscle tension and joint stiffness<br /> Increased blood circulation<br /> Reduced heart rate<br /> Induces relaxation<br /> Reduces back pain<br /> Relieves depression and insomnia<br /> Relieves Myofascial and Fibromyalgia pain<br /> Releives headaches/migraines</p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.</p><p>For more information about our massage therapists on staff, click <a title=\"Our Staff\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=46\">HERE</a>.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment with one of our massage therapists.</p>		\n			<h1>Qigong</h1>		\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/taiji-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/th-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		 <p>Qigong (pronounced Chee Kung) is a method that combines body movement, breath exercise and mental concentration to exercise the body’s vital energy, or “Qi”. In China, Qigong is widely accepted for it’s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.</p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body’s immune ability, postpone the aging process and develop the body’s potential.</p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:</p><p>Anemia<br /> Anxiety/Depression<br /> Arthritis<br /> Asthma<br /> Back Pain<br /> Bone Density<br /> Body Strength/Flexibility<br /> Concentration/Memory<br /> Hearing or Vision Impairment<br /> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br /> Immune Cell Activity/Dysfunction<br /> Kidney Deficiencies<br /> Mental Health<br /> Overall Health and Well Being<br /> Sexual Dysfunction<br /> Tinnitus<br /> Weight Management</p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner’s supervision. The second approach, External Qi healing, is a process whereby the Qigong practitioner’s energy is used to stimulate and balance the patient’s Qi so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.</p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160503111017/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment for a Qigong consultation.</p> ','Services','','publish','closed','closed','','services','','','2018-04-07 19:27:12','2018-04-07 19:27:12','',0,'http://evergreenwellness.com/?page_id=24',0,'page','',0),(25,1,'2018-03-31 22:24:07','2018-03-31 22:24:07','<h2>    Knowledge Base   </h2>		\n		<p>Knowledge is the power</p>		\n			<h1>What’s being treated?</h1>		\n										<img width=\"686\" height=\"332\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg 686w, http://evergreenwellness.com/wp-content/uploads/2018/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h1>Q & A on Traditional Chinese Medicine</h1>		\n		<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world’s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.</p><p>Q. Isn’t Traditional Chinese Medicine just a system of folk healing?</p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.</p><p><br />Q. How does Traditional Chinese Medicine work?</p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body’s healthy or righteous energy and attacking any unhealthy or negative energy. </p><p>Q. How does a TCM practitioner determine what is out of balance?</p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient’s face, body, and especially their tongue and its coating. The third is listening to the patient’s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.</p><p><br />Q. How is this rebalancing accomplished?</p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.</p><p><br />Q. Is Traditional Chinese Medicine safe?</p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.</p>		\n			<h1>Articles</h1>		\n		<p>There is a plethora of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.</p><p><a title=\"Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=303\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</a></p><p><a title=\"Post-Stroke Rehabilitation\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=291\">Post-Stroke Rehabilitation</a></p><p><a title=\"Stroke Rehabilitation and Traditional Chinese Medicine\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=294\">Stroke Rehabilitation and Traditional Chinese Medicine</a></p><p><a title=\"TCM and Heart Diseases\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=297\">TCM and Heart Diseases</a></p><p><a title=\"Traditional Chinese Medicine and Infertility\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=289\">Traditional Chinese Medicine and Infertility</a></p>','Knowledge Base','','publish','closed','closed','','knowledge-base','','','2018-04-07 20:10:36','2018-04-07 20:10:36','',0,'http://evergreenwellness.com/?page_id=25',0,'page','',0),(406,1,'2018-04-05 00:22:51','2018-04-05 00:22:51','','carrie','','inherit','open','closed','','carrie','','','2018-04-05 00:22:51','2018-04-05 00:22:51','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/carrie.jpg',0,'attachment','image/jpeg',0),(7,1,'2018-03-29 23:06:10','2018-03-29 23:06:10','','ewc','','inherit','open','closed','','ewc','','','2018-03-29 23:06:10','2018-03-29 23:06:10','',0,'http://evergreenwellness.com/wp-content/uploads/2018/03/ewc.jpg',0,'attachment','image/jpeg',0),(8,1,'2018-03-29 23:06:10','2018-03-29 23:06:10','','Patient Testimonials','','inherit','open','closed','','patient-testimonials','','','2018-03-29 23:06:10','2018-03-29 23:06:10','',0,'http://evergreenwellness.com/wp-content/uploads/2018/03/Patient-Testimonials.docx',0,'attachment','application/vnd.openxmlformats-officedocument.wordprocessingml.document',0),(11,1,'2018-03-29 23:06:12','2018-03-29 23:06:12','','wb3','','inherit','open','closed','','wb3','','','2018-03-29 23:06:12','2018-03-29 23:06:12','',0,'http://evergreenwellness.com/wp-content/uploads/2018/03/wb3.jpg',0,'attachment','image/jpeg',0),(26,1,'2018-03-31 22:24:07','2018-03-31 22:24:07','','Knowledge Base','','inherit','closed','closed','','25-revision-v1','','','2018-03-31 22:24:07','2018-03-31 22:24:07','',25,'http://evergreenwellness.com/25-revision-v1/',0,'revision','',0),(27,1,'2018-03-31 22:30:59','2018-03-31 22:30:59','<h2>Contact Us</h2>		\n		<h4>Need an expert?</h4><h4>You are more than welcomed to leave your contact info</h4><h4>and we will be in touch shortly</h4>		\n			<h3>Contact Us</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n		[contact-form-7 id=\"177\" title=\"Contact form 1\"]		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','publish','closed','closed','','contact','','','2018-04-07 19:15:49','2018-04-07 19:15:49','',0,'http://evergreenwellness.com/?page_id=27',0,'page','',0),(29,1,'2018-03-31 22:30:36','2018-03-31 22:30:36','','About','','inherit','closed','closed','','23-revision-v1','','','2018-03-31 22:30:36','2018-03-31 22:30:36','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(30,1,'2018-03-31 22:30:59','2018-03-31 22:30:59','','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-03-31 22:30:59','2018-03-31 22:30:59','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(31,1,'2018-03-31 22:31:15','2018-03-31 22:31:15','','Services','','inherit','closed','closed','','24-revision-v1','','','2018-03-31 22:31:15','2018-03-31 22:31:15','',24,'http://evergreenwellness.com/24-revision-v1/',0,'revision','',0),(33,1,'2018-03-31 22:35:20','2018-03-31 22:35:20','','Home','','publish','closed','closed','','home','','','2018-03-31 22:35:20','2018-03-31 22:35:20','',0,'http://evergreenwellness.com/home/',1,'nav_menu_item','',0),(34,1,'2018-03-31 22:35:20','2018-03-31 22:35:20',' ','','','publish','closed','closed','','34','','','2018-03-31 22:35:20','2018-03-31 22:35:20','',0,'http://evergreenwellness.com/34/',2,'nav_menu_item','',0),(35,1,'2018-03-31 22:35:20','2018-03-31 22:35:20',' ','','','publish','closed','closed','','35','','','2018-03-31 22:35:20','2018-03-31 22:35:20','',0,'http://evergreenwellness.com/35/',3,'nav_menu_item','',0),(36,1,'2018-03-31 22:35:20','2018-03-31 22:35:20',' ','','','publish','closed','closed','','36','','','2018-03-31 22:35:20','2018-03-31 22:35:20','',0,'http://evergreenwellness.com/36/',4,'nav_menu_item','',0),(37,1,'2018-03-31 22:35:20','2018-03-31 22:35:20',' ','','','publish','closed','closed','','37','','','2018-03-31 22:35:20','2018-03-31 22:35:20','',0,'http://evergreenwellness.com/37/',5,'nav_menu_item','',0),(50,1,'2018-04-01 16:24:55','2018-04-01 16:24:55','Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic affiliated with the Kansas College of Chinese Medicine. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.\r\n\r\nClick on the video to hear the amazing story of one of our stroke rehabilitation patients, Malinda Wedal.\r\n\r\nMission Statement \r\nThe Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.\r\nGot a question?  Ask a Doctor.\r\n','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-01 16:24:55','2018-04-01 16:24:55','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(51,1,'2018-04-01 16:55:40','2018-04-01 16:55:40','<p style=\"margin-bottom: 4.5pt; line-height: 15.75pt;\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic affiliated with the Kansas College of Chinese Medicine. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<br /> <br /> Click on the video to hear the amazing story of one of our stroke rehabilitation patients, Malinda Wedal.</p><p style=\"margin-bottom: 4.5pt; line-height: 15.75pt;\"> </p><p style=\"margin: 0in 0in 0.0001pt; line-height: 15.75pt;\"><strong>Mission Statement </strong></p><p style=\"margin: 0in 0in 0.0001pt; line-height: 15.75pt;\">The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p><p> </p><p style=\"margin: 0in 0in 0.0001pt; line-height: 15.75pt;\">Got a question?  <a href=\"https://web.archive.org/web/20161104004911/http:/evergreenwellness.com/AskDoctor.aspx\">Ask a Doctor</a>.</p>https://youtu.be/RTQGpPwn2BU','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-01 16:55:40','2018-04-01 16:55:40','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(285,1,'2018-04-03 21:09:12','2018-04-03 21:09:12','','11','','inherit','open','closed','','11-2','','','2018-04-03 21:09:12','2018-04-03 21:09:12','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/11-1.jpg',0,'attachment','image/jpeg',0),(63,1,'2018-04-01 17:06:46','2018-04-01 17:06:46','','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-01 17:06:46','2018-04-01 17:06:46','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(278,1,'2018-04-03 20:46:38','2018-04-03 20:46:38','','cropped-ac7.jpg','','inherit','open','closed','','cropped-ac7-jpg','','','2018-04-03 20:46:38','2018-04-03 20:46:38','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/cropped-ac7.jpg',0,'attachment','image/jpeg',0),(279,1,'2018-04-03 20:47:18','2018-04-03 20:47:18','','cropped-mhrf-cpmh17815.jpg','','inherit','open','closed','','cropped-mhrf-cpmh17815-jpg','','','2018-04-03 20:47:18','2018-04-03 20:47:18','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/cropped-mhrf-cpmh17815.jpg',0,'attachment','image/jpeg',0),(274,1,'2018-04-03 20:09:14','2018-04-03 20:09:14','','bbj','','inherit','open','closed','','bbj','','','2018-04-03 20:09:14','2018-04-03 20:09:14','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/bbj.jpg',0,'attachment','image/jpeg',0),(219,1,'2018-04-03 00:48:34','2018-04-03 00:48:34','','Stroke','','publish','closed','closed','','stroke','','','2018-04-03 00:50:45','2018-04-03 00:50:45','',0,'http://evergreenwellness.com/?page_id=219',0,'page','',0),(220,1,'2018-04-03 00:48:34','2018-04-03 00:48:34','','Stroke','','inherit','closed','closed','','219-revision-v1','','','2018-04-03 00:48:34','2018-04-03 00:48:34','',219,'http://evergreenwellness.com/219-revision-v1/',0,'revision','',0),(223,1,'2018-04-03 18:00:39','2018-04-03 18:00:39','','green_grass_14-wallpaper-1280x1024','','inherit','open','closed','','green_grass_14-wallpaper-1280x1024','','','2018-04-03 18:00:39','2018-04-03 18:00:39','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/green_grass_14-wallpaper-1280x1024.jpg',0,'attachment','image/jpeg',0),(280,1,'2018-04-03 20:48:26','2018-04-03 20:48:26','','h','','inherit','open','closed','','h','','','2018-04-03 20:48:26','2018-04-03 20:48:26','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/h.jpeg',0,'attachment','image/jpeg',0),(281,1,'2018-04-03 20:48:32','2018-04-03 20:48:32','','cropped-h.jpeg','','inherit','open','closed','','cropped-h-jpeg','','','2018-04-03 20:48:32','2018-04-03 20:48:32','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/cropped-h.jpeg',0,'attachment','image/jpeg',0),(250,1,'2018-04-03 18:49:36','2018-04-03 18:49:36','','9','','inherit','open','closed','','9','','','2018-04-03 18:49:36','2018-04-03 18:49:36','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/9.jpg',0,'attachment','image/jpeg',0),(62,1,'2018-04-01 17:05:03','2018-04-01 17:05:03','https://www.youtube.com/watch?v=LFkrBtQOOH4		\n			<h2>How to Make a Website</h2>		\n		<p>This 8 hour course will teach you all the required skills needed when designing and developing a live WordPress website, including using the advanced options of HTML and CSS.</p>		\n			<a href=\"#\" role=\"button\">\n						Start your Free trial\n					</a>\n                <h3>\n                    Who is it for?\n                </h3>\n                <p>The course is aimed at anyone who wants to create websites on their own, and possibly work as a freelancer or employee in the field of web design and development. We cover everything, so even if you\'ve never seen HTML code in your life, you\'ll be able to quickly jump in.</p>\n										<img width=\"572\" height=\"555\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/study_1.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/study_1.jpg 572w, http://evergreenwellness.com/wp-content/uploads/2018/04/study_1-300x291.jpg 300w\" sizes=\"(max-width: 572px) 100vw, 572px\" />											\n			<h3>our teaching team</h3>		\n										<img width=\"166\" height=\"165\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/teacther1.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/teacther1.png 166w, http://evergreenwellness.com/wp-content/uploads/2018/04/teacther1-150x150.png 150w\" sizes=\"(max-width: 166px) 100vw, 166px\" />											\n			<h2>Stella Lindley</h2>		\n			<h2>ui/ux web master</h2>		\n		<p>A strict teacher that has been teaching since the age of 16. Stella won\'t give you any slack, so you will have to do the very best work you\'ve done in your life.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n										<img width=\"162\" height=\"165\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/teacher2.jpg\" alt=\"\" />											\n			<h2>Donald Martin</h2>		\n			<h2> Computer Science</h2>		\n		<p>Donald has a PHD in both Computer Science and Design. His beginner course is a must see for any aspiring web professional who want to learn from the best.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n										<img width=\"162\" height=\"165\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/teacher3.jpg\" alt=\"\" />											\n			<h2>Gaby Williams</h2>		\n			<h2>AI Expert</h2>		\n		<p>If there\'s someone who can explain anything, Gaby is the one. She teaches you not just how to do something, but why to do it this way and not the other.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n										<img width=\"570\" height=\"498\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/study-box_1.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/study-box_1.jpg 570w, http://evergreenwellness.com/wp-content/uploads/2018/04/study-box_1-300x262.jpg 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />											\n			<h3>Practice makes perfect</h3>		\n		<p>We know about your hectic schedule. We also know the only way you truly understand a subject is by practicing it in a real environment. This is why we\'ve set a playground area that\'s full of hours of exercises, questions and challenges. It even has a gaming section. </p>		\n			<h3>The best campus facilities</h3>		\n		<p>In addition to our online classroom, we also offer an option to take part in a live classroom. It takes place in our vast campus located in Westfield, London. Here you\'ll be able to use the most up-to-date facilities and computer equipment.</p>		\n										<img width=\"570\" height=\"498\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/library.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/library.jpg 570w, http://evergreenwellness.com/wp-content/uploads/2018/04/library-300x262.jpg 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />											\n			<h2>Learn from the very best</h2>		\n		<p>Join our course and start building the most wanted career available today. We make sure every class is easily understood, and that all students reach the same level of expertise needed for today\'s hi-tech industry.</p>		\n                <h3>\n                    Working hours\n                </h3>\n                <p>Monday- Thursday:8:00-18:30 Hrs <br>(Phone until 17:30 Hrs)<br>Friday - 8:00-14:00</p>\n                <h3>\n                    We are here\n                </h3>\n                <p>Westfield London 2039-2041 Westfield <br>Phone:+44 20 8834 4688 <br>Fax:+44 20 8859 6598 <br>Email: info@collage.com</p>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"London Eye, London, United Kingdom\"></iframe>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-01 17:05:03','2018-04-01 17:05:03','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(60,1,'2018-04-01 16:59:21','2018-04-01 16:59:21','<p style=\"margin-bottom: 4.5pt; line-height: 15.75pt;\">Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic affiliated with the Kansas College of Chinese Medicine. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<br /> <br /> Click on the video to hear the amazing story of one of our stroke rehabilitation patients, Malinda Wedal.</p><p style=\"margin-bottom: 4.5pt; line-height: 15.75pt;\"> </p><p style=\"margin: 0in 0in 0.0001pt; line-height: 15.75pt;\"><strong>Mission Statement </strong></p><p style=\"margin: 0in 0in 0.0001pt; line-height: 15.75pt;\">The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p><p> </p><p style=\"margin: 0in 0in 0.0001pt; line-height: 15.75pt;\">Got a question?  <a href=\"https://web.archive.org/web/20161104004911/http:/evergreenwellness.com/AskDoctor.aspx\">Ask a Doctor</a>.</p>https://youtu.be/RTQGpPwn2BUhttps://www.youtube.com/watch?v=LFkrBtQOOH4		\n			<h2>How to Make a Website</h2>		\n		<p>This 8 hour course will teach you all the required skills needed when designing and developing a live WordPress website, including using the advanced options of HTML and CSS.</p>		\n			<a href=\"#\" role=\"button\">\n						Start your Free trial\n					</a>\n                <h3>\n                    Who is it for?\n                </h3>\n                <p>The course is aimed at anyone who wants to create websites on their own, and possibly work as a freelancer or employee in the field of web design and development. We cover everything, so even if you\'ve never seen HTML code in your life, you\'ll be able to quickly jump in.</p>\n										<img width=\"572\" height=\"555\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/study_1.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/study_1.jpg 572w, http://evergreenwellness.com/wp-content/uploads/2018/04/study_1-300x291.jpg 300w\" sizes=\"(max-width: 572px) 100vw, 572px\" />											\n			<h3>our teaching team</h3>		\n										<img width=\"166\" height=\"165\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/teacther1.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/teacther1.png 166w, http://evergreenwellness.com/wp-content/uploads/2018/04/teacther1-150x150.png 150w\" sizes=\"(max-width: 166px) 100vw, 166px\" />											\n			<h2>Stella Lindley</h2>		\n			<h2>ui/ux web master</h2>		\n		<p>A strict teacher that has been teaching since the age of 16. Stella won\'t give you any slack, so you will have to do the very best work you\'ve done in your life.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n										<img width=\"162\" height=\"165\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/teacher2.jpg\" alt=\"\" />											\n			<h2>Donald Martin</h2>		\n			<h2> Computer Science</h2>		\n		<p>Donald has a PHD in both Computer Science and Design. His beginner course is a must see for any aspiring web professional who want to learn from the best.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n										<img width=\"162\" height=\"165\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/teacher3.jpg\" alt=\"\" />											\n			<h2>Gaby Williams</h2>		\n			<h2>AI Expert</h2>		\n		<p>If there\'s someone who can explain anything, Gaby is the one. She teaches you not just how to do something, but why to do it this way and not the other.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n										<img width=\"570\" height=\"498\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/study-box_1.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/study-box_1.jpg 570w, http://evergreenwellness.com/wp-content/uploads/2018/04/study-box_1-300x262.jpg 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />											\n			<h3>Practice makes perfect</h3>		\n		<p>We know about your hectic schedule. We also know the only way you truly understand a subject is by practicing it in a real environment. This is why we\'ve set a playground area that\'s full of hours of exercises, questions and challenges. It even has a gaming section. </p>		\n			<h3>The best campus facilities</h3>		\n		<p>In addition to our online classroom, we also offer an option to take part in a live classroom. It takes place in our vast campus located in Westfield, London. Here you\'ll be able to use the most up-to-date facilities and computer equipment.</p>		\n										<img width=\"570\" height=\"498\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/library.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/library.jpg 570w, http://evergreenwellness.com/wp-content/uploads/2018/04/library-300x262.jpg 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />											\n			<h2>Learn from the very best</h2>		\n		<p>Join our course and start building the most wanted career available today. We make sure every class is easily understood, and that all students reach the same level of expertise needed for today\'s hi-tech industry.</p>		\n                <h3>\n                    Working hours\n                </h3>\n                <p>Monday- Thursday:8:00-18:30 Hrs <br>(Phone until 17:30 Hrs)<br>Friday - 8:00-14:00</p>\n                <h3>\n                    We are here\n                </h3>\n                <p>Westfield London 2039-2041 Westfield <br>Phone:+44 20 8834 4688 <br>Fax:+44 20 8859 6598 <br>Email: info@collage.com</p>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"London Eye, London, United Kingdom\"></iframe>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-01 16:59:21','2018-04-01 16:59:21','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(289,1,'2018-04-03 21:28:51','2018-04-03 21:28:51','<p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-03 21:28:51','2018-04-03 21:28:51','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(91,1,'2018-04-01 18:35:54','2018-04-01 18:35:54','','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-01 18:35:54','2018-04-01 18:35:54','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(608,1,'2018-04-10 19:09:56','2018-04-10 19:09:56','<h2>Evergreen Wellness Center</h2>		\n		<p>&nbsp;May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450		\n			<h2>If you have any questions, please contact us.</h2>		\n			<a href=\"http://evergreenwellness.com/contact/\" role=\"button\">\n						Contact Us\n					</a>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-10 19:09:56','2018-04-10 19:09:56','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(95,1,'2018-04-01 20:25:32','2018-04-01 20:25:32','<h2>Evergreen Wellness Center</h2>		\n			<p>BikeTour offers the most interactive activity you can experience in urban and natural surroundings. Find out how the real city comes alive when you are guided by the right person</p>		\n			<a href=\"#\" role=\"button\">\n						join the next tour\n					</a>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-01 20:25:32','2018-04-01 20:25:32','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(87,1,'2018-04-01 18:02:46','2018-04-01 18:02:46','<p>May you have a good health</p>		\n			<a role=\"button\">\n						join the next tour\n					</a>\n			<h3>Writing, made simple.</h3>		\n		Everyone can write, but not everyone is a writer. What makes the difference is the keen eye for detail and beauty.		\n										<img width=\"1602\" height=\"900\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2.png 1602w, http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2-300x169.png 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2-768x431.png 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2-1024x575.png 1024w\" sizes=\"(max-width: 1602px) 100vw, 1602px\" />											\n			<h3>Hello.</h3>		\n		<p>I love you, won\'t you tell me your name? These immortal words by legendary musician Jim Morrison are still as relevant today, in this digital age, as they were back then. </p>		\n			<a href=\"#\" role=\"button\">\n						Let\'s Meet\n					</a>\n		https://www.youtube.com/watch?v=kB4U67tiQLA		\n			<h3>Try it Yourself</h3>		\n		<p>What makes design so alluring? We believes the answer is designers. That\'s why we have made our entire focus on you - the designer. Your style, your ideas, your creativity. Go on - Try, share and design now!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started\n					</a>\n										<img width=\"776\" height=\"650\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ma.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ma.png 776w, http://evergreenwellness.com/wp-content/uploads/2018/04/ma-300x251.png 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/ma-768x643.png 768w\" sizes=\"(max-width: 776px) 100vw, 776px\" />','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-01 18:02:46','2018-04-01 18:02:46','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(86,1,'2018-04-01 18:00:59','2018-04-01 18:00:59','<p>May you have a good health</p>		\n			<a href=\"https://youtu.be/bRPWQmX_76c\" role=\"button\">\n						join the next tour\n					</a>\n			<h3>Writing, made simple.</h3>		\n		Everyone can write, but not everyone is a writer. What makes the difference is the keen eye for detail and beauty.		\n										<img width=\"1602\" height=\"900\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2.png 1602w, http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2-300x169.png 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2-768x431.png 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2-1024x575.png 1024w\" sizes=\"(max-width: 1602px) 100vw, 1602px\" />											\n			<h3>Hello.</h3>		\n		<p>I love you, won\'t you tell me your name? These immortal words by legendary musician Jim Morrison are still as relevant today, in this digital age, as they were back then. </p>		\n			<a href=\"#\" role=\"button\">\n						Let\'s Meet\n					</a>\n		https://www.youtube.com/watch?v=kB4U67tiQLA		\n			<h3>Try it Yourself</h3>		\n		<p>What makes design so alluring? We believes the answer is designers. That\'s why we have made our entire focus on you - the designer. Your style, your ideas, your creativity. Go on - Try, share and design now!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started\n					</a>\n										<img width=\"776\" height=\"650\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ma.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ma.png 776w, http://evergreenwellness.com/wp-content/uploads/2018/04/ma-300x251.png 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/ma-768x643.png 768w\" sizes=\"(max-width: 776px) 100vw, 776px\" />','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-01 18:00:59','2018-04-01 18:00:59','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(89,1,'2018-04-01 18:07:25','2018-04-01 18:07:25','<p>May you have a good health</p>		\n			<a role=\"button\">\n						join the next tour\n					</a>\n			<h3>Writing, made simple.</h3>		\n		Everyone can write, but not everyone is a writer. What makes the difference is the keen eye for detail and beauty.		\n										<img width=\"1602\" height=\"900\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2.png 1602w, http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2-300x169.png 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2-768x431.png 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2-1024x575.png 1024w\" sizes=\"(max-width: 1602px) 100vw, 1602px\" />											\n			<h3>Hello.</h3>		\n		<p>I love you, won\'t you tell me your name? These immortal words by legendary musician Jim Morrison are still as relevant today, in this digital age, as they were back then. </p>		\n			<a href=\"#\" role=\"button\">\n						Let\'s Meet\n					</a>\n		https://www.youtube.com/watch?v=kB4U67tiQLA		\n			<h3>Try it Yourself</h3>		\n		<p>What makes design so alluring? We believes the answer is designers. That\'s why we have made our entire focus on you - the designer. Your style, your ideas, your creativity. Go on - Try, share and design now!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started\n					</a>\n										<img width=\"776\" height=\"650\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ma.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ma.png 776w, http://evergreenwellness.com/wp-content/uploads/2018/04/ma-300x251.png 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/ma-768x643.png 768w\" sizes=\"(max-width: 776px) 100vw, 776px\" />','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-01 18:07:25','2018-04-01 18:07:25','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(90,1,'2018-04-01 18:09:15','2018-04-01 18:09:15','<p>May you have a good health</p>		\n			<a role=\"button\">\n						join the next tour\n					</a>\n			<h3>Writing, made simple.</h3>		\n		Everyone can write, but not everyone is a writer. What makes the difference is the keen eye for detail and beauty.		\n										<img width=\"1602\" height=\"900\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2.png 1602w, http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2-300x169.png 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2-768x431.png 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/Mackbook2-1024x575.png 1024w\" sizes=\"(max-width: 1602px) 100vw, 1602px\" />											\n			<h3>Hello.</h3>		\n		<p>I love you, won\'t you tell me your name? These immortal words by legendary musician Jim Morrison are still as relevant today, in this digital age, as they were back then. </p>		\n			<a href=\"#\" role=\"button\">\n						Let\'s Meet\n					</a>\n		https://www.youtube.com/watch?v=kB4U67tiQLA		\n			<h3>Try it Yourself</h3>		\n		<p>What makes design so alluring? We believes the answer is designers. That\'s why we have made our entire focus on you - the designer. Your style, your ideas, your creativity. Go on - Try, share and design now!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started\n					</a>\n										<img width=\"776\" height=\"650\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ma.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ma.png 776w, http://evergreenwellness.com/wp-content/uploads/2018/04/ma-300x251.png 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/ma-768x643.png 768w\" sizes=\"(max-width: 776px) 100vw, 776px\" />','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-01 18:09:15','2018-04-01 18:09:15','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(101,1,'2018-04-01 21:24:31','2018-04-01 21:24:31','<h2>Evergreen Wellness Center</h2>		\n			<p>May you have a good health and longevity  ... like the Evergreen</p>		\n		<p> </p><p>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</p>https://youtu.be/RTQGpPwn2BU','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-01 21:24:31','2018-04-01 21:24:31','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(106,1,'2018-04-01 22:59:14','2018-04-01 22:59:14','<h2>Evergreen Wellness Center</h2>		\n			<p>May you have a good health and longevity  ... like the Evergreen</p>		\n		<p> </p><p>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-01 22:59:14','2018-04-01 22:59:14','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(97,1,'2018-04-01 20:56:45','2018-04-01 20:56:45','<h2>Evergreen Wellness Center</h2>		\n			<p>May you have a good health and longevity  ... like the Evergreen</p>		\n		<p> </p><p>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</p>https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.  I could not speak a word. I had difficulty breathing. I could not swallow and was being fed through a tube during part of my stay.  I was in a vegetative state and all the while the western medicine doctors continued to give me more and more medication. </p><p>Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. My husband was told to put me in a nursing home, since I was not able to participate in any therapy in my present condition at the rehab facility.</p><p> </p><p>Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor trained in TCM to examine me.  </p><p> </p><p>On July 20<sup>th</sup> I was moved to a nursing home in my home town.  Four days later, I began acupuncture treatments.  Initially I was transported in a motor home borrowed from a neighbor the first two weeks. (The doctor came out and treated me in the motor home.) Then I was transported in a used ambulance until the middle of September when I could finally sit and ride in a car.  The ride consisted of 120 miles round trip, five days a week for approximately seven months.  Now the good news……….</p><p>Within two weeks…<b>only</b> <b>two short weeks</b>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  It was a joyous time and quite possibly the most significant change of the whole treatment, since Western medicine doctors had told my husband that speech would be one of the last things to be regained.  The progress I was making was absolutely phenomenal!  My treatments consisted of acupuncture, massage, chi gong, and herbs,  </p><p> </p><p>By the end of August, almost three full months following the initial surgery, that glorious day I had longed for and patiently awaited, was finally here!  I was going home!!!!! I was off of almost all the medication, and had the catheter taken out that day.  I was now able to feed myself, brush my teeth, put my makeup on, and my sleep was beginning to improve.  Who would have imagined!  Just a few short weeks ago I was not expected to live. My family and friends could hardly believe their eyes.   </p><p> </p><p>Today, I’m able to speak, sit, stand, eat, dress, bathe, walk with the aid of a quad cane, and even drive the car. I went from bedridden to wheel chair to walker to cane during the course of my treatments.  I am able once again to enjoy life with my husband, children, grandchildren, and family and friends.  </p><p> </p><p>I am a living testament as to what TCM can do for this condition.   It is better than Western medicine for this condition.  It merely consisted of medication that covered up symptoms and pain. Unlike this technique<b> </b>which allows healing from within...the way God intended.  </p><p>  </p><p>I will never forget the miracle that happened through the knowledge and skill of TCM.  For me, it was truly life-saving!  </p>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-01 20:56:45','2018-04-01 20:56:45','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(99,1,'2018-04-01 21:02:04','2018-04-01 21:02:04','<h2>Evergreen Wellness Center</h2>		\n			<p>May you have a good health and longevity  ... like the Evergreen</p>		\n		<p> </p><p>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</p>https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.  I could not speak a word. I had difficulty breathing. I could not swallow and was being fed through a tube during part of my stay.  I was in a vegetative state and all the while the western medicine doctors continued to give me more and more medication. </p><p>Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. My husband was told to put me in a nursing home, since I was not able to participate in any therapy in my present condition at the rehab facility.</p><p> </p><p>Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor trained in TCM to examine me.  </p><p> </p><p>On July 20<sup>th</sup> I was moved to a nursing home in my home town.  Four days later, I began acupuncture treatments.  Initially I was transported in a motor home borrowed from a neighbor the first two weeks. (The doctor came out and treated me in the motor home.) Then I was transported in a used ambulance until the middle of September when I could finally sit and ride in a car.  The ride consisted of 120 miles round trip, five days a week for approximately seven months.  Now the good news……….</p><p>Within two weeks…<b>only</b> <b>two short weeks</b>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  It was a joyous time and quite possibly the most significant change of the whole treatment, since Western medicine doctors had told my husband that speech would be one of the last things to be regained.  The progress I was making was absolutely phenomenal!  My treatments consisted of acupuncture, massage, chi gong, and herbs,  </p><p> </p><p>By the end of August, almost three full months following the initial surgery, that glorious day I had longed for and patiently awaited, was finally here!  I was going home!!!!! I was off of almost all the medication, and had the catheter taken out that day.  I was now able to feed myself, brush my teeth, put my makeup on, and my sleep was beginning to improve.  Who would have imagined!  Just a few short weeks ago I was not expected to live. My family and friends could hardly believe their eyes.   </p><p> </p><p>Today, I’m able to speak, sit, stand, eat, dress, bathe, walk with the aid of a quad cane, and even drive the car. I went from bedridden to wheel chair to walker to cane during the course of my treatments.  I am able once again to enjoy life with my husband, children, grandchildren, and family and friends.  </p><p> </p><p>I am a living testament as to what TCM can do for this condition.   It is better than Western medicine for this condition.  It merely consisted of medication that covered up symptoms and pain. Unlike this technique<b> </b>which allows healing from within...the way God intended.  </p><p>  </p><p>I will never forget the miracle that happened through the knowledge and skill of TCM.  For me, it was truly life-saving!  </p>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-01 21:02:04','2018-04-01 21:02:04','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(103,1,'2018-04-01 22:12:34','2018-04-01 22:12:34','<h2>Evergreen Wellness Center</h2>		\n			<p>May you have a good health and longevity  ... like the Evergreen</p>		\n		<p> </p><p>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</p>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p><p style=\"text-align: center;\"><b>Weight Management -- Breathing yourself thin</b></p><p> You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-01 22:12:34','2018-04-01 22:12:34','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(196,1,'2018-04-02 22:09:44','2018-04-02 22:09:44','<p> </p><p>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-02 22:09:44','2018-04-02 22:09:44','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(105,1,'2018-04-01 22:56:45','2018-04-01 22:56:45','<h2>Evergreen Wellness Center</h2>		\n			<p>May you have a good health and longevity  ... like the Evergreen</p>		\n		<p> </p><p>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-01 22:56:45','2018-04-01 22:56:45','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(117,1,'2018-04-02 00:57:48','2018-04-02 00:57:48','<h2>About Us</h2>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img src=\"http://evergreenwellness.com/wp-content/uploads/elementor/thumbs/IMG_0233-no3vjieagksmnkybptw5m89hiji7uccpzk7zgz3pzk.jpg\" title=\"IMG_0233\" alt=\"IMG_0233\" />											\n		<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img src=\"http://evergreenwellness.com/wp-content/uploads/elementor/thumbs/IMG_0233-no3vjieagksmnkybptw5m89hiji7uccpzk7zgz3pzk.jpg\" title=\"IMG_0233\" alt=\"IMG_0233\" />											\n		<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a title=\"Contact Us\" href=\"https://web.archive.org/web/20161023003731/http://evergreenwellness.com/?page_id=21\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-02 00:57:48','2018-04-02 00:57:48','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(287,1,'2018-04-03 21:27:04','2018-04-03 21:27:04','<p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-03 21:27:04','2018-04-03 21:27:04','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(112,1,'2018-04-01 23:26:32','2018-04-01 23:26:32','<h2>About Us</h2>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>Our Staff</h2>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-01 23:26:32','2018-04-01 23:26:32','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(113,1,'2018-04-01 23:28:42','2018-04-01 23:28:42','<h2>About Us</h2>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-01 23:28:42','2018-04-01 23:28:42','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(116,1,'2018-04-02 00:53:53','2018-04-02 00:53:53','','IMG_0233','','inherit','open','closed','','img_0233','','','2018-04-02 00:53:53','2018-04-02 00:53:53','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0233.jpg',0,'attachment','image/jpeg',0),(119,1,'2018-04-02 01:07:37','2018-04-02 01:07:37','<h2>About Us</h2>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img src=\"http://evergreenwellness.com/wp-content/uploads/elementor/thumbs/IMG_0233-no3vjieagksmnkybptw5m89hiji7uccpzk7zgz3pzk.jpg\" title=\"IMG_0233\" alt=\"IMG_0233\" />											\n		<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img src=\"http://evergreenwellness.com/wp-content/uploads/elementor/thumbs/IMG_0233-no3vjieagksmnkybptw5m89hiji7uccpzk7zgz3pzk.jpg\" title=\"IMG_0233\" alt=\"IMG_0233\" />											\n		<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a title=\"Contact Us\" href=\"https://web.archive.org/web/20161023003731/http://evergreenwellness.com/?page_id=21\" data-wplink-edit=\"true\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-02 01:07:37','2018-04-02 01:07:37','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(124,1,'2018-04-02 01:18:14','2018-04-02 01:18:14','','Services','','inherit','closed','closed','','24-revision-v1','','','2018-04-02 01:18:14','2018-04-02 01:18:14','',24,'http://evergreenwellness.com/24-revision-v1/',0,'revision','',0),(122,1,'2018-04-02 01:14:02','2018-04-02 01:14:02','<img width=\"600\" height=\"580\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/03/wb3.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/03/wb3.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/03/wb3-300x290.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />','Services','','inherit','closed','closed','','24-revision-v1','','','2018-04-02 01:14:02','2018-04-02 01:14:02','',24,'http://evergreenwellness.com/24-revision-v1/',0,'revision','',0),(129,1,'2018-04-02 01:26:59','2018-04-02 01:26:59','<h1>Services</h1>		\n			<h3>Acupuncture     Herbs     Massage     Qigong</h3>','Services','','inherit','closed','closed','','24-revision-v1','','','2018-04-02 01:26:59','2018-04-02 01:26:59','',24,'http://evergreenwellness.com/24-revision-v1/',0,'revision','',0),(143,1,'2018-04-02 02:07:07','2018-04-02 02:07:07','','Acupuncture500','','inherit','open','closed','','acupuncture500-2','','','2018-04-02 02:08:05','2018-04-02 02:08:05','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/Acupuncture500-1.jpg',0,'attachment','image/jpeg',0),(133,1,'2018-04-02 01:45:15','2018-04-02 01:45:15','','11','','inherit','open','closed','','11','','','2018-04-02 01:45:15','2018-04-02 01:45:15','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/11.jpg',0,'attachment','image/jpeg',0),(134,1,'2018-04-02 01:45:58','2018-04-02 01:45:58','','ac3','','inherit','open','closed','','ac3','','','2018-04-02 01:45:58','2018-04-02 01:45:58','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/ac3.jpg',0,'attachment','image/jpeg',0),(135,1,'2018-04-02 01:46:27','2018-04-02 01:46:27','','acupunture','','inherit','open','closed','','acupunture','','','2018-04-02 01:46:27','2018-04-02 01:46:27','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/acupunture.jpg',0,'attachment','image/jpeg',0),(136,1,'2018-04-02 01:51:03','2018-04-02 01:51:03','<h1>Services</h1>		\n			<h3>Acupuncture     Herbs     Massage     Qigong</h3>		\n			<h2>Acupuncture</h2>		\n										<img width=\"300\" height=\"281\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/acupunture.jpg\" alt=\"\" />											\n										<img width=\"400\" height=\"445\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac3.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac3.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/ac3-270x300.jpg 270w\" sizes=\"(max-width: 400px) 100vw, 400px\" />','Services','','inherit','closed','closed','','24-revision-v1','','','2018-04-02 01:51:03','2018-04-02 01:51:03','',24,'http://evergreenwellness.com/24-revision-v1/',0,'revision','',0),(137,1,'2018-04-02 01:52:22','2018-04-02 01:52:22','','ac7','','inherit','open','closed','','ac7','','','2018-04-02 01:52:22','2018-04-02 01:52:22','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg',0,'attachment','image/jpeg',0),(139,1,'2018-04-02 01:54:25','2018-04-02 01:54:25','','Acupuncture500','','inherit','open','closed','','acupuncture500','','','2018-04-02 01:59:31','2018-04-02 01:59:31','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/Acupuncture500.jpg',0,'attachment','image/jpeg',0),(144,1,'2018-04-02 02:10:04','2018-04-02 02:10:04','','acupuncture_500','','inherit','open','closed','','acupuncture_500','','','2018-04-02 02:10:52','2018-04-02 02:10:52','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/acupuncture_500.jpg',0,'attachment','image/jpeg',0),(142,1,'2018-04-02 02:00:59','2018-04-02 02:00:59','','acu','','inherit','open','closed','','acu','','','2018-04-02 02:00:59','2018-04-02 02:00:59','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/acu.png',0,'attachment','image/png',0),(145,1,'2018-04-02 02:33:41','2018-04-02 02:33:41','','mhrf-cpmh17814','mhrf-cpmh17814','inherit','open','closed','','mhrf-cpmh17814','','','2018-04-02 02:33:41','2018-04-02 02:33:41','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg',0,'attachment','image/jpeg',0),(146,1,'2018-04-02 02:34:49','2018-04-02 02:34:49','','mhrf-cpmh17815','mhrf-cpmh17815','inherit','open','closed','','mhrf-cpmh17815','','','2018-04-02 02:34:49','2018-04-02 02:34:49','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg',0,'attachment','image/jpeg',0),(147,1,'2018-04-02 02:35:15','2018-04-02 02:35:15','','mhrf-cpmh17845','mhrf-cpmh17845','inherit','open','closed','','mhrf-cpmh17845','','','2018-04-02 02:35:15','2018-04-02 02:35:15','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg',0,'attachment','image/jpeg',0),(148,1,'2018-04-02 02:36:07','2018-04-02 02:36:07','','jt-ai-020223846','jt-ai-020223846','inherit','open','closed','','jt-ai-020223846','','','2018-04-02 02:36:07','2018-04-02 02:36:07','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg',0,'attachment','image/jpeg',0),(149,1,'2018-04-02 02:50:33','2018-04-02 02:50:33','','zrgrfing-000266','zrgrfing-000266','inherit','open','closed','','zrgrfing-000266','','','2018-04-02 02:50:33','2018-04-02 02:50:33','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg',0,'attachment','image/jpeg',0),(150,1,'2018-04-02 02:51:03','2018-04-02 02:51:03','','zrgrfing-000421','zrgrfing-000421','inherit','open','closed','','zrgrfing-000421','','','2018-04-02 02:51:03','2018-04-02 02:51:03','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg',0,'attachment','image/jpeg',0),(151,1,'2018-04-02 02:52:25','2018-04-02 02:52:25','','east-a21-154586','east-a21-154586','inherit','open','closed','','east-a21-154586','','','2018-04-02 02:52:25','2018-04-02 02:52:25','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg',0,'attachment','image/jpeg',0),(152,1,'2018-04-02 03:01:18','2018-04-02 03:01:18','','taiji','','inherit','open','closed','','taiji','','','2018-04-02 03:01:18','2018-04-02 03:01:18','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg',0,'attachment','image/jpeg',0),(154,1,'2018-04-02 03:11:49','2018-04-02 03:11:49','','th','','inherit','open','closed','','th','','','2018-04-02 03:11:49','2018-04-02 03:11:49','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg',0,'attachment','image/jpeg',0),(297,1,'2018-04-04 00:49:58','2018-04-04 00:49:58','<h1>Acupuncture</h1>\r\n<img src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg\" sizes=\"(max-width: 420px) 100vw, 420px\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg 420w, http://evergreenwellness.com/wp-content/uploads/2018/04/ac7-300x186.jpg 300w\" alt=\"\" width=\"420\" height=\"260\" />\r\n<img src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Acupuncture500-1-e1522634879500.jpg\" alt=\"\" width=\"388\" height=\"260\" />\r\n<img src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/acupuncture_500-e1522635045797.jpg\" alt=\"\" width=\"420\" height=\"269\" />\r\n\r\nIn acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.\r\n<h3>Acupuncture can be used to treat all types of health issues:</h3>\r\nAddictions\r\nAllergies\r\nCosmetic procedures (such as acupuncture for face lifting)\r\nDegenerative diseases due to aging\r\nDepression\r\nMen’s Health\r\nPain Management\r\nStroke Rehabilitation\r\nWeight Loss and Management\r\nWomen’s Health (PMS, Menopause, Low libido, Infertility, etc.)\r\n\r\nWhen you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.\r\n\r\nDuring your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.\r\n\r\nInitial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.\r\n<h1>Herbal Medicine</h1>\r\n<img src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg\" sizes=\"(max-width: 400px) 100vw, 400px\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814-200x300.jpg 200w\" alt=\"\" width=\"400\" height=\"600\" />\r\n<img src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg\" sizes=\"(max-width: 400px) 100vw, 400px\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846-200x300.jpg 200w\" alt=\"\" width=\"400\" height=\"600\" />\r\n<img src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg\" sizes=\"(max-width: 400px) 100vw, 400px\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815-200x300.jpg 200w\" alt=\"\" width=\"400\" height=\"600\" />\r\n<img src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg\" sizes=\"(max-width: 400px) 100vw, 400px\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845-200x300.jpg 200w\" alt=\"\" width=\"400\" height=\"600\" />\r\n\r\nHerbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.\r\n\r\nToday, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.\r\n\r\nEvergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.\r\n\r\n<a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617123300/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an herbal consultation today!\r\n<h1>Massage</h1>\r\n<img src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg\" sizes=\"(max-width: 600px) 100vw, 600px\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nmm-300x201.jpg 300w\" alt=\"\" width=\"600\" height=\"401\" />\r\n<img src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg\" sizes=\"(max-width: 600px) 100vw, 600px\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nm-300x200.jpg 300w\" alt=\"\" width=\"600\" height=\"400\" />\r\n<img src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg\" sizes=\"(max-width: 600px) 100vw, 600px\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nl-300x200.jpg 300w\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong>O</strong><strong>riental Bodywork</strong>\r\n\r\nTuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.\r\n\r\nMassage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:\r\n\r\nReduced stress and anxiety\r\nRelief from muscle tension and joint stiffness\r\nIncreased blood circulation\r\nReduced heart rate\r\nInduces relaxation\r\nReduces back pain\r\nRelieves depression and insomnia\r\nRelieves Myofascial and Fibromyalgia pain\r\nReleives headaches/migraines\r\n\r\nOur massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.\r\n\r\nFor more information about our massage therapists on staff, click <a title=\"Our Staff\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=46\">HERE</a>.\r\n\r\n<a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment with one of our massage therapists.\r\n<h1>Qigong</h1>\r\n<img src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg\" sizes=\"(max-width: 600px) 100vw, 600px\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/taiji-300x200.jpg 300w\" alt=\"\" width=\"600\" height=\"399\" />\r\n<img src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg\" sizes=\"(max-width: 600px) 100vw, 600px\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/th-300x200.jpg 300w\" alt=\"\" width=\"600\" height=\"399\" />\r\n\r\nQigong (pronounced Chee Kung) is a method that combines body movement, breath exercise and mental concentration to exercise the body’s vital energy, or “Qi”. In China, Qigong is widely accepted for it’s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.\r\n\r\nDuring Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body’s immune ability, postpone the aging process and develop the body’s potential.\r\n\r\nQigong has been widely used to treat many chronic diseases and also assist with a variety of issues:\r\n\r\nAnemia\r\nAnxiety/Depression\r\nArthritis\r\nAsthma\r\nBack Pain\r\nBone Density\r\nBody Strength/Flexibility\r\nConcentration/Memory\r\nHearing or Vision Impairment\r\nHypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)\r\nImmune Cell Activity/Dysfunction\r\nKidney Deficiencies\r\nMental Health\r\nOverall Health and Well Being\r\nSexual Dysfunction\r\nTinnitus\r\nWeight Management\r\n\r\nQigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner’s supervision. The second approach, External Qi healing, is a process whereby the Qigong practitioner’s energy is used to stimulate and balance the patient’s Qi so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.\r\n\r\nIf you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.\r\n\r\n<a title=\"Contact Us\" href=\"https://web.archive.org/web/20160503111017/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment for a Qigong consultation.','Services','','inherit','closed','closed','','24-revision-v1','','','2018-04-04 00:49:58','2018-04-04 00:49:58','',24,'http://evergreenwellness.com/24-revision-v1/',0,'revision','',0),(213,1,'2018-04-03 00:15:23','2018-04-03 00:15:23','<h1>Acupuncture</h1>		\n										<img width=\"420\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg 420w, http://evergreenwellness.com/wp-content/uploads/2018/04/ac7-300x186.jpg 300w\" sizes=\"(max-width: 420px) 100vw, 420px\" />											\n										<img width=\"388\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Acupuncture500-1-e1522634879500.jpg\" alt=\"\" />											\n										<img width=\"420\" height=\"269\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/acupuncture_500-e1522635045797.jpg\" alt=\"\" />											\n		<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.</p><h3>Acupuncture can be used to treat all types of health issues:</h3><p>Addictions<br /> Allergies<br /> Cosmetic procedures (such as acupuncture for face lifting)<br /> Degenerative diseases due to aging<br /> Depression<br /> Men’s Health<br /> Pain Management<br /> Stroke Rehabilitation<br /> Weight Loss and Management<br /> Women’s Health (PMS, Menopause, Low libido, Infertility, etc.)</p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.</p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.</p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.</p>		\n			<h1>Herbal Medicine</h1>		\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.</p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.</p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617123300/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an herbal consultation today!</p> 		\n			<h1>Massage</h1>		\n										<img width=\"600\" height=\"401\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nmm-300x201.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nm-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nl-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		<p><strong>O</strong><strong>riental Bodywork</strong></p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.</p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:</p><p>Reduced stress and anxiety<br /> Relief from muscle tension and joint stiffness<br /> Increased blood circulation<br /> Reduced heart rate<br /> Induces relaxation<br /> Reduces back pain<br /> Relieves depression and insomnia<br /> Relieves Myofascial and Fibromyalgia pain<br /> Releives headaches/migraines</p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.</p><p>For more information about our massage therapists on staff, click <a title=\"Our Staff\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=46\">HERE</a>.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment with one of our massage therapists.</p>		\n			<h1>Qigong</h1>		\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/taiji-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/th-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		 <p>Qigong (pronounced Chee Kung) is a method that combines body movement, breath exercise and mental concentration to exercise the body’s vital energy, or “Qi”. In China, Qigong is widely accepted for it’s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.</p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body’s immune ability, postpone the aging process and develop the body’s potential.</p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:</p><p>Anemia<br /> Anxiety/Depression<br /> Arthritis<br /> Asthma<br /> Back Pain<br /> Bone Density<br /> Body Strength/Flexibility<br /> Concentration/Memory<br /> Hearing or Vision Impairment<br /> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br /> Immune Cell Activity/Dysfunction<br /> Kidney Deficiencies<br /> Mental Health<br /> Overall Health and Well Being<br /> Sexual Dysfunction<br /> Tinnitus<br /> Weight Management</p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner’s supervision. The second approach, External Qi healing, is a process whereby the Qigong practitioner’s energy is used to stimulate and balance the patient’s Qi so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.</p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160503111017/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment for a Qigong consultation.</p> ','Services','','inherit','closed','closed','','24-revision-v1','','','2018-04-03 00:15:23','2018-04-03 00:15:23','',24,'http://evergreenwellness.com/24-revision-v1/',0,'revision','',0),(155,1,'2018-04-02 03:15:12','2018-04-02 03:15:12','<h1>Services</h1>		\n			<h3>Acupuncture     Herbs     Massage     Qigong</h3>		\n			<h1>Acupuncture</h1>		\n										<img width=\"420\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg 420w, http://evergreenwellness.com/wp-content/uploads/2018/04/ac7-300x186.jpg 300w\" sizes=\"(max-width: 420px) 100vw, 420px\" />											\n										<img width=\"388\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Acupuncture500-1-e1522634879500.jpg\" alt=\"\" />											\n										<img width=\"420\" height=\"269\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/acupuncture_500-e1522635045797.jpg\" alt=\"\" />											\n		<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.</p><h3>Acupuncture can be used to treat all types of health issues:</h3><p>Addictions<br /> Allergies<br /> Cosmetic procedures (such as acupuncture for face lifting)<br /> Degenerative diseases due to aging<br /> Depression<br /> Men’s Health<br /> Pain Management<br /> Stroke Rehabilitation<br /> Weight Loss and Management<br /> Women’s Health (PMS, Menopause, Low libido, Infertility, etc.)</p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.</p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.</p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.</p>		\n			<h1>Herbal Medicine</h1>		\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.</p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.</p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617123300/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an herbal consultation today!</p> 		\n			<h1>Massage</h1>		\n										<img width=\"600\" height=\"401\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nmm-300x201.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nm-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nl-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		<p><strong>O</strong><strong>riental Bodywork</strong></p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.</p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:</p><p>Reduced stress and anxiety<br /> Relief from muscle tension and joint stiffness<br /> Increased blood circulation<br /> Reduced heart rate<br /> Induces relaxation<br /> Reduces back pain<br /> Relieves depression and insomnia<br /> Relieves Myofascial and Fibromyalgia pain<br /> Releives headaches/migraines</p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.</p><p>For more information about our massage therapists on staff, click <a title=\"Our Staff\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=46\">HERE</a>.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment with one of our massage therapists.</p>		\n			<h1>Qigong</h1>		\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/taiji-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/th-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		 <p>Qigong (pronounced Chee Kung) is a method that combines body movement, breath exercise and mental concentration to exercise the body’s vital energy, or “Qi”. In China, Qigong is widely accepted for it’s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.</p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body’s immune ability, postpone the aging process and develop the body’s potential.</p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:</p><p>Anemia<br /> Anxiety/Depression<br /> Arthritis<br /> Asthma<br /> Back Pain<br /> Bone Density<br /> Body Strength/Flexibility<br /> Concentration/Memory<br /> Hearing or Vision Impairment<br /> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br /> Immune Cell Activity/Dysfunction<br /> Kidney Deficiencies<br /> Mental Health<br /> Overall Health and Well Being<br /> Sexual Dysfunction<br /> Tinnitus<br /> Weight Management</p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner’s supervision. The second approach, External Qi healing, is a process whereby the Qigong practitioner’s energy is used to stimulate and balance the patient’s Qi so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.</p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160503111017/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment for a Qigong consultation.</p> ','Services','','inherit','closed','closed','','24-revision-v1','','','2018-04-02 03:15:12','2018-04-02 03:15:12','',24,'http://evergreenwellness.com/24-revision-v1/',0,'revision','',0),(159,1,'2018-04-02 03:31:29','2018-04-02 03:31:29','<p style=\"text-align: center;\">Knowledge Base</p>		\n			<h1>What’s being treated?</h1>		\n										<img width=\"686\" height=\"332\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg 686w, http://evergreenwellness.com/wp-content/uploads/2018/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />','Knowledge Base','','inherit','closed','closed','','25-revision-v1','','','2018-04-02 03:31:29','2018-04-02 03:31:29','',25,'http://evergreenwellness.com/25-revision-v1/',0,'revision','',0),(158,1,'2018-04-02 03:31:06','2018-04-02 03:31:06','','treatment','','inherit','open','closed','','treatment','','','2018-04-02 03:31:06','2018-04-02 03:31:06','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg',0,'attachment','image/jpeg',0),(161,1,'2018-04-02 03:50:49','2018-04-02 03:50:49','','QA_ChineseMedicine','','inherit','open','closed','','qa_chinesemedicine','','','2018-04-02 03:50:49','2018-04-02 03:50:49','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/QA_ChineseMedicine.pdf',0,'attachment','application/pdf',0),(162,1,'2018-04-02 04:10:52','2018-04-02 04:10:52','<p style=\"text-align: center;\">Knowledge Base</p>		\n			<h1>What’s being treated?</h1>		\n										<img width=\"686\" height=\"332\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg 686w, http://evergreenwellness.com/wp-content/uploads/2018/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h1>Q & A on Traditional Chinese Medicine</h1>		\n			<h1>Articles</h1>','Knowledge Base','','inherit','closed','closed','','25-revision-v1','','','2018-04-02 04:10:52','2018-04-02 04:10:52','',25,'http://evergreenwellness.com/25-revision-v1/',0,'revision','',0),(167,1,'2018-04-02 04:21:11','2018-04-02 04:21:11','<h2>contact us</h2>		\n		<p>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly</p>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-02 04:21:11','2018-04-02 04:21:11','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(169,1,'2018-04-02 04:24:44','2018-04-02 04:24:44','<h2>contact us</h2>		\n		<p>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly</p>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-02 04:24:44','2018-04-02 04:24:44','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(171,1,'2018-04-02 04:42:21','2018-04-02 04:42:21','<h1>contact us</h1>		\n		<p>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly</p>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-02 04:42:21','2018-04-02 04:42:21','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(176,1,'2018-04-02 05:06:52','2018-04-02 05:06:52','<h1>contact us</h1>		\n		<p>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly</p>		\n			<h3>Contact Us</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-02 05:06:52','2018-04-02 05:06:52','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(174,1,'2018-04-02 05:00:28','2018-04-02 05:00:28','<h1>contact us</h1>		\n		<p>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly</p>		\n			<h3>Office location</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"London Eye, London, United Kingdom\"></iframe>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-02 05:00:28','2018-04-02 05:00:28','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(177,1,'2018-04-02 05:07:36','2018-04-02 05:07:36','<label> Your Name (required)\r\n    [text* your-name] </label>\r\n\r\n<label> Your Email (required)\r\n    [email* your-email] </label>\r\n\r\n<label> Subject\r\n    [text your-subject] </label>\r\n\r\n<label> Your Message\r\n    [textarea your-message] </label>\r\n\r\n[submit \"Send\"]\n1\n\"[your-subject]\"\n[your-name] <wordpress@evergreenwellness.com>\newc316@gmail.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on  (http://evergreenwellness.com)\nReply-To: [your-email]\n\n\n\n\n\"[your-subject]\"\n<wordpress@evergreenwellness.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on  (http://evergreenwellness.com)\nReply-To: qzgau@yahoo.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2018-04-02 05:15:04','2018-04-02 05:15:04','',0,'http://evergreenwellness.com/?post_type=wpcf7_contact_form&#038;p=177',0,'wpcf7_contact_form','',0),(197,1,'2018-04-02 23:10:16','2018-04-02 23:10:16','<h3>Contact Us</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n		[contact-form-7 id=\"177\" title=\"Contact form 1\"]		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-02 23:10:16','2018-04-02 23:10:16','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(178,1,'2018-04-02 05:17:23','2018-04-02 05:17:23','<h1>contact us</h1>		\n		<p>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly</p>		\n			<h3>Contact Us</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n		[contact-form-7 id=\"177\" title=\"Contact form 1\"]		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-02 05:17:23','2018-04-02 05:17:23','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(179,1,'2018-04-02 05:20:18','2018-04-02 05:20:18','<h1>contact us</h1>		\n		<p>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly</p>		\n			<h3>Contact Us</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n		[contact-form-7 id=\"177\" title=\"Contact form 1\"]		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-02 05:20:18','2018-04-02 05:20:18','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(214,1,'2018-04-03 00:15:58','2018-04-03 00:15:58','<h1>What’s being treated?</h1>		\n										<img width=\"686\" height=\"332\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg 686w, http://evergreenwellness.com/wp-content/uploads/2018/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h1>Q & A on Traditional Chinese Medicine</h1>		\n		<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world’s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.</p><p>Q. Isn’t Traditional Chinese Medicine just a system of folk healing?</p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.</p><p><br />Q. How does Traditional Chinese Medicine work?</p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body’s healthy or righteous energy and attacking any unhealthy or negative energy. </p><p>Q. How does a TCM practitioner determine what is out of balance?</p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient’s face, body, and especially their tongue and its coating. The third is listening to the patient’s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.</p><p><br />Q. How is this rebalancing accomplished?</p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.</p><p><br />Q. Is Traditional Chinese Medicine safe?</p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.</p>		\n			<h1>Articles</h1>		\n		<p>There is a plethora of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.</p><p><a title=\"Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=303\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</a></p><p><a title=\"Post-Stroke Rehabilitation\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=291\">Post-Stroke Rehabilitation</a></p><p><a title=\"Stroke Rehabilitation and Traditional Chinese Medicine\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=294\">Stroke Rehabilitation and Traditional Chinese Medicine</a></p><p><a title=\"TCM and Heart Diseases\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=297\">TCM and Heart Diseases</a></p><p><a title=\"Traditional Chinese Medicine and Infertility\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=289\">Traditional Chinese Medicine and Infertility</a></p>','Knowledge Base','','inherit','closed','closed','','25-revision-v1','','','2018-04-03 00:15:58','2018-04-03 00:15:58','',25,'http://evergreenwellness.com/25-revision-v1/',0,'revision','',0),(182,1,'2018-04-02 14:40:14','2018-04-02 14:40:14','<p style=\"text-align: center;\">Knowledge Base</p>		\n			<h1>What’s being treated?</h1>		\n										<img width=\"686\" height=\"332\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg 686w, http://evergreenwellness.com/wp-content/uploads/2018/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h1>Q & A on Traditional Chinese Medicine</h1>		\n		<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world’s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.</p><p>Q. Isn’t Traditional Chinese Medicine just a system of folk healing?</p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.</p><p><br />Q. How does Traditional Chinese Medicine work?</p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body’s healthy or righteous energy and attacking any unhealthy or negative energy. </p><p>Q. How does a TCM practitioner determine what is out of balance?</p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient’s face, body, and especially their tongue and its coating. The third is listening to the patient’s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.</p><p><br />Q. How is this rebalancing accomplished?</p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.</p><p><br />Q. Is Traditional Chinese Medicine safe?</p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.</p>		\n			<h1>Articles</h1>		\n		<p>There is a plethora of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.</p><p><a title=\"Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=303\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</a></p><p><a title=\"Post-Stroke Rehabilitation\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=291\">Post-Stroke Rehabilitation</a></p><p><a title=\"Stroke Rehabilitation and Traditional Chinese Medicine\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=294\">Stroke Rehabilitation and Traditional Chinese Medicine</a></p><p><a title=\"TCM and Heart Diseases\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=297\">TCM and Heart Diseases</a></p><p><a title=\"Traditional Chinese Medicine and Infertility\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=289\">Traditional Chinese Medicine and Infertility</a></p>','Knowledge Base','','inherit','closed','closed','','25-revision-v1','','','2018-04-02 14:40:14','2018-04-02 14:40:14','',25,'http://evergreenwellness.com/25-revision-v1/',0,'revision','',0),(183,1,'2018-04-02 15:00:45','2018-04-02 15:00:45','<p><strong>Traditional Chinese Medicine and Infertility</strong></p><p>Traditional Chinese Medicine (TCM) has been developing for over 2000 years.  Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts through the ages have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>In TCM the holistic concept includes integrity of the body and its relationship with the natural world.  The body is an organic whole and its functions are interconnected.  The meridian system, which allows vital energy to flow, links the body as a whole.  The TCM practitioner will treat patients with therapies from four main categories:  Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese Massage and Qigong (energy healing). </p><p>TCM has proven an effective alternative to addressing numerous reproductive issues including: PMS, amenorrhea, endometriosis, blocked fallopian tubes, immune system incongruities, and infertility related hormonal imbalances.  Presently, TCM in both China and America has proven to be an effective course of treatment when practiced in conjunction with standard Western medical techniques. </p><p> </p><p><strong>Treating Infertility</strong></p><p>There are no guarantees of fertility when opting to use TCM as there are no guarantees with Western medical options.  Patients that have functional rather than structural reason for infertility are the most successful candidates for the use of TCM techniques.  For example, a woman with damaged fallopian tubes would be experiencing structural infertility while a woman with nonfunctioning ovaries has a functional challenge with fertility.</p><p>In general, TCM treatment of fertility issues would include a regimen of acupuncture, herbal treatments and possibly physical exercise or massage.  This approach will many times increase blood flow to the uterus and stimulate ovulation in women and can help increase sperm motility in men.  Additionally, most contemporary medical treatments involve the use of numerous drugs.  The use of acupuncture and herbal regimens could effectively reduce the prescription requirements throughout the treatment course.</p><p>According to a German study published by the National Library of Medicine in April 2002 acupuncture may also increase a couple’s chance of conception when used in conjunction with traditional Western treatments such as in vitro fertilization (IVF).  In this study, 160 participants were divided into 2 groups each receiving standard IVF procedures.  One of the groups received TCM treatments before and after implantation.  The standard in-vitro group had a 26.3 percent pregnancy rate while the TCM group showed a 42.5 percent pregnancy rate.</p><p>There are some distinct advantages to the integration of TCM when dealing with fertility challenges:</p><ul><li>TCM sees a personal as an integral mind/body organism and seeks to stimulate the body’s natural healing potential by treating root causes.</li><li>TCM used in the treatment of infertility minimizes undesired side effects and accumulated toxicity from invasive procedures and drug therapies.</li><li>Traditional Chinese Medicine may be sued to strengthen and balance one’s general health so that IVF, GIFT, ZIFT, ICSI, AHT and TET procedures are more effective. The TCM patient  derives general health benefits and endocrine balancing from specific acupuncture and herbal regimes.  Pregnancy becomes easier to achieve and postpartum recuperation happens faster. </li><li>The widespread use of TCM suggests that it is an effective medical health care system that can be successfully integrated with traditional Western medical techniques.</li></ul><p> </p><p><strong>Things To Consider When Integrating Traditional Chinese Medicine Into Your Fertility Treatments</strong></p><ul><li>Timing and consistency of treatment is of primary importance. Basic foundation treatments are required to regulate the body’s systems regardless of age.  For men and women alike, it may take 3-6 months to heal individual segments of the reproductive cycle. </li></ul><p>In general, men and women alike can benefit from concentrated foundational treatment event if they are not trying to conceive to balance the body’s systems.</p><ul><li>Age, medical history and lifestyle are important factors regardless of age. If a couple is in their 40’s and has had numerous fertility drug cycles, extensive use of birth control pills, a history of smoking, drinking drug abuse, medical reproductive issues such as endometriosis, sperm antibodies or a host of other variables, it will take longer to balance the reproductive system.</li></ul><p>A couple should allow a minimum of 6-9 months before really expecting to evaluate results.  There is not short cut to conception but in many cases, “turning back the clock” is possible.</p><ul><li>Lifestyle changes may be appropriate. Men and women alike should be in a high state of wellness from the TCM point of view.  Both should be normally active and have a relatively low stress level, positive energy and an abundant lifestyle.  The important point is that all aspects of ones life should be considered to assure you make the most of your treatment and pregnancy.</li><li>Correct diet and exercise habits are important for both the pre-conceptive mother and father. Based on individual assessments there may be specific physical exercises and or treatments that the TCM practitioner recommends to help generate the right environment necessary for conception.</li><li>The combination of conventional reproductive technologies and those associated with Traditional Chinese Medicine requires that the patient facilitate open and accurate communication between all parties. TCM therapies work differently the traditional western medicines.  The patients and practitioners need to have a full understanding of all activities to assure that each patient is achieving the optimum result from all treatments.</li><li>When choosing a TCM practitioner it is important to substantiate that individual is suitably qualified to do fertility work. Communication, experience and skill are requirements.  Entry level TCM practitioners will have the skill to assist with the removal of pre-exiting conditions that may be contributing to infertility.  However, if either reproductive function or biological age of the endocrine system is contributing to the condition than specific skills and experience is necessary.</li></ul><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.  Issues with fertility and other health concerns are directly associated with an imbalance of the body’s energy.  Through a holistic approach TCM works with the patient to restore and maintain each individual’s optimum state of health.  As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.  Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.</p><p>TCM treatments for infertility and other conditions is provided by Dr. Qizhi Gao at the Evergreen Wellness Center.  You can contact the Evergreen Wellness Center at 316-691-8811 for an appointments or additional information. </p>','infertility','','publish','closed','closed','','infertility','','','2018-04-02 18:19:05','2018-04-02 18:19:05','',0,'http://evergreenwellness.com/?page_id=183',0,'page','',0),(184,1,'2018-04-02 15:00:45','2018-04-02 15:00:45','<strong>Things To Consider When Integrating Traditional Chinese Medicine Into Your Fertility Treatments</strong>\r\n<ul>\r\n 	<li>Timing and consistency of treatment is of primary importance. Basic foundation treatments are required to regulate the body’s systems regardless of age.  For men and women alike, it may take 3-6 months to heal individual segments of the reproductive cycle.</li>\r\n</ul>\r\nIn general, men and women alike can benefit from concentrated foundational treatment event if they are not trying to conceive to balance the body’s systems.\r\n<ul>\r\n 	<li>Age, medical history and lifestyle are important factors regardless of age. If a couple is in their 40’s and has had numerous fertility drug cycles, extensive use of birth control pills, a history of smoking, drinking drug abuse, medical reproductive issues such as endometriosis, sperm antibodies or a host of other variables, it will take longer to balance the reproductive system.</li>\r\n</ul>\r\nA couple should allow a minimum of 6-9 months before really expecting to evaluate results.  There is not short cut to conception but in many cases, “turning back the clock” is possible.\r\n<ul>\r\n 	<li>Lifestyle changes may be appropriate. Men and women alike should be in a high state of wellness from the TCM point of view.  Both should be normally active and have a relatively low stress level, positive energy and an abundant lifestyle.  The important point is that all aspects of ones life should be considered to assure you make the most of your treatment and pregnancy.</li>\r\n 	<li>Correct diet and exercise habits are important for both the pre-conceptive mother and father. Based on individual assessments there may be specific physical exercises and or treatments that the TCM practitioner recommends to help generate the right environment necessary for conception.</li>\r\n 	<li>The combination of conventional reproductive technologies and those associated with Traditional Chinese Medicine requires that the patient facilitate open and accurate communication between all parties. TCM therapies work differently the traditional western medicines.  The patients and practitioners need to have a full understanding of all activities to assure that each patient is achieving the optimum result from all treatments.</li>\r\n 	<li>When choosing a TCM practitioner it is important to substantiate that individual is suitably qualified to do fertility work. Communication, experience and skill are requirements.  Entry level TCM practitioners will have the skill to assist with the removal of pre-exiting conditions that may be contributing to infertility.  However, if either reproductive function or biological age of the endocrine system is contributing to the condition than specific skills and experience is necessary.</li>\r\n</ul>\r\nTraditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.  Issues with fertility and other health concerns are directly associated with an imbalance of the body’s energy.  Through a holistic approach TCM works with the patient to restore and maintain each individual’s optimum state of health.  As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.  Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.\r\n\r\nTCM treatments for infertility and other conditions is provided by Dr. Qizhi Gao at the Evergreen Wellness Center.  You can contact the Evergreen Wellness Center at 316-691-8811 for an appointments or additional information.','infertility','','inherit','closed','closed','','183-revision-v1','','','2018-04-02 15:00:45','2018-04-02 15:00:45','',183,'http://evergreenwellness.com/183-revision-v1/',0,'revision','',0),(189,1,'2018-04-02 15:06:12','2018-04-02 15:06:12','<strong>Things To Consider When Integrating Traditional Chinese Medicine Into Your Fertility Treatments</strong>\n<ul>\n 	<li>Timing and consistency of treatment is of primary importance. Basic foundation treatments are required to regulate the body’s systems regardless of age.  For men and women alike, it may take 3-6 months to heal individual segments of the reproductive cycle.</li>\n</ul>\nIn general, men and women alike can benefit from concentrated foundational treatment event if they are not trying to conceive to balance the body’s systems.\n<ul>\n 	<li>Age, medical history and lifestyle are important factors regardless of age. If a couple is in their 40’s and has had numerous fertility drug cycles, extensive use of birth control pills, a history of smoking, drinking drug abuse, medical reproductive issues such as endometriosis, sperm antibodies or a host of other variables, it will take longer to balance the reproductive system.</li>\n</ul>\nA couple should allow a minimum of 6-9 months before really expecting to evaluate results.  There is not short cut to conception but in many cases, “turning back the clock” is possible.\n<ul>\n 	<li>Lifestyle changes may be appropriate. Men and women alike should be in a high state of wellness from the TCM point of view.  Both should be normally active and have a relatively low stress level, positive energy and an abundant lifestyle.  The important point is that all aspects of ones life should be considered to assure you make the most of your treatment and pregnancy.</li>\n 	<li>Correct diet and exercise habits are important for both the pre-conceptive mother and father. Based on individual assessments there may be specific physical exercises and or treatments that the TCM practitioner recommends to help generate the right environment necessary for conception.</li>\n 	<li>The combination of conventional reproductive technologies and those associated with Traditional Chinese Medicine requires that the patient facilitate open and accurate communication between all parties. TCM therapies work differently the traditional western medicines.  The patients and practitioners need to have a full understanding of all activities to assure that each patient is achieving the optimum result from all treatments.</li>\n 	<li>When choosing a TCM practitioner it is important to substantiate that individual is suitably qualified to do fertility work. Communication, experience and skill are requirements.  Entry level TCM practitioners will have the skill to assist with the removal of pre-exiting conditions that may be contributing to infertility.  However, if either reproductive function or biological age of the endocrine system is contributing to the condition than specific skills and experience is necessary.</li>\n</ul>\nTraditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.  Issues with fertility and other health concerns are directly associated with an imbalance of the body’s energy.  Through a holistic approach TCM works with the patient to restore and maintain each individual’s optimum state of health.  As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.  Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.\nTCM treatments for infertility and other conditions is provided by Dr. Qizhi Gao at the Evergreen Wellness Center.  You can contact the Evergreen Wellness Center at 316-691-8811 for an appointments or additional information.','infertility','','inherit','closed','closed','','183-revision-v1','','','2018-04-02 15:06:12','2018-04-02 15:06:12','',183,'http://evergreenwellness.com/183-revision-v1/',0,'revision','',0),(188,1,'2018-04-02 15:05:43','2018-04-02 15:05:43','','bg','','inherit','open','closed','','bg','','','2018-04-02 15:05:43','2018-04-02 15:05:43','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/bg.jpg',0,'attachment','image/jpeg',0),(190,1,'2018-04-02 18:19:05','2018-04-02 18:19:05','<p><strong>Traditional Chinese Medicine and Infertility</strong></p><p>Traditional Chinese Medicine (TCM) has been developing for over 2000 years.  Guided by holistic concepts and based on clinical observation and experience, Chinese medical experts through the ages have developed a unique system of health care with its own characteristics for the prevention and treatment of disease.</p><p>In TCM the holistic concept includes integrity of the body and its relationship with the natural world.  The body is an organic whole and its functions are interconnected.  The meridian system, which allows vital energy to flow, links the body as a whole.  The TCM practitioner will treat patients with therapies from four main categories:  Acupuncture and Moxibustion, Herbal Medicine, Tuina Anmo (Chinese Massage and Qigong (energy healing). </p><p>TCM has proven an effective alternative to addressing numerous reproductive issues including: PMS, amenorrhea, endometriosis, blocked fallopian tubes, immune system incongruities, and infertility related hormonal imbalances.  Presently, TCM in both China and America has proven to be an effective course of treatment when practiced in conjunction with standard Western medical techniques. </p><p> </p><p><strong>Treating Infertility</strong></p><p>There are no guarantees of fertility when opting to use TCM as there are no guarantees with Western medical options.  Patients that have functional rather than structural reason for infertility are the most successful candidates for the use of TCM techniques.  For example, a woman with damaged fallopian tubes would be experiencing structural infertility while a woman with nonfunctioning ovaries has a functional challenge with fertility.</p><p>In general, TCM treatment of fertility issues would include a regimen of acupuncture, herbal treatments and possibly physical exercise or massage.  This approach will many times increase blood flow to the uterus and stimulate ovulation in women and can help increase sperm motility in men.  Additionally, most contemporary medical treatments involve the use of numerous drugs.  The use of acupuncture and herbal regimens could effectively reduce the prescription requirements throughout the treatment course.</p><p>According to a German study published by the National Library of Medicine in April 2002 acupuncture may also increase a couple’s chance of conception when used in conjunction with traditional Western treatments such as in vitro fertilization (IVF).  In this study, 160 participants were divided into 2 groups each receiving standard IVF procedures.  One of the groups received TCM treatments before and after implantation.  The standard in-vitro group had a 26.3 percent pregnancy rate while the TCM group showed a 42.5 percent pregnancy rate.</p><p>There are some distinct advantages to the integration of TCM when dealing with fertility challenges:</p><ul><li>TCM sees a personal as an integral mind/body organism and seeks to stimulate the body’s natural healing potential by treating root causes.</li><li>TCM used in the treatment of infertility minimizes undesired side effects and accumulated toxicity from invasive procedures and drug therapies.</li><li>Traditional Chinese Medicine may be sued to strengthen and balance one’s general health so that IVF, GIFT, ZIFT, ICSI, AHT and TET procedures are more effective. The TCM patient  derives general health benefits and endocrine balancing from specific acupuncture and herbal regimes.  Pregnancy becomes easier to achieve and postpartum recuperation happens faster. </li><li>The widespread use of TCM suggests that it is an effective medical health care system that can be successfully integrated with traditional Western medical techniques.</li></ul><p> </p><p><strong>Things To Consider When Integrating Traditional Chinese Medicine Into Your Fertility Treatments</strong></p><ul><li>Timing and consistency of treatment is of primary importance. Basic foundation treatments are required to regulate the body’s systems regardless of age.  For men and women alike, it may take 3-6 months to heal individual segments of the reproductive cycle. </li></ul><p>In general, men and women alike can benefit from concentrated foundational treatment event if they are not trying to conceive to balance the body’s systems.</p><ul><li>Age, medical history and lifestyle are important factors regardless of age. If a couple is in their 40’s and has had numerous fertility drug cycles, extensive use of birth control pills, a history of smoking, drinking drug abuse, medical reproductive issues such as endometriosis, sperm antibodies or a host of other variables, it will take longer to balance the reproductive system.</li></ul><p>A couple should allow a minimum of 6-9 months before really expecting to evaluate results.  There is not short cut to conception but in many cases, “turning back the clock” is possible.</p><ul><li>Lifestyle changes may be appropriate. Men and women alike should be in a high state of wellness from the TCM point of view.  Both should be normally active and have a relatively low stress level, positive energy and an abundant lifestyle.  The important point is that all aspects of ones life should be considered to assure you make the most of your treatment and pregnancy.</li><li>Correct diet and exercise habits are important for both the pre-conceptive mother and father. Based on individual assessments there may be specific physical exercises and or treatments that the TCM practitioner recommends to help generate the right environment necessary for conception.</li><li>The combination of conventional reproductive technologies and those associated with Traditional Chinese Medicine requires that the patient facilitate open and accurate communication between all parties. TCM therapies work differently the traditional western medicines.  The patients and practitioners need to have a full understanding of all activities to assure that each patient is achieving the optimum result from all treatments.</li><li>When choosing a TCM practitioner it is important to substantiate that individual is suitably qualified to do fertility work. Communication, experience and skill are requirements.  Entry level TCM practitioners will have the skill to assist with the removal of pre-exiting conditions that may be contributing to infertility.  However, if either reproductive function or biological age of the endocrine system is contributing to the condition than specific skills and experience is necessary.</li></ul><p>Traditional Chinese Medicine identifies more than 2000 acupuncture points connected to pathways called meridians that conduct vital energy throughout the body.  Issues with fertility and other health concerns are directly associated with an imbalance of the body’s energy.  Through a holistic approach TCM works with the patient to restore and maintain each individual’s optimum state of health.  As the public becomes more aware of alternative and drug free treatment options TCM has much to offer.  Many patients experience treatments that provided long lasting and effective remedies to what have been in the past chronic conditions.</p><p>TCM treatments for infertility and other conditions is provided by Dr. Qizhi Gao at the Evergreen Wellness Center.  You can contact the Evergreen Wellness Center at 316-691-8811 for an appointments or additional information. </p>','infertility','','inherit','closed','closed','','183-revision-v1','','','2018-04-02 18:19:05','2018-04-02 18:19:05','',183,'http://evergreenwellness.com/183-revision-v1/',0,'revision','',0),(194,1,'2018-04-02 18:27:17','2018-04-02 18:27:17','<img width=\"600\" height=\"580\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/03/wb3.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/03/wb3.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/03/wb3-300x290.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />','infertility','','inherit','closed','closed','','183-autosave-v1','','','2018-04-02 18:30:01','2018-04-02 18:30:01','',183,'http://evergreenwellness.com/183-autosave-v1/',0,'revision','',0),(202,1,'2018-04-02 23:33:32','2018-04-02 23:33:32','','cropped-wb1.jpg','','inherit','open','closed','','cropped-wb1-jpg','','','2018-04-02 23:33:32','2018-04-02 23:33:32','',0,'http://evergreenwellness.com/wp-content/uploads/2018/03/cropped-wb1.jpg',0,'attachment','image/jpeg',0),(227,1,'2018-04-03 18:04:08','2018-04-03 18:04:08','','bamboo-454-2','','inherit','open','closed','','bamboo-454-2','','','2018-04-03 18:04:08','2018-04-03 18:04:08','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/bamboo-454-2.jpg',0,'attachment','image/jpeg',0),(212,1,'2018-04-03 00:13:50','2018-04-03 00:13:50','<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img src=\"http://evergreenwellness.com/wp-content/uploads/elementor/thumbs/IMG_0233-no3vjieagksmnkybptw5m89hiji7uccpzk7zgz3pzk.jpg\" title=\"IMG_0233\" alt=\"IMG_0233\" />											\n		<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img src=\"http://evergreenwellness.com/wp-content/uploads/elementor/thumbs/IMG_0233-no3vjieagksmnkybptw5m89hiji7uccpzk7zgz3pzk.jpg\" title=\"IMG_0233\" alt=\"IMG_0233\" />											\n		<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a title=\"Contact Us\" href=\"https://web.archive.org/web/20161023003731/http://evergreenwellness.com/?page_id=21\" data-wplink-edit=\"true\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-03 00:13:50','2018-04-03 00:13:50','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(300,1,'2018-04-04 01:37:31','2018-04-04 01:37:31','','cropped-11-1.jpg','','inherit','open','closed','','cropped-11-1-jpg','','','2018-04-04 01:37:31','2018-04-04 01:37:31','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/cropped-11-1.jpg',0,'attachment','image/jpeg',0),(302,1,'2018-04-04 01:46:51','2018-04-04 01:46:51','<h2>Visit our restaurants across the UK</h2>		\n		<p>Choose from any of our six premium locations, and enjoy top quality dishes prepared by our professional chefs to please your palate.</p>','K3 – Plain Header Text','','publish','closed','closed','','k3-plain-header-text','','','2018-04-04 01:46:51','2018-04-04 01:46:51','',0,'http://evergreenwellness.com/?elementor_library=k3-plain-header-text',0,'elementor_library','',0),(303,1,'2018-04-04 01:46:51','2018-04-04 01:46:51','<h2>Visit our restaurants across the UK</h2>		\n		<p>Choose from any of our six premium locations, and enjoy top quality dishes prepared by our professional chefs to please your palate.</p>','K3 – Plain Header Text','','inherit','closed','closed','','302-revision-v1','','','2018-04-04 01:46:51','2018-04-04 01:46:51','',302,'http://evergreenwellness.com/302-revision-v1/',0,'revision','',0),(305,1,'2018-04-04 01:50:42','2018-04-04 01:50:42','<h2>Evergreen Wellness Center</h2>		\n		<p>.</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 01:50:42','2018-04-04 01:50:42','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(307,1,'2018-04-04 01:56:49','2018-04-04 01:56:49','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the Evergreen.</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 01:56:49','2018-04-04 01:56:49','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(311,1,'2018-04-04 02:17:51','2018-04-04 02:17:51','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the Evergreen.</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 02:17:51','2018-04-04 02:17:51','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(312,1,'2018-04-04 02:20:50','2018-04-04 02:20:50','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the Evergreen.</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 02:20:50','2018-04-04 02:20:50','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(313,1,'2018-04-04 02:21:27','2018-04-04 02:21:27','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the Evergreen.</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 02:21:27','2018-04-04 02:21:27','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(314,1,'2018-04-04 02:22:07','2018-04-04 02:22:07','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the Evergreen.</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 02:22:07','2018-04-04 02:22:07','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(315,1,'2018-04-04 02:22:52','2018-04-04 02:22:52','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the Evergreen.</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 02:22:52','2018-04-04 02:22:52','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(316,1,'2018-04-04 02:23:31','2018-04-04 02:23:31','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the Evergreen.</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 02:23:31','2018-04-04 02:23:31','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(318,1,'2018-04-04 02:31:46','2018-04-04 02:31:46','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the Evergreen.</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 02:31:46','2018-04-04 02:31:46','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(323,1,'2018-04-04 02:42:37','2018-04-04 02:42:37','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the Evergreen.</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 02:42:37','2018-04-04 02:42:37','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(324,1,'2018-04-04 02:43:36','2018-04-04 02:43:36','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the Evergreen.</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 02:43:36','2018-04-04 02:43:36','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(325,1,'2018-04-04 02:44:47','2018-04-04 02:44:47','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the Evergreen.</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 02:44:47','2018-04-04 02:44:47','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(326,1,'2018-04-04 02:47:19','2018-04-04 02:47:19','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the Evergreen.</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 02:47:19','2018-04-04 02:47:19','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(337,1,'2018-04-04 03:09:33','2018-04-04 03:09:33','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the evergreen.</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 03:09:33','2018-04-04 03:09:33','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(328,1,'2018-04-04 02:53:26','2018-04-04 02:53:26','','K3 – Plain Header Text','','inherit','closed','closed','','302-autosave-v1','','','2018-04-04 02:53:26','2018-04-04 02:53:26','',302,'http://evergreenwellness.com/302-autosave-v1/',0,'revision','',0),(333,1,'2018-04-04 02:54:17','2018-04-04 02:54:17','<figure><img width=\"132\" height=\"131\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/review_3-1.png\" alt=\"\" /></figure><h3>Christopher Brown</h3><p>\"Vestibulum dapibus odio at nisl consequat, in semper augue auctor. Duis risus felis, pulvinar quis tempus vitae” </p>		\n			<figure><img width=\"132\" height=\"132\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/review_2-1.png\" alt=\"\" /></figure><h3>Lora Spielberg</h3><p>\"Vestibulum dapibus odio at nisl consequat, in semper augue auctor. Duis risus felis, pulvinar quis tempus vitae” </p>		\n			<figure><img width=\"132\" height=\"131\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/review_1-1.png\" alt=\"\" /></figure><h3>Jessie Olive</h3><p>\"Vestibulum dapibus odio at nisl consequat, in semper augue auctor. Duis risus felis, pulvinar quis tempus vitae” </p>		\n			<figure><img width=\"189\" height=\"189\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/circle-1.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/circle-1.png 189w, http://evergreenwellness.com/wp-content/uploads/2018/04/circle-1-150x150.png 150w\" sizes=\"(max-width: 189px) 100vw, 189px\" /></figure><h3>Pam Lipton</h3><p>\"Vestibulum dapibus odio at nisl consequat, in semper augue auctor. Duis risus felis, pulvinar quis tempus vitae” </p>','Z4 &#8211; Workers','','publish','closed','closed','','z4-workers','','','2018-04-04 02:54:17','2018-04-04 02:54:17','',0,'http://evergreenwellness.com/?elementor_library=z4-workers',0,'elementor_library','',0),(334,1,'2018-04-04 02:54:17','2018-04-04 02:54:17','<figure><img width=\"132\" height=\"131\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/review_3-1.png\" alt=\"\" /></figure><h3>Christopher Brown</h3><p>\"Vestibulum dapibus odio at nisl consequat, in semper augue auctor. Duis risus felis, pulvinar quis tempus vitae” </p>		\n			<figure><img width=\"132\" height=\"132\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/review_2-1.png\" alt=\"\" /></figure><h3>Lora Spielberg</h3><p>\"Vestibulum dapibus odio at nisl consequat, in semper augue auctor. Duis risus felis, pulvinar quis tempus vitae” </p>		\n			<figure><img width=\"132\" height=\"131\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/review_1-1.png\" alt=\"\" /></figure><h3>Jessie Olive</h3><p>\"Vestibulum dapibus odio at nisl consequat, in semper augue auctor. Duis risus felis, pulvinar quis tempus vitae” </p>		\n			<figure><img width=\"189\" height=\"189\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/circle-1.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/circle-1.png 189w, http://evergreenwellness.com/wp-content/uploads/2018/04/circle-1-150x150.png 150w\" sizes=\"(max-width: 189px) 100vw, 189px\" /></figure><h3>Pam Lipton</h3><p>\"Vestibulum dapibus odio at nisl consequat, in semper augue auctor. Duis risus felis, pulvinar quis tempus vitae” </p>','Z4 &#8211; Workers','','inherit','closed','closed','','333-revision-v1','','','2018-04-04 02:54:17','2018-04-04 02:54:17','',333,'http://evergreenwellness.com/333-revision-v1/',0,'revision','',0),(335,1,'2018-04-04 03:01:09','2018-04-04 03:01:09','<h2>Our Work</h2>		\n		<p>We believe actions speak louder than words.</p>		\n			<a href=\"/services\" role=\"button\">\n						OUR SERVICES\n					</a>\n			<a href=\"/our-work\" role=\"button\">\n						SEE US IN ACTION\n					</a>','T4 – Our Services with CTA','','publish','closed','closed','','t4-our-services-with-cta','','','2018-04-04 03:01:10','2018-04-04 03:01:10','',0,'http://evergreenwellness.com/?elementor_library=t4-our-services-with-cta',0,'elementor_library','',0),(336,1,'2018-04-04 03:01:10','2018-04-04 03:01:10','<h2>Our Work</h2>		\n		<p>We believe actions speak louder than words.</p>		\n			<a href=\"/services\" role=\"button\">\n						OUR SERVICES\n					</a>\n			<a href=\"/our-work\" role=\"button\">\n						SEE US IN ACTION\n					</a>','T4 – Our Services with CTA','','inherit','closed','closed','','335-revision-v1','','','2018-04-04 03:01:10','2018-04-04 03:01:10','',335,'http://evergreenwellness.com/335-revision-v1/',0,'revision','',0),(338,1,'2018-04-04 03:14:09','2018-04-04 03:14:09','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the evergreen.</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 03:14:09','2018-04-04 03:14:09','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(341,1,'2018-04-04 03:24:23','2018-04-04 03:24:23','<p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 03:24:23','2018-04-04 03:24:23','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(340,1,'2018-04-04 03:21:21','2018-04-04 03:21:21','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the evergreen.</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450<p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 03:21:21','2018-04-04 03:21:21','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(343,1,'2018-04-04 03:55:28','2018-04-04 03:55:28','<h3>Evergreen Wellness Center</h3>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 03:55:28','2018-04-04 03:55:28','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(344,1,'2018-04-04 14:38:21','2018-04-04 14:38:21','<h3>Evergreen Wellness Center</h3>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 14:38:21','2018-04-04 14:38:21','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(346,1,'2018-04-04 14:51:44','2018-04-04 14:51:44','<h2>About Us</h2>		\n		<p>Experienced professionals                          Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img src=\"http://evergreenwellness.com/wp-content/uploads/elementor/thumbs/IMG_0233-no3vjieagksmnkybptw5m89hiji7uccpzk7zgz3pzk.jpg\" title=\"IMG_0233\" alt=\"IMG_0233\" />											\n		<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img src=\"http://evergreenwellness.com/wp-content/uploads/elementor/thumbs/IMG_0233-no3vjieagksmnkybptw5m89hiji7uccpzk7zgz3pzk.jpg\" title=\"IMG_0233\" alt=\"IMG_0233\" />											\n		<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a title=\"Contact Us\" href=\"https://web.archive.org/web/20161023003731/http://evergreenwellness.com/?page_id=21\" data-wplink-edit=\"true\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-04 14:51:44','2018-04-04 14:51:44','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(350,1,'2018-04-04 16:20:33','2018-04-04 16:20:33','<h2>our services</h2>		\n										<img width=\"342\" height=\"176\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/SEVICES_1-1.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/SEVICES_1-1.png 342w, http://evergreenwellness.com/wp-content/uploads/2018/04/SEVICES_1-1-300x154.png 300w\" sizes=\"(max-width: 342px) 100vw, 342px\" />											\n			<h3>PACKING</h3>		\n		<p> Nunc et augue pulvinar, luctus mi non, sagittis odio. Phasellus congue sem nulla.non sodales orci malesu da vel. Aliquam mi eros. </p>		\n										<img width=\"342\" height=\"176\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/SERVICES_2-1.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/SERVICES_2-1.png 342w, http://evergreenwellness.com/wp-content/uploads/2018/04/SERVICES_2-1-300x154.png 300w\" sizes=\"(max-width: 342px) 100vw, 342px\" />											\n			<h3>MOVING </h3>		\n		<p>Phasellus congue sem nulla.non sodales orci malesuada vel. Aliquam posuere mi eros.at condimentum elit feugiat vel. </p>		\n										<img width=\"342\" height=\"176\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/SERVICES_3-1.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/SERVICES_3-1.png 342w, http://evergreenwellness.com/wp-content/uploads/2018/04/SERVICES_3-1-300x154.png 300w\" sizes=\"(max-width: 342px) 100vw, 342px\" />											\n			<h3>STORAGE</h3>		\n		<p> Nunc et augue pulvinar, luctus mi non, sagittis odio. non sodales orci malesu da vel. Aliquam posuere mi eros. at centum elit feugiat vel.</p>','M1 – Features Boxes with Text','','publish','closed','closed','','m1-features-boxes-with-text','','','2018-04-04 16:20:33','2018-04-04 16:20:33','',0,'http://evergreenwellness.com/?elementor_library=m1-features-boxes-with-text',0,'elementor_library','',0),(351,1,'2018-04-04 16:20:33','2018-04-04 16:20:33','<h2>our services</h2>		\n										<img width=\"342\" height=\"176\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/SEVICES_1-1.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/SEVICES_1-1.png 342w, http://evergreenwellness.com/wp-content/uploads/2018/04/SEVICES_1-1-300x154.png 300w\" sizes=\"(max-width: 342px) 100vw, 342px\" />											\n			<h3>PACKING</h3>		\n		<p> Nunc et augue pulvinar, luctus mi non, sagittis odio. Phasellus congue sem nulla.non sodales orci malesu da vel. Aliquam mi eros. </p>		\n										<img width=\"342\" height=\"176\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/SERVICES_2-1.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/SERVICES_2-1.png 342w, http://evergreenwellness.com/wp-content/uploads/2018/04/SERVICES_2-1-300x154.png 300w\" sizes=\"(max-width: 342px) 100vw, 342px\" />											\n			<h3>MOVING </h3>		\n		<p>Phasellus congue sem nulla.non sodales orci malesuada vel. Aliquam posuere mi eros.at condimentum elit feugiat vel. </p>		\n										<img width=\"342\" height=\"176\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/SERVICES_3-1.png\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/SERVICES_3-1.png 342w, http://evergreenwellness.com/wp-content/uploads/2018/04/SERVICES_3-1-300x154.png 300w\" sizes=\"(max-width: 342px) 100vw, 342px\" />											\n			<h3>STORAGE</h3>		\n		<p> Nunc et augue pulvinar, luctus mi non, sagittis odio. non sodales orci malesu da vel. Aliquam posuere mi eros. at centum elit feugiat vel.</p>','M1 – Features Boxes with Text','','inherit','closed','closed','','350-revision-v1','','','2018-04-04 16:20:33','2018-04-04 16:20:33','',350,'http://evergreenwellness.com/350-revision-v1/',0,'revision','',0),(357,1,'2018-04-04 18:29:32','2018-04-04 18:29:32','<h2>About Us</h2>\r\nExperienced professionals                          Quality patient-centered care\r\n<h2>Mission Statement</h2>\r\nThe Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.\r\n<h2>Our Staff</h2>\r\n&nbsp;\r\n\r\n<strong><img class=\"alignnone wp-image-356 size-full\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1.jpg\" alt=\"\" width=\"287\" height=\"275\" /></strong>\r\n\r\n<strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong>\r\n\r\nDr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).\r\n\r\n<img src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/review_2-1.png\" alt=\"\" width=\"132\" height=\"132\" />\r\n<h3>STORAGE</h3>\r\nNunc et augue pulvinar, luctus mi non, sagittis odio. non sodales orci malesu da vel. Aliquam posuere mi eros. at centum elit feugiat vel.\r\n\r\n&nbsp;\r\n<h2><img class=\"alignnone size-full wp-image-356\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1.jpg\" alt=\"\" width=\"287\" height=\"275\" /></h2>\r\n<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></h2>\r\nDr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).\r\n<h2>Fees and Insurence</h2>\r\nThe fees for our services are varied, based on the patient’s age and other factors. Please <a title=\"Contact Us\" href=\"https://web.archive.org/web/20161023003731/http://evergreenwellness.com/?page_id=21\">contact us</a> to discuss the cost of treatment.\r\n\r\nEWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.\r\n\r\nPlease check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.\r\n\r\nFeel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-04 18:29:32','2018-04-04 18:29:32','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(353,1,'2018-04-04 16:42:06','2018-04-04 16:42:06','<h2>About Us</h2>		\n		<p>Experienced professionals                          Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0233-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"132\" height=\"132\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/review_2-1.png\" alt=\"\" />											\n			<h3>STORAGE</h3>		\n		<p> Nunc et augue pulvinar, luctus mi non, sagittis odio. non sodales orci malesu da vel. Aliquam posuere mi eros. at centum elit feugiat vel.</p>		\n										<img src=\"http://evergreenwellness.com/wp-content/uploads/elementor/thumbs/IMG_0233-no3vjieagksmnkybptw5m89hiji7uccpzk7zgz3pzk.jpg\" title=\"IMG_0233\" alt=\"IMG_0233\" />											\n		<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></h2><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a title=\"Contact Us\" href=\"https://web.archive.org/web/20161023003731/http://evergreenwellness.com/?page_id=21\" data-wplink-edit=\"true\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-04 16:42:06','2018-04-04 16:42:06','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(410,1,'2018-04-05 00:51:07','2018-04-05 00:51:07','<h2>Services</h2>		\n		<p>Acupuncture      Herbal      Massage      Qigong</p>		\n			<h1>Acupuncture</h1>		\n										<img width=\"420\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg 420w, http://evergreenwellness.com/wp-content/uploads/2018/04/ac7-300x186.jpg 300w\" sizes=\"(max-width: 420px) 100vw, 420px\" />											\n										<img width=\"388\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Acupuncture500-1-e1522634879500.jpg\" alt=\"\" />											\n										<img width=\"420\" height=\"269\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/acupuncture_500-e1522635045797.jpg\" alt=\"\" />											\n		<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.</p><h3>Acupuncture can be used to treat all types of health issues:</h3><p>Addictions<br /> Allergies<br /> Cosmetic procedures (such as acupuncture for face lifting)<br /> Degenerative diseases due to aging<br /> Depression<br /> Men’s Health<br /> Pain Management<br /> Stroke Rehabilitation<br /> Weight Loss and Management<br /> Women’s Health (PMS, Menopause, Low libido, Infertility, etc.)</p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.</p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.</p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.</p>		\n			<h1>Herbal Medicine</h1>		\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.</p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.</p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617123300/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an herbal consultation today!</p> 		\n			<h1>Massage</h1>		\n										<img width=\"600\" height=\"401\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nmm-300x201.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nm-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nl-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		<p><strong>O</strong><strong>riental Bodywork</strong></p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.</p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:</p><p>Reduced stress and anxiety<br /> Relief from muscle tension and joint stiffness<br /> Increased blood circulation<br /> Reduced heart rate<br /> Induces relaxation<br /> Reduces back pain<br /> Relieves depression and insomnia<br /> Relieves Myofascial and Fibromyalgia pain<br /> Releives headaches/migraines</p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.</p><p>For more information about our massage therapists on staff, click <a title=\"Our Staff\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=46\">HERE</a>.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment with one of our massage therapists.</p>		\n			<h1>Qigong</h1>		\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/taiji-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/th-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		 <p>Qigong (pronounced Chee Kung) is a method that combines body movement, breath exercise and mental concentration to exercise the body’s vital energy, or “Qi”. In China, Qigong is widely accepted for it’s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.</p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body’s immune ability, postpone the aging process and develop the body’s potential.</p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:</p><p>Anemia<br /> Anxiety/Depression<br /> Arthritis<br /> Asthma<br /> Back Pain<br /> Bone Density<br /> Body Strength/Flexibility<br /> Concentration/Memory<br /> Hearing or Vision Impairment<br /> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br /> Immune Cell Activity/Dysfunction<br /> Kidney Deficiencies<br /> Mental Health<br /> Overall Health and Well Being<br /> Sexual Dysfunction<br /> Tinnitus<br /> Weight Management</p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner’s supervision. The second approach, External Qi healing, is a process whereby the Qigong practitioner’s energy is used to stimulate and balance the patient’s Qi so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.</p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160503111017/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment for a Qigong consultation.</p> ','Services','','inherit','closed','closed','','24-revision-v1','','','2018-04-05 00:51:07','2018-04-05 00:51:07','',24,'http://evergreenwellness.com/24-revision-v1/',0,'revision','',0),(356,1,'2018-04-04 18:28:21','2018-04-04 18:28:21','','gao','','inherit','open','closed','','gao-2','','','2018-04-04 18:28:21','2018-04-04 18:28:21','',23,'http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1.jpg',0,'attachment','image/jpeg',0),(358,1,'2018-04-04 20:08:14','2018-04-04 20:08:14','<h2>About Us</h2>\r\nExperienced professionals                          Quality patient-centered care\r\n<h2>Mission Statement</h2>\r\nThe Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.\r\n<h2>Our Staff</h2>\r\n&nbsp;\r\n\r\n<strong><img class=\"alignnone wp-image-356 \" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1.jpg\" alt=\"\" width=\"238\" height=\"229\" /></strong>\r\n\r\n<strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong>\r\n\r\nDr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).\r\n\r\n<img src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/review_2-1.png\" alt=\"\" width=\"132\" height=\"132\" />\r\n<h3>STORAGE</h3>\r\nNunc et augue pulvinar, luctus mi non, sagittis odio. non sodales orci malesu da vel. Aliquam posuere mi eros. at centum elit feugiat vel.\r\n\r\n&nbsp;\r\n<h2><img class=\"alignnone  wp-image-356\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1.jpg\" alt=\"\" width=\"229\" height=\"219\" /></h2>\r\n<h2><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></h2>\r\nDr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).\r\n<h2>Fees and Insurence</h2>\r\nThe fees for our services are varied, based on the patient’s age and other factors. Please <a title=\"Contact Us\" href=\"https://web.archive.org/web/20161023003731/http://evergreenwellness.com/?page_id=21\">contact us</a> to discuss the cost of treatment.\r\n\r\nEWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.\r\n\r\nPlease check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.\r\n\r\nFeel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-04 20:08:14','2018-04-04 20:08:14','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(364,1,'2018-04-04 21:25:19','2018-04-04 21:25:19','<h3>Evergreen Wellness Center</h3>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 21:25:19','2018-04-04 21:25:19','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(600,1,'2018-04-07 19:22:28','2018-04-07 19:22:28','','1','','inherit','open','closed','','1-2','','','2018-04-07 19:22:28','2018-04-07 19:22:28','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/1-1.jpg',0,'attachment','image/jpeg',0),(371,1,'2018-04-04 21:31:16','2018-04-04 21:31:16','','2','','inherit','open','closed','','2-2','','','2018-04-04 21:31:16','2018-04-04 21:31:16','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/2-1.jpg',0,'attachment','image/jpeg',0),(470,1,'2018-04-05 22:12:16','2018-04-05 22:12:16','','8757c1aa057517a','','inherit','open','closed','','8757c1aa057517a','','','2018-04-05 22:12:16','2018-04-05 22:12:16','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/8757c1aa057517a.jpg',0,'attachment','image/jpeg',0),(388,1,'2018-04-04 21:56:56','2018-04-04 21:56:56','<h3>Evergreen Wellness Center</h3>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 21:56:56','2018-04-04 21:56:56','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(507,1,'2018-04-05 22:39:07','2018-04-05 22:39:07','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450		\n			<h2>If you have any questions, please contact us.</h2>		\n			<a href=\"http://evergreenwellness.com/contact/\" role=\"button\">\n						Contact Us\n					</a>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-05 22:39:07','2018-04-05 22:39:07','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(393,1,'2018-04-04 22:03:34','2018-04-04 22:03:34','<h3>Evergreen Wellness Center</h3>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 22:03:34','2018-04-04 22:03:34','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(394,1,'2018-04-04 22:03:57','2018-04-04 22:03:57','<h3>Evergreen Wellness Center</h3>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 22:03:57','2018-04-04 22:03:57','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(396,1,'2018-04-04 22:08:14','2018-04-04 22:08:14','<h3>Evergreen Wellness Center</h3>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 22:08:14','2018-04-04 22:08:14','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(397,1,'2018-04-04 22:12:13','2018-04-04 22:12:13','<h3>Evergreen Wellness Center</h3>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p>Welcome<strong> to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 22:12:13','2018-04-04 22:12:13','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(398,1,'2018-04-04 22:12:54','2018-04-04 22:12:54','<h3>Evergreen Wellness Center</h3>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p>Welcome<strong> to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 22:12:54','2018-04-04 22:12:54','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(400,1,'2018-04-04 22:20:23','2018-04-04 22:20:23','<h3>Evergreen Wellness Center</h3>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p>Welcome<strong> to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 22:20:23','2018-04-04 22:20:23','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(402,1,'2018-04-04 22:41:49','2018-04-04 22:41:49','<h3>Evergreen Wellness Center</h3>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-04 22:41:49','2018-04-04 22:41:49','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(407,1,'2018-04-05 00:23:29','2018-04-05 00:23:29','','gao','','inherit','open','closed','','gao','','','2018-04-05 00:23:29','2018-04-05 00:23:29','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/gao.jpg',0,'attachment','image/jpeg',0),(447,1,'2018-04-05 18:10:55','2018-04-05 18:10:55','<h2>About Us</h2>		\n		<p>Experienced professionals                          Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist  </strong></p><p>Carrie Hao X Shen  is  a Licensed Acupuncturist (L.Ac.) and had completed her 4000 hour Oriental Medicine apprenticeship program under Dr. Qizhi Gao in 2014, She provides acupuncture treatments at Evergreen Wellness Center in Wichita, Kansas, as well as guidance in the areas of diet, exercise and Qi gong, from the Chinese Traditional Medicine perspective.</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a href=\"http://evergreenwellness.com/contact/\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\"http://evergreenwellness.com/contact/\"><strong>contact us</strong></a>.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-05 18:10:55','2018-04-05 18:10:55','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(434,1,'2018-04-05 14:13:02','2018-04-05 14:13:02','<h2>About Us</h2>		\n		<p>Experienced professionals                          Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist OM </strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a title=\"Contact Us\" href=\"https://web.archive.org/web/20161023003731/http://evergreenwellness.com/?page_id=21\" data-wplink-edit=\"true\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-05 14:13:02','2018-04-05 14:13:02','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(408,1,'2018-04-05 00:40:44','2018-04-05 00:40:44','<h2>About Us</h2>		\n		<p>Experienced professionals                          Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/gao-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/gao-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist OM </strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a title=\"Contact Us\" href=\"https://web.archive.org/web/20161023003731/http://evergreenwellness.com/?page_id=21\" data-wplink-edit=\"true\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-05 00:40:44','2018-04-05 00:40:44','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(412,1,'2018-04-05 01:09:05','2018-04-05 01:09:05','<h2>Knowledge Base</h2>		\n		<p>Knowledge is the power</p>		\n			<h1>What’s being treated?</h1>		\n										<img width=\"686\" height=\"332\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg 686w, http://evergreenwellness.com/wp-content/uploads/2018/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h1>Q & A on Traditional Chinese Medicine</h1>		\n		<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world’s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.</p><p>Q. Isn’t Traditional Chinese Medicine just a system of folk healing?</p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.</p><p><br />Q. How does Traditional Chinese Medicine work?</p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body’s healthy or righteous energy and attacking any unhealthy or negative energy. </p><p>Q. How does a TCM practitioner determine what is out of balance?</p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient’s face, body, and especially their tongue and its coating. The third is listening to the patient’s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.</p><p><br />Q. How is this rebalancing accomplished?</p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.</p><p><br />Q. Is Traditional Chinese Medicine safe?</p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.</p>		\n			<h1>Articles</h1>		\n		<p>There is a plethora of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.</p><p><a title=\"Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=303\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</a></p><p><a title=\"Post-Stroke Rehabilitation\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=291\">Post-Stroke Rehabilitation</a></p><p><a title=\"Stroke Rehabilitation and Traditional Chinese Medicine\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=294\">Stroke Rehabilitation and Traditional Chinese Medicine</a></p><p><a title=\"TCM and Heart Diseases\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=297\">TCM and Heart Diseases</a></p><p><a title=\"Traditional Chinese Medicine and Infertility\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=289\">Traditional Chinese Medicine and Infertility</a></p>','Knowledge Base','','inherit','closed','closed','','25-revision-v1','','','2018-04-05 01:09:05','2018-04-05 01:09:05','',25,'http://evergreenwellness.com/25-revision-v1/',0,'revision','',0),(413,1,'2018-04-05 01:14:20','2018-04-05 01:14:20','<h2>Knowledge Base   </h2>		\n		<p>Knowledge is the power</p>		\n			<h1>What’s being treated?</h1>		\n										<img width=\"686\" height=\"332\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg 686w, http://evergreenwellness.com/wp-content/uploads/2018/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h1>Q & A on Traditional Chinese Medicine</h1>		\n		<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world’s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.</p><p>Q. Isn’t Traditional Chinese Medicine just a system of folk healing?</p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.</p><p><br />Q. How does Traditional Chinese Medicine work?</p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body’s healthy or righteous energy and attacking any unhealthy or negative energy. </p><p>Q. How does a TCM practitioner determine what is out of balance?</p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient’s face, body, and especially their tongue and its coating. The third is listening to the patient’s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.</p><p><br />Q. How is this rebalancing accomplished?</p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.</p><p><br />Q. Is Traditional Chinese Medicine safe?</p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.</p>		\n			<h1>Articles</h1>		\n		<p>There is a plethora of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.</p><p><a title=\"Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=303\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</a></p><p><a title=\"Post-Stroke Rehabilitation\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=291\">Post-Stroke Rehabilitation</a></p><p><a title=\"Stroke Rehabilitation and Traditional Chinese Medicine\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=294\">Stroke Rehabilitation and Traditional Chinese Medicine</a></p><p><a title=\"TCM and Heart Diseases\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=297\">TCM and Heart Diseases</a></p><p><a title=\"Traditional Chinese Medicine and Infertility\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=289\">Traditional Chinese Medicine and Infertility</a></p>','Knowledge Base','','inherit','closed','closed','','25-revision-v1','','','2018-04-05 01:14:20','2018-04-05 01:14:20','',25,'http://evergreenwellness.com/25-revision-v1/',0,'revision','',0),(415,1,'2018-04-05 01:23:39','2018-04-05 01:23:39','<h3>Contact Us</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n		[contact-form-7 id=\"177\" title=\"Contact form 1\"]		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>		\n			<h2>Contact Us</h2>		\n		<h5>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly</h5>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-05 01:23:39','2018-04-05 01:23:39','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(416,1,'2018-04-05 01:25:50','2018-04-05 01:25:50','<h2>Contact Us</h2>		\n		<h5>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly</h5>		\n			<h3>Contact Us</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n		[contact-form-7 id=\"177\" title=\"Contact form 1\"]		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-05 01:25:50','2018-04-05 01:25:50','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(417,1,'2018-04-05 01:31:51','2018-04-05 01:31:51','<h2>Contact Us</h2>		\n		<h4>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly</h4>		\n			<h3>Contact Us</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n		[contact-form-7 id=\"177\" title=\"Contact form 1\"]		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-05 01:31:51','2018-04-05 01:31:51','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(418,1,'2018-04-05 01:36:08','2018-04-05 01:36:08','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-05 01:36:08','2018-04-05 01:36:08','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(419,1,'2018-04-05 01:40:08','2018-04-05 01:40:08','<h2>Contact Us</h2>		\n		<h4>Need an expert? you are more than welcomed to leave your contact info and we will be in touch shortly</h4>		\n			<h3>Contact Us</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n		[contact-form-7 id=\"177\" title=\"Contact form 1\"]		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-05 01:40:08','2018-04-05 01:40:08','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(433,1,'2018-04-05 14:06:17','2018-04-05 14:06:17',' ','','','publish','closed','closed','','433','','','2018-04-05 14:06:17','2018-04-05 14:06:17','',0,'http://evergreenwellness.com/433/',5,'nav_menu_item','',0),(432,1,'2018-04-05 14:06:17','2018-04-05 14:06:17',' ','','','publish','closed','closed','','432','','','2018-04-05 14:06:17','2018-04-05 14:06:17','',0,'http://evergreenwellness.com/432/',4,'nav_menu_item','',0),(431,1,'2018-04-05 14:06:17','2018-04-05 14:06:17',' ','','','publish','closed','closed','','431','','','2018-04-05 14:06:17','2018-04-05 14:06:17','',0,'http://evergreenwellness.com/431/',3,'nav_menu_item','',0),(430,1,'2018-04-05 14:06:17','2018-04-05 14:06:17',' ','','','publish','closed','closed','','430','','','2018-04-05 14:06:17','2018-04-05 14:06:17','',0,'http://evergreenwellness.com/430/',2,'nav_menu_item','',0),(429,1,'2018-04-05 14:06:17','2018-04-05 14:06:17','','Home','','publish','closed','closed','','home-2','','','2018-04-05 14:06:17','2018-04-05 14:06:17','',0,'http://evergreenwellness.com/home-2/',1,'nav_menu_item','',0),(620,1,'2018-07-29 21:06:14','2018-07-29 21:06:14','{\n    \"nav_menu_item[616]\": {\n        \"value\": {\n            \"menu_item_parent\": 0,\n            \"object_id\": 27,\n            \"object\": \"page\",\n            \"type\": \"post_type\",\n            \"type_label\": \"Page\",\n            \"url\": \"http://evergreenwellness.com/contact/\",\n            \"title\": \"\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"template\": \"\",\n            \"mega_template\": \"\",\n            \"nolink\": \"\",\n            \"category_post\": \"\",\n            \"megamenu\": \"\",\n            \"megamenu_auto_width\": \"\",\n            \"megamenu_col\": \"\",\n            \"megamenu_heading\": \"\",\n            \"megamenu_widgetarea\": \"\",\n            \"icon\": \"\",\n            \"nav_menu_term_id\": 7,\n            \"position\": 4,\n            \"status\": \"publish\",\n            \"original_title\": \"Contact\",\n            \"_invalid\": false\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-07-29 21:06:14\"\n    },\n    \"nav_menu_item[615]\": {\n        \"value\": {\n            \"menu_item_parent\": 0,\n            \"object_id\": 24,\n            \"object\": \"page\",\n            \"type\": \"post_type\",\n            \"type_label\": \"Page\",\n            \"url\": \"http://evergreenwellness.com/services/\",\n            \"title\": \"\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"template\": \"\",\n            \"mega_template\": \"\",\n            \"nolink\": \"\",\n            \"category_post\": \"\",\n            \"megamenu\": \"\",\n            \"megamenu_auto_width\": \"\",\n            \"megamenu_col\": \"\",\n            \"megamenu_heading\": \"\",\n            \"megamenu_widgetarea\": \"\",\n            \"icon\": \"\",\n            \"nav_menu_term_id\": 7,\n            \"position\": 3,\n            \"status\": \"publish\",\n            \"original_title\": \"Services\",\n            \"_invalid\": false\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-07-29 21:06:14\"\n    }\n}','','','trash','closed','closed','','b02ceb25-8ae9-40e8-a7fe-f1adaf260a2d','','','2018-07-29 21:06:14','2018-07-29 21:06:14','',0,'http://evergreenwellness.com/b02ceb25-8ae9-40e8-a7fe-f1adaf260a2d/',0,'customize_changeset','',0),(614,1,'2018-07-29 20:56:25','2018-07-29 20:56:25','','Home','','publish','closed','closed','','home-3','','','2018-07-29 20:56:25','2018-07-29 20:56:25','',0,'http://evergreenwellness.com/home-3/',1,'nav_menu_item','',0),(615,1,'2018-07-29 20:56:26','2018-07-29 20:56:26',' ','','','publish','closed','closed','','615','','','2018-07-29 21:06:14','2018-07-29 21:06:14','',0,'http://evergreenwellness.com/615/',3,'nav_menu_item','',0),(616,1,'2018-07-29 20:56:26','2018-07-29 20:56:26',' ','','','publish','closed','closed','','616','','','2018-07-29 21:06:14','2018-07-29 21:06:14','',0,'http://evergreenwellness.com/616/',4,'nav_menu_item','',0),(617,1,'2018-07-29 20:56:26','2018-07-29 20:56:26',' ','','','publish','closed','closed','','617','','','2018-07-29 20:56:26','2018-07-29 20:56:26','',0,'http://evergreenwellness.com/617/',2,'nav_menu_item','',0),(618,1,'2018-07-29 20:58:21','2018-07-29 20:58:21','{\n    \"nav_menu[7]\": {\n        \"value\": {\n            \"name\": \"footer\",\n            \"description\": \"\",\n            \"parent\": 0,\n            \"auto_add\": true\n        },\n        \"type\": \"nav_menu\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-07-29 20:58:21\"\n    }\n}','','','trash','closed','closed','','dcd2ad77-f57d-49e2-84f1-d3e5e0eb6f6a','','','2018-07-29 20:58:21','2018-07-29 20:58:21','',0,'http://evergreenwellness.com/dcd2ad77-f57d-49e2-84f1-d3e5e0eb6f6a/',0,'customize_changeset','',0),(619,1,'2018-07-29 21:03:22','2018-07-29 21:03:22','<h2>About Us</h2>		\n		<p>Experienced professionals     Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 40 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and by the state of Kansas as an acupuncturist. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist  </strong></p><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.</p><p>She strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.</p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a href=\"http://evergreenwellness.com/contact/\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\"http://evergreenwellness.com/contact/\"><strong>contact us</strong></a>.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-07-29 21:03:22','2018-07-29 21:03:22','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(435,1,'2018-04-05 14:13:41','2018-04-05 14:13:41','<h2>About Us</h2>		\n		<p>Experienced professionals                          Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist  </strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a title=\"Contact Us\" href=\"https://web.archive.org/web/20161023003731/http://evergreenwellness.com/?page_id=21\" data-wplink-edit=\"true\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-05 14:13:41','2018-04-05 14:13:41','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(436,1,'2018-04-05 14:16:21','2018-04-05 14:16:21','<h2>About Us</h2>		\n		<p>Experienced professionals                          Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist  </strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a title=\"Contact Us\" href=\"https://web.archive.org/web/20161023003731/http://evergreenwellness.com/?page_id=21\" data-wplink-edit=\"true\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please contact us.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-05 14:16:21','2018-04-05 14:16:21','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(438,1,'2018-04-05 14:21:26','2018-04-05 14:21:26','<h2>About Us</h2>		\n		<p>Experienced professionals                          Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist  </strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p><p>The fees for our services are varied, based on the patient’s age and other factors. Please <a href=\"http://evergreenwellness.com/contact/\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\"http://evergreenwellness.com/contact/\"><strong>contact us</strong></a>.</p>		\n			<h2>Fees and Insurence</h2>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-05 14:21:26','2018-04-05 14:21:26','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(440,1,'2018-04-05 14:32:40','2018-04-05 14:32:40','<h2>About Us</h2>		\n		<p>Experienced professionals                          Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist  </strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p><p>The fees for our services are varied, based on the patient’s age and other factors. Please <a href=\"http://evergreenwellness.com/contact/\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\"http://evergreenwellness.com/contact/\"><strong>contact us</strong></a>.</p>		\n			<h2>Fees and Insurence</h2>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-05 14:32:40','2018-04-05 14:32:40','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(441,1,'2018-04-05 14:39:37','2018-04-05 14:39:37','<h2>About Us</h2>		\n		<p>Experienced professionals                          Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/carrie-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist  </strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a href=\"http://evergreenwellness.com/contact/\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\"http://evergreenwellness.com/contact/\"><strong>contact us</strong></a>.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-05 14:39:37','2018-04-05 14:39:37','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(442,1,'2018-04-05 16:21:00','2018-04-05 16:21:00','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450		\n			<h2>If you have any questions, please contact us.</h2>		\n			<a role=\"button\">\n						Contact Us\n					</a>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-05 16:21:00','2018-04-05 16:21:00','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(443,1,'2018-04-05 16:21:55','2018-04-05 16:21:55','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450		\n			<h2>If you have any questions, please contact us.</h2>		\n			<a href=\"http://evergreenwellness.com/contact/\" role=\"button\">\n						Contact Us\n					</a>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-05 16:21:55','2018-04-05 16:21:55','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(444,1,'2018-04-05 16:26:45','2018-04-05 16:26:45','','IMG_0238','','inherit','open','closed','','img_0238','','','2018-04-05 16:26:45','2018-04-05 16:26:45','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238.jpg',0,'attachment','image/jpeg',0),(446,1,'2018-04-05 16:28:34','2018-04-05 16:28:34','<h2>About Us</h2>		\n		<p>Experienced professionals                          Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist  </strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a href=\"http://evergreenwellness.com/contact/\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\"http://evergreenwellness.com/contact/\"><strong>contact us</strong></a>.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-05 16:28:34','2018-04-05 16:28:34','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(448,1,'2018-04-05 22:01:35','2018-04-05 22:01:35','<h2>About Us</h2>		\n		<p>Experienced professionals                          Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist  </strong></p><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.</p><p>She strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.</p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a href=\"http://evergreenwellness.com/contact/\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\"http://evergreenwellness.com/contact/\"><strong>contact us</strong></a>.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-05 22:01:35','2018-04-05 22:01:35','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(508,1,'2018-04-05 22:40:03','2018-04-05 22:40:03','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450		\n			<h2>If you have any questions, please contact us.</h2>		\n			<a href=\"http://evergreenwellness.com/contact/\" role=\"button\">\n						Contact Us\n					</a>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-05 22:40:03','2018-04-05 22:40:03','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(533,1,'2018-04-06 19:34:26','2018-04-06 19:34:26','<h2>About Us</h2>		\n		<p>Experienced professionals                          Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist  </strong></p><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.</p><p>She strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.</p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a href=\"http://evergreenwellness.com/contact/\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\"http://evergreenwellness.com/contact/\"><strong>contact us</strong></a>.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-06 19:34:26','2018-04-06 19:34:26','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(502,1,'2018-04-05 22:25:53','2018-04-05 22:25:53','','b32','','inherit','open','closed','','b32','','','2018-04-05 22:25:53','2018-04-05 22:25:53','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/b32.jpg',0,'attachment','image/jpeg',0),(509,1,'2018-04-05 22:45:15','2018-04-05 22:45:15','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450		\n			<h2>If you have any questions, please contact us.</h2>		\n			<a href=\"http://evergreenwellness.com/contact/\" role=\"button\">\n						Contact Us\n					</a>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-05 22:45:15','2018-04-05 22:45:15','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(510,1,'2018-04-05 22:49:01','2018-04-05 22:49:01','<h2>Services</h2>		\n		<p>Acupuncture      Herbal      Massage      Qigong</p>		\n			<h1>Acupuncture</h1>		\n										<img width=\"420\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg 420w, http://evergreenwellness.com/wp-content/uploads/2018/04/ac7-300x186.jpg 300w\" sizes=\"(max-width: 420px) 100vw, 420px\" />											\n										<img width=\"388\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Acupuncture500-1-e1522634879500.jpg\" alt=\"\" />											\n										<img width=\"420\" height=\"269\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/acupuncture_500-e1522635045797.jpg\" alt=\"\" />											\n		<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.</p><h3>Acupuncture can be used to treat all types of health issues:</h3><p>Addictions<br /> Allergies<br /> Cosmetic procedures (such as acupuncture for face lifting)<br /> Degenerative diseases due to aging<br /> Depression<br /> Men’s Health<br /> Pain Management<br /> Stroke Rehabilitation<br /> Weight Loss and Management<br /> Women’s Health (PMS, Menopause, Low libido, Infertility, etc.)</p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.</p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.</p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.</p>		\n			<h1>Herbal Medicine</h1>		\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.</p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.</p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617123300/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an herbal consultation today!</p> 		\n			<h1>Massage</h1>		\n										<img width=\"600\" height=\"401\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nmm-300x201.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nm-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nl-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		<p><strong>O</strong><strong>riental Bodywork</strong></p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.</p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:</p><p>Reduced stress and anxiety<br /> Relief from muscle tension and joint stiffness<br /> Increased blood circulation<br /> Reduced heart rate<br /> Induces relaxation<br /> Reduces back pain<br /> Relieves depression and insomnia<br /> Relieves Myofascial and Fibromyalgia pain<br /> Releives headaches/migraines</p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.</p><p>For more information about our massage therapists on staff, click <a title=\"Our Staff\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=46\">HERE</a>.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment with one of our massage therapists.</p>		\n			<h1>Qigong</h1>		\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/taiji-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/th-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		 <p>Qigong (pronounced Chee Kung) is a method that combines body movement, breath exercise and mental concentration to exercise the body’s vital energy, or “Qi”. In China, Qigong is widely accepted for it’s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.</p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body’s immune ability, postpone the aging process and develop the body’s potential.</p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:</p><p>Anemia<br /> Anxiety/Depression<br /> Arthritis<br /> Asthma<br /> Back Pain<br /> Bone Density<br /> Body Strength/Flexibility<br /> Concentration/Memory<br /> Hearing or Vision Impairment<br /> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br /> Immune Cell Activity/Dysfunction<br /> Kidney Deficiencies<br /> Mental Health<br /> Overall Health and Well Being<br /> Sexual Dysfunction<br /> Tinnitus<br /> Weight Management</p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner’s supervision. The second approach, External Qi healing, is a process whereby the Qigong practitioner’s energy is used to stimulate and balance the patient’s Qi so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.</p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160503111017/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment for a Qigong consultation.</p> ','Services','','inherit','closed','closed','','24-revision-v1','','','2018-04-05 22:49:01','2018-04-05 22:49:01','',24,'http://evergreenwellness.com/24-revision-v1/',0,'revision','',0),(512,1,'2018-04-05 23:01:19','2018-04-05 23:01:19','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450		\n			<h2>If you have any questions, please contact us.</h2>		\n			<a href=\"http://evergreenwellness.com/contact/\" role=\"button\">\n						Contact Us\n					</a>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-05 23:01:19','2018-04-05 23:01:19','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(514,1,'2018-04-05 23:03:18','2018-04-05 23:03:18','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450		\n			<h2>If you have any questions, please contact us.</h2>		\n			<a href=\"http://evergreenwellness.com/contact/\" role=\"button\">\n						Contact Us\n					</a>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-05 23:03:18','2018-04-05 23:03:18','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(521,1,'2018-04-06 17:05:34','2018-04-06 17:05:34','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450		\n			<h2>If you have any questions, please contact us.</h2>		\n			<a href=\"http://evergreenwellness.com/contact/\" role=\"button\">\n						Contact Us\n					</a>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-06 17:05:34','2018-04-06 17:05:34','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(613,1,'2018-07-29 20:56:25','2018-07-29 20:56:25','{\n    \"oceanwp::nav_menu_locations[footer_menu]\": {\n        \"value\": -1067598744068878300,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-07-29 20:51:33\"\n    },\n    \"nav_menu[-1067598744068878300]\": {\n        \"value\": {\n            \"name\": \"footer\",\n            \"description\": \"\",\n            \"parent\": 0,\n            \"auto_add\": false\n        },\n        \"type\": \"nav_menu\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-07-29 20:51:33\"\n    },\n    \"nav_menu_item[-7788691314337438000]\": {\n        \"value\": {\n            \"object_id\": 0,\n            \"object\": \"\",\n            \"menu_item_parent\": 0,\n            \"position\": 1,\n            \"type\": \"custom\",\n            \"title\": \"Home\",\n            \"url\": \"http://evergreenwellness.com\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Home\",\n            \"nav_menu_term_id\": -1067598744068878300,\n            \"_invalid\": false,\n            \"type_label\": \"Custom Link\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-07-29 20:51:33\"\n    },\n    \"nav_menu_item[-2282698790621927400]\": {\n        \"value\": {\n            \"object_id\": 24,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 4,\n            \"type\": \"post_type\",\n            \"title\": \"Services\",\n            \"url\": \"http://evergreenwellness.com/services/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Services\",\n            \"nav_menu_term_id\": -1067598744068878300,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-07-29 20:56:25\"\n    },\n    \"nav_menu_item[-6627750208034165000]\": {\n        \"value\": false,\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-07-29 20:54:33\"\n    },\n    \"nav_menu_item[-6266056538231505000]\": {\n        \"value\": {\n            \"object_id\": 27,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 3,\n            \"type\": \"post_type\",\n            \"title\": \"Contact\",\n            \"url\": \"http://evergreenwellness.com/contact/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"Contact\",\n            \"nav_menu_term_id\": -1067598744068878300,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-07-29 20:56:25\"\n    },\n    \"nav_menu_item[-8870352809283275000]\": {\n        \"value\": {\n            \"object_id\": 23,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 2,\n            \"type\": \"post_type\",\n            \"title\": \"About\",\n            \"url\": \"http://evergreenwellness.com/about/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"About\",\n            \"nav_menu_term_id\": -1067598744068878300,\n            \"_invalid\": false,\n            \"type_label\": \"Page\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-07-29 20:56:25\"\n    }\n}','','','trash','closed','closed','','7c796d86-f068-4f23-8e98-b35bbcdc3d96','','','2018-07-29 20:56:25','2018-07-29 20:56:25','',0,'http://evergreenwellness.com/?p=613',0,'customize_changeset','',0),(531,1,'2018-04-06 19:28:26','2018-04-06 19:28:26','<h2>Evergreen Wellness Center</h2>		\n		<p>May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450		\n			<h2>If you have any questions, please contact us.</h2>		\n			<a href=\"http://evergreenwellness.com/contact/\" role=\"button\">\n						Contact Us\n					</a>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-06 19:28:26','2018-04-06 19:28:26','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(529,1,'2018-04-06 18:54:12','2018-04-06 18:54:12','','2','','inherit','open','closed','','2','','','2018-04-06 18:54:12','2018-04-06 18:54:12','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/2.png',0,'attachment','image/png',0),(538,1,'2018-04-06 19:43:16','2018-04-06 19:43:16','','4','','inherit','open','closed','','4','','','2018-04-06 19:43:16','2018-04-06 19:43:16','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/4.png',0,'attachment','image/png',0),(539,1,'2018-04-06 19:44:35','2018-04-06 19:44:35','','4','','inherit','open','closed','','4-2','','','2018-04-06 19:44:35','2018-04-06 19:44:35','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/4-1.png',0,'attachment','image/png',0),(540,1,'2018-04-06 19:53:33','2018-04-06 19:53:33','<h2>Contact Us</h2>		\n		<h4>Need an expert?</h4><h4>you are more than welcomed to leave your contact info</h4><h4>and we will be in touch shortly</h4>		\n			<h3>Contact Us</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n		[contact-form-7 id=\"177\" title=\"Contact form 1\"]		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-06 19:53:33','2018-04-06 19:53:33','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(541,1,'2018-04-06 19:55:55','2018-04-06 19:55:55','<h2>Contact Us</h2>		\n		<h4>Need an expert?</h4><h4>You are more than welcomed to leave your contact info</h4><h4>and we will be in touch shortly</h4>		\n			<h3>Contact Us</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n		[contact-form-7 id=\"177\" title=\"Contact form 1\"]		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-06 19:55:55','2018-04-06 19:55:55','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(612,1,'2018-07-29 20:48:13','2018-07-29 20:48:13','<h2>About Us</h2>		\n		<p>Experienced professionals     Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 40 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Kansas. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist  </strong></p><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.</p><p>She strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.</p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a href=\"http://evergreenwellness.com/contact/\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\"http://evergreenwellness.com/contact/\"><strong>contact us</strong></a>.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-07-29 20:48:13','2018-07-29 20:48:13','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(552,1,'2018-04-06 20:27:40','2018-04-06 20:27:40','<h2>Evergreen Wellness Center</h2>		\n		<p>&nbsp;May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450		\n			<h2>If you have any questions, please contact us.</h2>		\n			<a href=\"http://evergreenwellness.com/contact/\" role=\"button\">\n						Contact Us\n					</a>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-06 20:27:40','2018-04-06 20:27:40','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(553,1,'2018-04-06 20:30:01','2018-04-06 20:30:01','<h2>Evergreen Wellness Center</h2>		\n		<p>&nbsp;May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450		\n			<h2>If you have any questions, please contact us.</h2>		\n			<a href=\"http://evergreenwellness.com/contact/\" role=\"button\">\n						Contact Us\n					</a>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-06 20:30:01','2018-04-06 20:30:01','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(555,1,'2018-04-06 20:33:59','2018-04-06 20:33:59','<h2>Contact Us</h2>		\n		<h4>Need an expert?</h4><h4>You are more than welcomed to leave your contact info</h4><h4>and we will be in touch shortly</h4>		\n			<h3>Contact Us</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n		[contact-form-7 id=\"177\" title=\"Contact form 1\"]		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-06 20:33:59','2018-04-06 20:33:59','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(556,1,'2018-04-06 20:36:00','2018-04-06 20:36:00','<h2>Contact Us</h2>		\n		<h4>Need an expert?</h4><h4>You are more than welcomed to leave your contact info</h4><h4>and we will be in touch shortly</h4>		\n			<h3>Contact Us</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n		[contact-form-7 id=\"177\" title=\"Contact form 1\"]		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-06 20:36:00','2018-04-06 20:36:00','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(558,1,'2018-04-06 20:42:44','2018-04-06 20:42:44','<h2>Services</h2>		\n		<p>Acupuncture      Herbal      Massage      Qigong</p>		\n			<h1>Acupuncture</h1>		\n										<img width=\"420\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg 420w, http://evergreenwellness.com/wp-content/uploads/2018/04/ac7-300x186.jpg 300w\" sizes=\"(max-width: 420px) 100vw, 420px\" />											\n										<img width=\"388\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Acupuncture500-1-e1522634879500.jpg\" alt=\"\" />											\n										<img width=\"420\" height=\"269\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/acupuncture_500-e1522635045797.jpg\" alt=\"\" />											\n		<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.</p><h3>Acupuncture can be used to treat all types of health issues:</h3><p>Addictions<br /> Allergies<br /> Cosmetic procedures (such as acupuncture for face lifting)<br /> Degenerative diseases due to aging<br /> Depression<br /> Men’s Health<br /> Pain Management<br /> Stroke Rehabilitation<br /> Weight Loss and Management<br /> Women’s Health (PMS, Menopause, Low libido, Infertility, etc.)</p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.</p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.</p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.</p>		\n			<h1>Herbal Medicine</h1>		\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.</p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.</p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617123300/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an herbal consultation today!</p> 		\n			<h1>Massage</h1>		\n										<img width=\"600\" height=\"401\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nmm-300x201.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nm-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nl-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		<p><strong>O</strong><strong>riental Bodywork</strong></p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.</p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:</p><p>Reduced stress and anxiety<br /> Relief from muscle tension and joint stiffness<br /> Increased blood circulation<br /> Reduced heart rate<br /> Induces relaxation<br /> Reduces back pain<br /> Relieves depression and insomnia<br /> Relieves Myofascial and Fibromyalgia pain<br /> Releives headaches/migraines</p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.</p><p>For more information about our massage therapists on staff, click <a title=\"Our Staff\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=46\">HERE</a>.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment with one of our massage therapists.</p>		\n			<h1>Qigong</h1>		\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/taiji-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/th-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		 <p>Qigong (pronounced Chee Kung) is a method that combines body movement, breath exercise and mental concentration to exercise the body’s vital energy, or “Qi”. In China, Qigong is widely accepted for it’s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.</p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body’s immune ability, postpone the aging process and develop the body’s potential.</p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:</p><p>Anemia<br /> Anxiety/Depression<br /> Arthritis<br /> Asthma<br /> Back Pain<br /> Bone Density<br /> Body Strength/Flexibility<br /> Concentration/Memory<br /> Hearing or Vision Impairment<br /> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br /> Immune Cell Activity/Dysfunction<br /> Kidney Deficiencies<br /> Mental Health<br /> Overall Health and Well Being<br /> Sexual Dysfunction<br /> Tinnitus<br /> Weight Management</p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner’s supervision. The second approach, External Qi healing, is a process whereby the Qigong practitioner’s energy is used to stimulate and balance the patient’s Qi so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.</p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160503111017/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment for a Qigong consultation.</p> ','Services','','inherit','closed','closed','','24-revision-v1','','','2018-04-06 20:42:44','2018-04-06 20:42:44','',24,'http://evergreenwellness.com/24-revision-v1/',0,'revision','',0),(581,1,'2018-04-06 22:00:34','2018-04-06 22:00:34','<h2>About Us</h2>		\n		<p>Experienced professionals     Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist  </strong></p><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.</p><p>She strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.</p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a href=\"http://evergreenwellness.com/contact/\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\"http://evergreenwellness.com/contact/\"><strong>contact us</strong></a>.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-06 22:00:34','2018-04-06 22:00:34','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(560,1,'2018-04-06 20:49:18','2018-04-06 20:49:18','<h2>About Us</h2>		\n		<p>Experienced professionals     Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist  </strong></p><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.</p><p>She strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.</p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a href=\"http://evergreenwellness.com/contact/\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\"http://evergreenwellness.com/contact/\"><strong>contact us</strong></a>.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-06 20:49:18','2018-04-06 20:49:18','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(562,1,'2018-04-06 21:01:08','2018-04-06 21:01:08','','10','','inherit','open','closed','','10','','','2018-04-06 21:01:08','2018-04-06 21:01:08','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/10.jpg',0,'attachment','image/jpeg',0),(563,1,'2018-04-06 21:04:06','2018-04-06 21:04:06','<h2>    Knowledge Base   </h2>		\n		<p>Knowledge is the power</p>		\n			<h1>What’s being treated?</h1>		\n										<img width=\"686\" height=\"332\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg 686w, http://evergreenwellness.com/wp-content/uploads/2018/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h1>Q & A on Traditional Chinese Medicine</h1>		\n		<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world’s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.</p><p>Q. Isn’t Traditional Chinese Medicine just a system of folk healing?</p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.</p><p><br />Q. How does Traditional Chinese Medicine work?</p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body’s healthy or righteous energy and attacking any unhealthy or negative energy. </p><p>Q. How does a TCM practitioner determine what is out of balance?</p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient’s face, body, and especially their tongue and its coating. The third is listening to the patient’s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.</p><p><br />Q. How is this rebalancing accomplished?</p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.</p><p><br />Q. Is Traditional Chinese Medicine safe?</p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.</p>		\n			<h1>Articles</h1>		\n		<p>There is a plethora of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.</p><p><a title=\"Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=303\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</a></p><p><a title=\"Post-Stroke Rehabilitation\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=291\">Post-Stroke Rehabilitation</a></p><p><a title=\"Stroke Rehabilitation and Traditional Chinese Medicine\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=294\">Stroke Rehabilitation and Traditional Chinese Medicine</a></p><p><a title=\"TCM and Heart Diseases\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=297\">TCM and Heart Diseases</a></p><p><a title=\"Traditional Chinese Medicine and Infertility\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=289\">Traditional Chinese Medicine and Infertility</a></p>','Knowledge Base','','inherit','closed','closed','','25-revision-v1','','','2018-04-06 21:04:06','2018-04-06 21:04:06','',25,'http://evergreenwellness.com/25-revision-v1/',0,'revision','',0),(564,1,'2018-04-06 21:15:50','2018-04-06 21:15:50','','12','','inherit','open','closed','','12','','','2018-04-06 21:15:50','2018-04-06 21:15:50','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/12.png',0,'attachment','image/png',0),(568,1,'2018-04-06 21:34:13','2018-04-06 21:34:13','','0','','inherit','open','closed','','0','','','2018-04-06 21:34:13','2018-04-06 21:34:13','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/0.png',0,'attachment','image/png',0),(569,1,'2018-04-06 21:36:39','2018-04-06 21:36:39','<h2>    Knowledge Base   </h2>		\n		<p>Knowledge is the power</p>		\n			<h1>What’s being treated?</h1>		\n										<img width=\"686\" height=\"332\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg 686w, http://evergreenwellness.com/wp-content/uploads/2018/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h1>Q & A on Traditional Chinese Medicine</h1>		\n		<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world’s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.</p><p>Q. Isn’t Traditional Chinese Medicine just a system of folk healing?</p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.</p><p><br />Q. How does Traditional Chinese Medicine work?</p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body’s healthy or righteous energy and attacking any unhealthy or negative energy. </p><p>Q. How does a TCM practitioner determine what is out of balance?</p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient’s face, body, and especially their tongue and its coating. The third is listening to the patient’s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.</p><p><br />Q. How is this rebalancing accomplished?</p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.</p><p><br />Q. Is Traditional Chinese Medicine safe?</p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.</p>		\n			<h1>Articles</h1>		\n		<p>There is a plethora of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.</p><p><a title=\"Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=303\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</a></p><p><a title=\"Post-Stroke Rehabilitation\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=291\">Post-Stroke Rehabilitation</a></p><p><a title=\"Stroke Rehabilitation and Traditional Chinese Medicine\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=294\">Stroke Rehabilitation and Traditional Chinese Medicine</a></p><p><a title=\"TCM and Heart Diseases\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=297\">TCM and Heart Diseases</a></p><p><a title=\"Traditional Chinese Medicine and Infertility\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=289\">Traditional Chinese Medicine and Infertility</a></p>','Knowledge Base','','inherit','closed','closed','','25-revision-v1','','','2018-04-06 21:36:39','2018-04-06 21:36:39','',25,'http://evergreenwellness.com/25-revision-v1/',0,'revision','',0),(571,1,'2018-04-06 21:41:38','2018-04-06 21:41:38','','01','','inherit','open','closed','','01','','','2018-04-06 21:41:38','2018-04-06 21:41:38','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/01.png',0,'attachment','image/png',0),(572,1,'2018-04-06 21:42:27','2018-04-06 21:42:27','','011','','inherit','open','closed','','011','','','2018-04-06 21:42:27','2018-04-06 21:42:27','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/011.png',0,'attachment','image/png',0),(573,1,'2018-04-06 21:42:49','2018-04-06 21:42:49','<h2>Evergreen Wellness Center</h2>		\n		<p>&nbsp;May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450		\n			<h2>If you have any questions, please contact us.</h2>		\n			<a href=\"http://evergreenwellness.com/contact/\" role=\"button\">\n						Contact Us\n					</a>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-06 21:42:49','2018-04-06 21:42:49','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(580,1,'2018-04-06 22:00:29','2018-04-06 22:00:29','','9.5','','inherit','open','closed','','9-5','','','2018-04-06 22:00:29','2018-04-06 22:00:29','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/9.5.jpg',0,'attachment','image/jpeg',0),(579,1,'2018-04-06 21:56:53','2018-04-06 21:56:53','<h2>About Us</h2>		\n		<p>Experienced professionals     Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Missouri. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist  </strong></p><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.</p><p>She strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.</p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a href=\"http://evergreenwellness.com/contact/\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\"http://evergreenwellness.com/contact/\"><strong>contact us</strong></a>.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-04-06 21:56:53','2018-04-06 21:56:53','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(585,1,'2018-04-06 22:09:30','2018-04-06 22:09:30','<h2>Contact Us</h2>		\n		<h4>Need an expert?</h4><h4>You are more than welcomed to leave your contact info</h4><h4>and we will be in touch shortly</h4>		\n			<h3>Contact Us</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n		[contact-form-7 id=\"177\" title=\"Contact form 1\"]		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-06 22:09:30','2018-04-06 22:09:30','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(586,1,'2018-04-06 22:51:33','2018-04-06 22:51:33','','2.3','','inherit','open','closed','','2-3','','','2018-04-06 22:51:33','2018-04-06 22:51:33','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/2.3.png',0,'attachment','image/png',0),(607,1,'2018-04-07 20:10:36','2018-04-07 20:10:36','<h2>    Knowledge Base   </h2>		\n		<p>Knowledge is the power</p>		\n			<h1>What’s being treated?</h1>		\n										<img width=\"686\" height=\"332\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/treatment.jpg 686w, http://evergreenwellness.com/wp-content/uploads/2018/04/treatment-300x145.jpg 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" />											\n			<h1>Q & A on Traditional Chinese Medicine</h1>		\n		<p>Traditional Chinese Medicine (TCM) is the oldest professional, continually practiced and literate medicine in the world. Written literature on TCM dates back almost 3,000 years. Currently, one quarter of the world’s population makes use of it. One can say that modern Western medicine and Traditional Chinese Medicine are the two dominant medical systems in the world today.</p><p>Q. Isn’t Traditional Chinese Medicine just a system of folk healing?</p><p>A. No. This system has been created by some of the best educated and brightest scholars in Chinese history. These scholars have recorded their theories and clinic experiences from generation to generation in thousands of books. Currently, books and articles on TCM are published in professional journals throughout the world.</p><p><br />Q. How does Traditional Chinese Medicine work?</p><p>A. TCM works by re-establishing balance between yin and yang, balance between the five phases, balance between the viscera and bowels and balance between the qi (energy), xue (blood) and body fluids. This balance is re-established by supporting the body’s healthy or righteous energy and attacking any unhealthy or negative energy. </p><p>Q. How does a TCM practitioner determine what is out of balance?</p><p>A. The TCM practitioner uses four basic diagnostic examinations. The first is questioning the patient about their signs and symptoms, medical history and course of disease. The second is visually inspecting the patient’s face, body, and especially their tongue and its coating. The third is listening to the patient’s voice and the sound of their breathing, as well as smelling any odors emanating from their body or excretions. The fourth is palpating various areas of the body, and especially the pulse at both wrists. From these examinations, the practitioner can determine the pattern of disharmony that requires rebalancing.</p><p><br />Q. How is this rebalancing accomplished?</p><p>A. If something is too hot, the practitioner seeks to cool it down. If something is too cool, they want to warm it up. If something is too wet, they try to dry it; while if something is too dry, they try to moisten it. If something is stuck, they try to move it, and if something is flowing inappropriately, they try to make it flow in the right direction and in the right amount. The methods to re-establish balance are using acupuncture/moxibustion and Chinese herbs. Acupuncture and moxibustion seek to regulate the flow of qi and xue within the body, by either inserting fine, sterile needles at certain acupoints or warming certain acupoints by various methods. Chinese herbal medicines may be prescribed for internal use or applied externally. In addition, TCM practitioners may also use tui na or an mo, styles of Chinese massage. They may also prescribe remedial or preventative exercises, such as tai chi, qi gong or dao yin, and they typically counsel their patients on diet and lifestyle, all according to the theories of Chinese Medicine.</p><p><br />Q. Is Traditional Chinese Medicine safe?</p><p>A. Very. When practiced correctly by trained, qualified professional practitioners, acupuncture and Chinese herbal medicine are extremely safe. In fact, when practiced correctly, they have no side effects and produce no iatrogenic or doctor-caused disease.</p>		\n			<h1>Articles</h1>		\n		<p>There is a plethora of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.</p><p><a title=\"Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=303\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies</a></p><p><a title=\"Post-Stroke Rehabilitation\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=291\">Post-Stroke Rehabilitation</a></p><p><a title=\"Stroke Rehabilitation and Traditional Chinese Medicine\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=294\">Stroke Rehabilitation and Traditional Chinese Medicine</a></p><p><a title=\"TCM and Heart Diseases\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=297\">TCM and Heart Diseases</a></p><p><a title=\"Traditional Chinese Medicine and Infertility\" href=\"https://web.archive.org/web/20161022194812/http://evergreenwellness.com/?page_id=289\">Traditional Chinese Medicine and Infertility</a></p>','Knowledge Base','','inherit','closed','closed','','25-revision-v1','','','2018-04-07 20:10:36','2018-04-07 20:10:36','',25,'http://evergreenwellness.com/25-revision-v1/',0,'revision','',0),(588,1,'2018-04-07 18:41:34','2018-04-07 18:41:34','','green','','inherit','open','closed','','green','','','2018-04-07 18:41:34','2018-04-07 18:41:34','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/green.png',0,'attachment','image/png',0),(621,1,'2018-08-05 19:09:04','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2018-08-05 19:09:04','0000-00-00 00:00:00','',0,'http://evergreenwellness.com/?p=621',0,'post','',0),(611,1,'2018-07-29 20:47:28','2018-07-29 20:47:28','<h2>About Us</h2>		\n		<p>Experienced professionals     Quality patient-centered care</p>		\n			<h2>Mission Statement</h2>		\n		<p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual’s health and well-being.</p>		\n			<h2>   Our Staff</h2>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/gao-1-150x150.jpg\" alt=\"\" />											\n		<p><strong>Qizhi Gao, D.O.M., Dipl. OM (NCCAOM)</strong></p><p>Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 30 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and as an acupuncturist by the state of Kansas. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).</p>		\n										<img width=\"150\" height=\"150\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-150x150.jpg 150w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-300x300.jpg 300w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-768x768.jpg 768w, http://evergreenwellness.com/wp-content/uploads/2018/04/IMG_0238-1024x1024.jpg 1024w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<p><strong>Carrie Hao X. Shen, Lic. Acupuncturist  </strong></p><p>Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.</p><p>She strongly believes in the body’s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.</p><p>She uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.</p>		\n			<h2>Fees and Insurence</h2>		\n		<p>The fees for our services are varied, based on the patient’s age and other factors. Please <a href=\"http://evergreenwellness.com/contact/\">contact us</a> to discuss the cost of treatment.</p><p>EWC does not file insurance claims. It is the patient’s responsibility to provide payment at the time of service and contact. More and more insurance companies are covering acupuncture. Many Flex Plans will cover Acupuncture treatment as well.</p><p>Please check with your insurance company to see if they will reimburse you for our services. We are happy to assist in the process by providing the necessary invoices and insurance codes to the patient to submit to insurance.</p><p>Feel free to peruse our website, read more and find answers to your questions. If you need additional information please <a href=\"http://evergreenwellness.com/contact/\"><strong>contact us</strong></a>.</p>','About','','inherit','closed','closed','','23-revision-v1','','','2018-07-29 20:47:28','2018-07-29 20:47:28','',23,'http://evergreenwellness.com/23-revision-v1/',0,'revision','',0),(590,1,'2018-04-07 19:07:53','2018-04-07 19:07:53','<h2>Evergreen Wellness Center</h2>		\n		<p>&nbsp;May you have a good health and longevity ... like the evergreen</p><p><strong>Welcome to the Evergreen Wellness Center (EWC), a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and nationally certified clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.</strong></p>		\n			<h2>Amazing story of one of our stroke rehabilitation patient</h2>		\n		https://youtu.be/RTQGpPwn2BU<p>I had surgery to remove a benign meningioma brain tumor. During or after surgery, I suffered a severe stroke.I do not recall much of anything during the first two months. I could not speak a word. I had difficulty breathing. Eventually, the doctors gave up and told my husband they didn’t think I would live.  I had one health crisis after another. Then, just when all hope seemed gone my husband heard through a friend about acupuncture for stroke victims.  He immediately called a doctor- Dr. Gao trained in TCM to examine me. <br />Now the good news ... ...Within two weeks…<strong style=\"font-size: 14px;\">only</strong> <strong style=\"font-size: 14px;\">two short weeks</strong>, after starting treatments I began to speak.   First it was words, then phrases and then sentences.  I had been locked up inside myself for two months. It was absolutely amazing!  Click on the video for the whole story.</p>		\n			<h2>Weight Management -- Breathing yourself thin</h2>		\n		<p>You’ve spent hours exercising. You’ve denied cravings with dieting. No matter what you’ve tried, there are some extra pounds you just can’t seem to shed. But have you tried…breathing?</p><p>KAKE TV introduces you to an ancient Chinese method that doesn’t take a lot of time and is really working for real Kansans.Best of all, there’s no special diet or exercise!</p><p>Chi Gong – Breathing Yourself Thin. Click <a href=\"http://ibreathin.com\">Here</a> for more detail about online class.</p>https://vimeo.com/194991450		\n			<h2>If you have any questions, please contact us.</h2>		\n			<a href=\"http://evergreenwellness.com/contact/\" role=\"button\">\n						Contact Us\n					</a>','Home','','inherit','closed','closed','','21-revision-v1','','','2018-04-07 19:07:53','2018-04-07 19:07:53','',21,'http://evergreenwellness.com/21-revision-v1/',0,'revision','',0),(591,1,'2018-04-07 19:10:19','2018-04-07 19:10:19','<h2>Contact Us</h2>		\n		<h4>Need an expert?</h4><h4>You are more than welcomed to leave your contact info</h4><h4>and we will be in touch shortly</h4>		\n			<h3>Contact Us</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n		[contact-form-7 id=\"177\" title=\"Contact form 1\"]		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-07 19:10:19','2018-04-07 19:10:19','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(594,1,'2018-04-07 19:15:31','2018-04-07 19:15:31','','2','','inherit','open','closed','','2-4','','','2018-04-07 19:15:31','2018-04-07 19:15:31','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/2-1.png',0,'attachment','image/png',0),(593,1,'2018-04-07 19:14:09','2018-04-07 19:14:09','<h2>Contact Us</h2>		\n		<h4>Need an expert?</h4><h4>You are more than welcomed to leave your contact info</h4><h4>and we will be in touch shortly</h4>		\n			<h3>Contact Us</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n		[contact-form-7 id=\"177\" title=\"Contact form 1\"]		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-07 19:14:09','2018-04-07 19:14:09','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(595,1,'2018-04-07 19:15:49','2018-04-07 19:15:49','<h2>Contact Us</h2>		\n		<h4>Need an expert?</h4><h4>You are more than welcomed to leave your contact info</h4><h4>and we will be in touch shortly</h4>		\n			<h3>Contact Us</h3>		\n					<ul>\n							<li >\n										1520 S Webb Road, Suite 160, Wichita, KS 67207\n									</li>\n								<li >\n										(316) 691-8811\n									</li>\n								<li >\n										ewc316@gmail.com\n									</li>\n						</ul>\n		[contact-form-7 id=\"177\" title=\"Contact form 1\"]		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=1520%20S%20Webb%20Road%2C%20Suite%20160%2C%C2%A0Wichita%2C%20KS%2067207&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"1520 S Webb Road, Suite 160, Wichita, KS 67207\"></iframe>','Contact','','inherit','closed','closed','','27-revision-v1','','','2018-04-07 19:15:49','2018-04-07 19:15:49','',27,'http://evergreenwellness.com/27-revision-v1/',0,'revision','',0),(601,1,'2018-04-07 19:22:46','2018-04-07 19:22:46','<h2>Services</h2>		\n		<p>Acupuncture      Herbal      Massage      Qigong</p>		\n			<h1>Acupuncture</h1>		\n										<img width=\"420\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg 420w, http://evergreenwellness.com/wp-content/uploads/2018/04/ac7-300x186.jpg 300w\" sizes=\"(max-width: 420px) 100vw, 420px\" />											\n										<img width=\"388\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Acupuncture500-1-e1522634879500.jpg\" alt=\"\" />											\n										<img width=\"420\" height=\"269\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/acupuncture_500-e1522635045797.jpg\" alt=\"\" />											\n		<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.</p><h3>Acupuncture can be used to treat all types of health issues:</h3><p>Addictions<br /> Allergies<br /> Cosmetic procedures (such as acupuncture for face lifting)<br /> Degenerative diseases due to aging<br /> Depression<br /> Men’s Health<br /> Pain Management<br /> Stroke Rehabilitation<br /> Weight Loss and Management<br /> Women’s Health (PMS, Menopause, Low libido, Infertility, etc.)</p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.</p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.</p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.</p>		\n			<h1>Herbal Medicine</h1>		\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.</p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.</p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617123300/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an herbal consultation today!</p> 		\n			<h1>Massage</h1>		\n										<img width=\"600\" height=\"401\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nmm-300x201.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nm-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nl-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		<p><strong>O</strong><strong>riental Bodywork</strong></p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.</p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:</p><p>Reduced stress and anxiety<br /> Relief from muscle tension and joint stiffness<br /> Increased blood circulation<br /> Reduced heart rate<br /> Induces relaxation<br /> Reduces back pain<br /> Relieves depression and insomnia<br /> Relieves Myofascial and Fibromyalgia pain<br /> Releives headaches/migraines</p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.</p><p>For more information about our massage therapists on staff, click <a title=\"Our Staff\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=46\">HERE</a>.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment with one of our massage therapists.</p>		\n			<h1>Qigong</h1>		\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/taiji-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/th-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		 <p>Qigong (pronounced Chee Kung) is a method that combines body movement, breath exercise and mental concentration to exercise the body’s vital energy, or “Qi”. In China, Qigong is widely accepted for it’s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.</p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body’s immune ability, postpone the aging process and develop the body’s potential.</p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:</p><p>Anemia<br /> Anxiety/Depression<br /> Arthritis<br /> Asthma<br /> Back Pain<br /> Bone Density<br /> Body Strength/Flexibility<br /> Concentration/Memory<br /> Hearing or Vision Impairment<br /> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br /> Immune Cell Activity/Dysfunction<br /> Kidney Deficiencies<br /> Mental Health<br /> Overall Health and Well Being<br /> Sexual Dysfunction<br /> Tinnitus<br /> Weight Management</p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner’s supervision. The second approach, External Qi healing, is a process whereby the Qigong practitioner’s energy is used to stimulate and balance the patient’s Qi so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.</p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160503111017/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment for a Qigong consultation.</p> ','Services','','inherit','closed','closed','','24-revision-v1','','','2018-04-07 19:22:46','2018-04-07 19:22:46','',24,'http://evergreenwellness.com/24-revision-v1/',0,'revision','',0),(597,1,'2018-04-07 19:18:13','2018-04-07 19:18:13','<h2>Services</h2>		\n		<p>Acupuncture      Herbal      Massage      Qigong</p>		\n			<h1>Acupuncture</h1>		\n										<img width=\"420\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg 420w, http://evergreenwellness.com/wp-content/uploads/2018/04/ac7-300x186.jpg 300w\" sizes=\"(max-width: 420px) 100vw, 420px\" />											\n										<img width=\"388\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Acupuncture500-1-e1522634879500.jpg\" alt=\"\" />											\n										<img width=\"420\" height=\"269\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/acupuncture_500-e1522635045797.jpg\" alt=\"\" />											\n		<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.</p><h3>Acupuncture can be used to treat all types of health issues:</h3><p>Addictions<br /> Allergies<br /> Cosmetic procedures (such as acupuncture for face lifting)<br /> Degenerative diseases due to aging<br /> Depression<br /> Men’s Health<br /> Pain Management<br /> Stroke Rehabilitation<br /> Weight Loss and Management<br /> Women’s Health (PMS, Menopause, Low libido, Infertility, etc.)</p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.</p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.</p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.</p>		\n			<h1>Herbal Medicine</h1>		\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.</p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.</p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617123300/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an herbal consultation today!</p> 		\n			<h1>Massage</h1>		\n										<img width=\"600\" height=\"401\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nmm-300x201.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nm-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nl-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		<p><strong>O</strong><strong>riental Bodywork</strong></p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.</p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:</p><p>Reduced stress and anxiety<br /> Relief from muscle tension and joint stiffness<br /> Increased blood circulation<br /> Reduced heart rate<br /> Induces relaxation<br /> Reduces back pain<br /> Relieves depression and insomnia<br /> Relieves Myofascial and Fibromyalgia pain<br /> Releives headaches/migraines</p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.</p><p>For more information about our massage therapists on staff, click <a title=\"Our Staff\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=46\">HERE</a>.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment with one of our massage therapists.</p>		\n			<h1>Qigong</h1>		\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/taiji-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/th-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		 <p>Qigong (pronounced Chee Kung) is a method that combines body movement, breath exercise and mental concentration to exercise the body’s vital energy, or “Qi”. In China, Qigong is widely accepted for it’s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.</p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body’s immune ability, postpone the aging process and develop the body’s potential.</p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:</p><p>Anemia<br /> Anxiety/Depression<br /> Arthritis<br /> Asthma<br /> Back Pain<br /> Bone Density<br /> Body Strength/Flexibility<br /> Concentration/Memory<br /> Hearing or Vision Impairment<br /> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br /> Immune Cell Activity/Dysfunction<br /> Kidney Deficiencies<br /> Mental Health<br /> Overall Health and Well Being<br /> Sexual Dysfunction<br /> Tinnitus<br /> Weight Management</p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner’s supervision. The second approach, External Qi healing, is a process whereby the Qigong practitioner’s energy is used to stimulate and balance the patient’s Qi so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.</p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160503111017/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment for a Qigong consultation.</p> ','Services','','inherit','closed','closed','','24-revision-v1','','','2018-04-07 19:18:13','2018-04-07 19:18:13','',24,'http://evergreenwellness.com/24-revision-v1/',0,'revision','',0),(599,1,'2018-04-07 19:20:36','2018-04-07 19:20:36','<h2>Services</h2>		\n		<p>Acupuncture      Herbal      Massage      Qigong</p>		\n			<h1>Acupuncture</h1>		\n										<img width=\"420\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg 420w, http://evergreenwellness.com/wp-content/uploads/2018/04/ac7-300x186.jpg 300w\" sizes=\"(max-width: 420px) 100vw, 420px\" />											\n										<img width=\"388\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Acupuncture500-1-e1522634879500.jpg\" alt=\"\" />											\n										<img width=\"420\" height=\"269\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/acupuncture_500-e1522635045797.jpg\" alt=\"\" />											\n		<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.</p><h3>Acupuncture can be used to treat all types of health issues:</h3><p>Addictions<br /> Allergies<br /> Cosmetic procedures (such as acupuncture for face lifting)<br /> Degenerative diseases due to aging<br /> Depression<br /> Men’s Health<br /> Pain Management<br /> Stroke Rehabilitation<br /> Weight Loss and Management<br /> Women’s Health (PMS, Menopause, Low libido, Infertility, etc.)</p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.</p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.</p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.</p>		\n			<h1>Herbal Medicine</h1>		\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.</p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.</p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617123300/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an herbal consultation today!</p> 		\n			<h1>Massage</h1>		\n										<img width=\"600\" height=\"401\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nmm-300x201.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nm-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nl-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		<p><strong>O</strong><strong>riental Bodywork</strong></p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.</p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:</p><p>Reduced stress and anxiety<br /> Relief from muscle tension and joint stiffness<br /> Increased blood circulation<br /> Reduced heart rate<br /> Induces relaxation<br /> Reduces back pain<br /> Relieves depression and insomnia<br /> Relieves Myofascial and Fibromyalgia pain<br /> Releives headaches/migraines</p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.</p><p>For more information about our massage therapists on staff, click <a title=\"Our Staff\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=46\">HERE</a>.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment with one of our massage therapists.</p>		\n			<h1>Qigong</h1>		\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/taiji-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/th-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		 <p>Qigong (pronounced Chee Kung) is a method that combines body movement, breath exercise and mental concentration to exercise the body’s vital energy, or “Qi”. In China, Qigong is widely accepted for it’s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.</p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body’s immune ability, postpone the aging process and develop the body’s potential.</p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:</p><p>Anemia<br /> Anxiety/Depression<br /> Arthritis<br /> Asthma<br /> Back Pain<br /> Bone Density<br /> Body Strength/Flexibility<br /> Concentration/Memory<br /> Hearing or Vision Impairment<br /> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br /> Immune Cell Activity/Dysfunction<br /> Kidney Deficiencies<br /> Mental Health<br /> Overall Health and Well Being<br /> Sexual Dysfunction<br /> Tinnitus<br /> Weight Management</p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner’s supervision. The second approach, External Qi healing, is a process whereby the Qigong practitioner’s energy is used to stimulate and balance the patient’s Qi so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.</p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160503111017/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment for a Qigong consultation.</p> ','Services','','inherit','closed','closed','','24-revision-v1','','','2018-04-07 19:20:36','2018-04-07 19:20:36','',24,'http://evergreenwellness.com/24-revision-v1/',0,'revision','',0),(602,1,'2018-04-07 19:24:50','2018-04-07 19:24:50','','1.1','','inherit','open','closed','','1-1','','','2018-04-07 19:24:50','2018-04-07 19:24:50','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/1.1.jpg',0,'attachment','image/jpeg',0),(603,1,'2018-04-07 19:25:03','2018-04-07 19:25:03','<h2>Services</h2>		\n		<p>Acupuncture      Herbal      Massage      Qigong</p>		\n			<h1>Acupuncture</h1>		\n										<img width=\"420\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg 420w, http://evergreenwellness.com/wp-content/uploads/2018/04/ac7-300x186.jpg 300w\" sizes=\"(max-width: 420px) 100vw, 420px\" />											\n										<img width=\"388\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Acupuncture500-1-e1522634879500.jpg\" alt=\"\" />											\n										<img width=\"420\" height=\"269\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/acupuncture_500-e1522635045797.jpg\" alt=\"\" />											\n		<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.</p><h3>Acupuncture can be used to treat all types of health issues:</h3><p>Addictions<br /> Allergies<br /> Cosmetic procedures (such as acupuncture for face lifting)<br /> Degenerative diseases due to aging<br /> Depression<br /> Men’s Health<br /> Pain Management<br /> Stroke Rehabilitation<br /> Weight Loss and Management<br /> Women’s Health (PMS, Menopause, Low libido, Infertility, etc.)</p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.</p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.</p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.</p>		\n			<h1>Herbal Medicine</h1>		\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.</p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.</p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617123300/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an herbal consultation today!</p> 		\n			<h1>Massage</h1>		\n										<img width=\"600\" height=\"401\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nmm-300x201.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nm-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nl-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		<p><strong>O</strong><strong>riental Bodywork</strong></p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.</p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:</p><p>Reduced stress and anxiety<br /> Relief from muscle tension and joint stiffness<br /> Increased blood circulation<br /> Reduced heart rate<br /> Induces relaxation<br /> Reduces back pain<br /> Relieves depression and insomnia<br /> Relieves Myofascial and Fibromyalgia pain<br /> Releives headaches/migraines</p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.</p><p>For more information about our massage therapists on staff, click <a title=\"Our Staff\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=46\">HERE</a>.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment with one of our massage therapists.</p>		\n			<h1>Qigong</h1>		\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/taiji-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/th-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		 <p>Qigong (pronounced Chee Kung) is a method that combines body movement, breath exercise and mental concentration to exercise the body’s vital energy, or “Qi”. In China, Qigong is widely accepted for it’s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.</p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body’s immune ability, postpone the aging process and develop the body’s potential.</p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:</p><p>Anemia<br /> Anxiety/Depression<br /> Arthritis<br /> Asthma<br /> Back Pain<br /> Bone Density<br /> Body Strength/Flexibility<br /> Concentration/Memory<br /> Hearing or Vision Impairment<br /> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br /> Immune Cell Activity/Dysfunction<br /> Kidney Deficiencies<br /> Mental Health<br /> Overall Health and Well Being<br /> Sexual Dysfunction<br /> Tinnitus<br /> Weight Management</p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner’s supervision. The second approach, External Qi healing, is a process whereby the Qigong practitioner’s energy is used to stimulate and balance the patient’s Qi so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.</p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160503111017/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment for a Qigong consultation.</p> ','Services','','inherit','closed','closed','','24-revision-v1','','','2018-04-07 19:25:03','2018-04-07 19:25:03','',24,'http://evergreenwellness.com/24-revision-v1/',0,'revision','',0),(604,1,'2018-04-07 19:26:55','2018-04-07 19:26:55','','1a','','inherit','open','closed','','1a','','','2018-04-07 19:26:55','2018-04-07 19:26:55','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/1a.jpg',0,'attachment','image/jpeg',0),(605,1,'2018-04-07 19:27:12','2018-04-07 19:27:12','<h2>Services</h2>		\n		<p>Acupuncture      Herbal      Massage      Qigong</p>		\n			<h1>Acupuncture</h1>		\n										<img width=\"420\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/ac7.jpg 420w, http://evergreenwellness.com/wp-content/uploads/2018/04/ac7-300x186.jpg 300w\" sizes=\"(max-width: 420px) 100vw, 420px\" />											\n										<img width=\"388\" height=\"260\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/Acupuncture500-1-e1522634879500.jpg\" alt=\"\" />											\n										<img width=\"420\" height=\"269\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/acupuncture_500-e1522635045797.jpg\" alt=\"\" />											\n		<p>In acupuncture, a TCM physician or Acupuncturist inserts one or more fine needles into the patient’s body to adjust the energy flow. Acupuncture points are like traffic lights on a city street, and the energy that runs through the body is like the traffic flow. Sometimes there is congestion or stagnation in the traffic, and the lights help control the cars and tell them when and where to go. Similarly, an acupuncturist utilizes the needles and acupuncture points to move the energy flow through the body more consistently to provide relief from your symptoms and restore balance to your body.</p><h3>Acupuncture can be used to treat all types of health issues:</h3><p>Addictions<br /> Allergies<br /> Cosmetic procedures (such as acupuncture for face lifting)<br /> Degenerative diseases due to aging<br /> Depression<br /> Men’s Health<br /> Pain Management<br /> Stroke Rehabilitation<br /> Weight Loss and Management<br /> Women’s Health (PMS, Menopause, Low libido, Infertility, etc.)</p><p>When you arrive for your first acupuncture treatment at Evergreen Wellness Center, we ask that you arrive a few minutes early to complete a short form regarding your health history. Please bring a list of any medications you are currently taking, or copies of any other lab tests or X-rays you feel might be helpful for us to keep in your patient file.</p><p>During your consultation, the acupuncturist will discuss your symptoms, provide a diagnosis and prognosis, and determine a treatment plan for any additional acupuncture, massage or herbs that may assist with treating your syndrome.</p><p>Initial appointments typically last 45 minutes to one hour. Follow-up acupuncture treatments usually last around 30 minutes.</p>		\n			<h1>Herbal Medicine</h1>		\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17814-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/jt-ai-020223846-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17815-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n										<img width=\"400\" height=\"600\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845.jpg 400w, http://evergreenwellness.com/wp-content/uploads/2018/04/mhrf-cpmh17845-200x300.jpg 200w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<p>Herbal medicine can be used to treat and also prevent various health problems. In ancient China, TCM medical experts tasted all the herbs they used in person before they gave them to their patients. Raw herbs could be in the form of bark, leaves, seeds, roots and a variety of other natural substances.</p><p>Today, hundreds of different herb formulas are used to treat different diseases with much success. Several commonly used herbal formulas are manufactured based on Chinese Herb Medicine Classics, and these formulas have been used for hundreds of years in China.</p><p>Evergreen Wellness Center distributes only the most pure and high-quality Traditional Chinese herbs and herbal products. You must make an appointment to receive an herbal consultation and diagnosis before purchasing herbs from our dispensary.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617123300/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an herbal consultation today!</p> 		\n			<h1>Massage</h1>		\n										<img width=\"600\" height=\"401\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nmm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nmm-300x201.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nm.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nm-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"400\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/nl.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/nl-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		<p><strong>O</strong><strong>riental Bodywork</strong></p><p>Tuina Anmo is the Chinese term for bone setting, muscle and joint manipulation and massage. Tuina Anmo is used for a variety of purposes, including as a treatment for all types of trauma, internal medicine, surgery, gynecology and pediatrics.</p><p>Massage therapy can do wonders for your body, both physically and mentally. Massage is an effective treatment for many health conditions. Benefits include:</p><p>Reduced stress and anxiety<br /> Relief from muscle tension and joint stiffness<br /> Increased blood circulation<br /> Reduced heart rate<br /> Induces relaxation<br /> Reduces back pain<br /> Relieves depression and insomnia<br /> Relieves Myofascial and Fibromyalgia pain<br /> Releives headaches/migraines</p><p>Our massage therapists are available by appointment Monday through Saturday to provide massage treatments for any reason, from rehabilitation therapy to relaxation.</p><p>For more information about our massage therapists on staff, click <a title=\"Our Staff\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=46\">HERE</a>.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160617122956/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment with one of our massage therapists.</p>		\n			<h1>Qigong</h1>		\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/taiji.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/taiji-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n										<img width=\"600\" height=\"399\" src=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg\" alt=\"\" srcset=\"http://evergreenwellness.com/wp-content/uploads/2018/04/th.jpg 600w, http://evergreenwellness.com/wp-content/uploads/2018/04/th-300x200.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n		 <p>Qigong (pronounced Chee Kung) is a method that combines body movement, breath exercise and mental concentration to exercise the body’s vital energy, or “Qi”. In China, Qigong is widely accepted for it’s curative effect, wide range of indications, ease to learn and safety. Today, there are over 200 million people practicing Qigong everyday in China, and it is gaining popularity throughout the world.</p><p>During Qigong exercises, you perform body movements to conduct the Qi to the place in which the you are concentrating with your mind. At the same time, different breath techniques are used depending on the exercise purpose. The exercises stimulate and balance the flow of Qi through the body, which helps enhance the body’s immune ability, postpone the aging process and develop the body’s potential.</p><p>Qigong has been widely used to treat many chronic diseases and also assist with a variety of issues:</p><p>Anemia<br /> Anxiety/Depression<br /> Arthritis<br /> Asthma<br /> Back Pain<br /> Bone Density<br /> Body Strength/Flexibility<br /> Concentration/Memory<br /> Hearing or Vision Impairment<br /> Hypertension (Greater Cardiac Efficiency, Improved Circulation, Stabilize Blood Pressure)<br /> Immune Cell Activity/Dysfunction<br /> Kidney Deficiencies<br /> Mental Health<br /> Overall Health and Well Being<br /> Sexual Dysfunction<br /> Tinnitus<br /> Weight Management</p><p>Qigong has two approaches. The first is self-healing or self-care. Individuals who want to improve their health do the Qigong exercise individually or in a group under the instruction of a qualified Qigong practitioner’s supervision. The second approach, External Qi healing, is a process whereby the Qigong practitioner’s energy is used to stimulate and balance the patient’s Qi so that illness can be healed. Both types of Qigong Therapy have been beneficial in treating individuals with respiratory, digestive, circulatory, urogenital, motor system and mental imbalance.</p><p>If you would like to find a way to prevent disease, maintain good health and assist your body in its healing processes then Qigong may be an alternative for you.</p><p><a title=\"Contact Us\" href=\"https://web.archive.org/web/20160503111017/http://evergreenwellness.com/?page_id=21\">Contact us</a> to schedule an appointment for a Qigong consultation.</p> ','Services','','inherit','closed','closed','','24-revision-v1','','','2018-04-07 19:27:12','2018-04-07 19:27:12','',24,'http://evergreenwellness.com/24-revision-v1/',0,'revision','',0),(606,1,'2018-04-07 20:09:53','2018-04-07 20:09:53','','3','','inherit','open','closed','','3','','','2018-04-07 20:09:53','2018-04-07 20:09:53','',0,'http://evergreenwellness.com/wp-content/uploads/2018/04/3.png',0,'attachment','image/png',0);
/*!40000 ALTER TABLE `aCPMymRSposts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `aCPMymRSterm_relationships`
--

DROP TABLE IF EXISTS `aCPMymRSterm_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `aCPMymRSterm_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `aCPMymRSterm_relationships`
--

LOCK TABLES `aCPMymRSterm_relationships` WRITE;
/*!40000 ALTER TABLE `aCPMymRSterm_relationships` DISABLE KEYS */;
INSERT INTO `aCPMymRSterm_relationships` VALUES (33,3,0),(433,6,0),(34,3,0),(35,3,0),(36,3,0),(37,3,0),(302,2,0),(614,7,0),(328,2,0),(333,2,0),(335,2,0),(350,2,0),(432,6,0),(431,6,0),(430,6,0),(429,6,0),(615,7,0),(616,7,0),(617,7,0);
/*!40000 ALTER TABLE `aCPMymRSterm_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `aCPMymRSterm_taxonomy`
--

DROP TABLE IF EXISTS `aCPMymRSterm_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `aCPMymRSterm_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=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `aCPMymRSterm_taxonomy`
--

LOCK TABLES `aCPMymRSterm_taxonomy` WRITE;
/*!40000 ALTER TABLE `aCPMymRSterm_taxonomy` DISABLE KEYS */;
INSERT INTO `aCPMymRSterm_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'elementor_library_type','',0,4),(3,3,'nav_menu','',0,5),(4,4,'elementor_library_type','',0,0),(6,6,'nav_menu','',0,5),(7,7,'nav_menu','',0,4);
/*!40000 ALTER TABLE `aCPMymRSterm_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `aCPMymRStermmeta`
--

DROP TABLE IF EXISTS `aCPMymRStermmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `aCPMymRStermmeta` (
  `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 DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `aCPMymRStermmeta`
--

LOCK TABLES `aCPMymRStermmeta` WRITE;
/*!40000 ALTER TABLE `aCPMymRStermmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `aCPMymRStermmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `aCPMymRSterms`
--

DROP TABLE IF EXISTS `aCPMymRSterms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `aCPMymRSterms` (
  `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=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `aCPMymRSterms`
--

LOCK TABLES `aCPMymRSterms` WRITE;
/*!40000 ALTER TABLE `aCPMymRSterms` DISABLE KEYS */;
INSERT INTO `aCPMymRSterms` VALUES (1,'Uncategorized','uncategorized',0),(2,'page','page',0),(3,'Main','main',0),(4,'section','section',0),(6,'main (2)','main-2',0),(7,'footer','footer',0);
/*!40000 ALTER TABLE `aCPMymRSterms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `aCPMymRSusermeta`
--

DROP TABLE IF EXISTS `aCPMymRSusermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `aCPMymRSusermeta` (
  `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 DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `aCPMymRSusermeta`
--

LOCK TABLES `aCPMymRSusermeta` WRITE;
/*!40000 ALTER TABLE `aCPMymRSusermeta` DISABLE KEYS */;
INSERT INTO `aCPMymRSusermeta` VALUES (1,1,'nickname','qzgao'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'aCPMymRScapabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'aCPMymRSuser_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','0'),(24,1,'session_tokens','a:3:{s:64:\"f951654c917a9f82d0333217887e4d2dc69f4ed56e89ba4a63bc1ef1e2f1ca5e\";a:4:{s:10:\"expiration\";i:1533668939;s:2:\"ip\";s:12:\"216.54.31.82\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0\";s:5:\"login\";i:1533496139;}s:64:\"91d6d89b111566153fce570b662de28cacfe8ad03e8e2baf5fff67d1cf697eb2\";a:4:{s:10:\"expiration\";i:1533669428;s:2:\"ip\";s:12:\"216.54.31.82\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0\";s:5:\"login\";i:1533496628;}s:64:\"999cad2995b286feb3dbb7f3e32ebf820425f5a1f4467b8273560a143b8893d9\";a:4:{s:10:\"expiration\";i:1533669613;s:2:\"ip\";s:12:\"216.54.31.82\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0\";s:5:\"login\";i:1533496813;}}'),(17,1,'aCPMymRSdashboard_quick_press_last_post_id','621'),(25,1,'default_password_nag',''),(19,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"216.54.31.0\";}'),(20,1,'aCPMymRSuser-settings','editor=tinymce&libraryContent=browse&advImgDetails=show'),(21,1,'aCPMymRSuser-settings-time','1522865924');
/*!40000 ALTER TABLE `aCPMymRSusermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `aCPMymRSusers`
--

DROP TABLE IF EXISTS `aCPMymRSusers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `aCPMymRSusers` (
  `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=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `aCPMymRSusers`
--

LOCK TABLES `aCPMymRSusers` WRITE;
/*!40000 ALTER TABLE `aCPMymRSusers` DISABLE KEYS */;
INSERT INTO `aCPMymRSusers` VALUES (1,'qzgao','$P$BFGIcSZEGgJq1Z0s5Gh/ue1HbuylMJ0','qzgao','qzgau@yahoo.com','','2018-03-27 22:49:25','',0,'qzgao');
/*!40000 ALTER TABLE `aCPMymRSusers` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2018-08-05 15:21:29
