-- MySQL dump 10.13  Distrib 5.6.32-78.1, for Linux (x86_64)
--
-- Host: localhost    Database: creat537_ss_dbname4dc
-- ------------------------------------------------------
-- Server version	5.6.32-78.1-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 `wp_upmt_commentmeta`
--

DROP TABLE IF EXISTS `wp_upmt_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_commentmeta`
--

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

--
-- Table structure for table `wp_upmt_comments`
--

DROP TABLE IF EXISTS `wp_upmt_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_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=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_comments`
--

LOCK TABLES `wp_upmt_comments` WRITE;
/*!40000 ALTER TABLE `wp_upmt_comments` DISABLE KEYS */;
INSERT INTO `wp_upmt_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2016-12-14 09:04:20','2016-12-14 09:04:20','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','',0,0);
/*!40000 ALTER TABLE `wp_upmt_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_upmt_links`
--

DROP TABLE IF EXISTS `wp_upmt_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_links`
--

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

--
-- Table structure for table `wp_upmt_nf3_action_meta`
--

DROP TABLE IF EXISTS `wp_upmt_nf3_action_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_nf3_action_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=165 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_nf3_action_meta`
--

LOCK TABLES `wp_upmt_nf3_action_meta` WRITE;
/*!40000 ALTER TABLE `wp_upmt_nf3_action_meta` DISABLE KEYS */;
INSERT INTO `wp_upmt_nf3_action_meta` VALUES (83,5,'label','Save to Database'),(84,5,'objectType','Action'),(85,5,'objectDomain','actions'),(86,5,'editActive',''),(87,5,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(88,5,'payment_gateways',''),(89,5,'payment_total',''),(90,5,'tag',''),(91,5,'to',''),(92,5,'email_subject',''),(93,5,'email_message',''),(94,5,'from_name',''),(95,5,'from_address',''),(96,5,'reply_to',''),(97,5,'email_format','html'),(98,5,'cc',''),(99,5,'bcc',''),(100,5,'attach_csv',''),(101,5,'redirect_url',''),(102,5,'email_message_plain',''),(103,6,'label','Email Confirmation'),(104,6,'to','{field:email}'),(105,6,'subject','This is an email action.'),(106,6,'message','Hello, Ninja Forms!'),(107,6,'objectType','Action'),(108,6,'objectDomain','actions'),(109,6,'editActive',''),(110,6,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(111,6,'payment_gateways',''),(112,6,'payment_total',''),(113,6,'tag',''),(114,6,'email_subject','Submission Confirmation '),(115,6,'email_message','<p>{field:all_fields}<br></p>'),(116,6,'from_name',''),(117,6,'from_address',''),(118,6,'reply_to',''),(119,6,'email_format','html'),(120,6,'cc',''),(121,6,'bcc',''),(122,6,'attach_csv',''),(123,6,'email_message_plain',''),(124,7,'objectType','Action'),(125,7,'objectDomain','actions'),(126,7,'editActive',''),(127,7,'label','Email Notification'),(128,7,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(129,7,'payment_gateways',''),(130,7,'payment_total',''),(131,7,'tag',''),(132,7,'to','{system:admin_email}'),(133,7,'email_subject','New message from {field:name}'),(134,7,'email_message','<p>{field:message}</p><p>-Â {field:name} (Â {field:email} )</p>'),(135,7,'from_name',''),(136,7,'from_address',''),(137,7,'reply_to','{field:email}'),(138,7,'email_format','html'),(139,7,'cc',''),(140,7,'bcc',''),(141,7,'attach_csv','0'),(142,7,'email_message_plain',''),(143,8,'label','Success Message'),(144,8,'message','Thank you {field:name} for filling out my form!'),(145,8,'objectType','Action'),(146,8,'objectDomain','actions'),(147,8,'editActive',''),(148,8,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(149,8,'payment_gateways',''),(150,8,'payment_total',''),(151,8,'tag',''),(152,8,'to',''),(153,8,'email_subject',''),(154,8,'email_message',''),(155,8,'from_name',''),(156,8,'from_address',''),(157,8,'reply_to',''),(158,8,'email_format','html'),(159,8,'cc',''),(160,8,'bcc',''),(161,8,'attach_csv',''),(162,8,'redirect_url',''),(163,8,'success_msg','<p>Form submitted successfully.</p><p>A confirmation email was sent to{field:email}.</p>'),(164,8,'email_message_plain','');
/*!40000 ALTER TABLE `wp_upmt_nf3_action_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_upmt_nf3_actions`
--

DROP TABLE IF EXISTS `wp_upmt_nf3_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_nf3_actions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` longtext COLLATE utf8mb4_unicode_520_ci,
  `key` longtext COLLATE utf8mb4_unicode_520_ci,
  `type` longtext COLLATE utf8mb4_unicode_520_ci,
  `active` tinyint(1) DEFAULT '1',
  `parent_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_nf3_actions`
--

LOCK TABLES `wp_upmt_nf3_actions` WRITE;
/*!40000 ALTER TABLE `wp_upmt_nf3_actions` DISABLE KEYS */;
INSERT INTO `wp_upmt_nf3_actions` VALUES (5,'','','save',1,2,'2016-08-24 22:39:20',NULL),(6,'','','email',1,2,'2016-08-24 22:39:20',NULL),(7,'','','email',1,2,'2016-08-24 22:47:39',NULL),(8,'','','successmessage',1,2,'2016-08-24 22:39:20',NULL);
/*!40000 ALTER TABLE `wp_upmt_nf3_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_upmt_nf3_field_meta`
--

DROP TABLE IF EXISTS `wp_upmt_nf3_field_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_nf3_field_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=521 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_nf3_field_meta`
--

LOCK TABLES `wp_upmt_nf3_field_meta` WRITE;
/*!40000 ALTER TABLE `wp_upmt_nf3_field_meta` DISABLE KEYS */;
INSERT INTO `wp_upmt_nf3_field_meta` VALUES (253,5,'label_pos','default'),(254,5,'required','1'),(255,5,'order','1'),(256,5,'placeholder',''),(257,5,'default',''),(258,5,'wrapper_class',''),(259,5,'element_class',''),(260,5,'objectType','Field'),(261,5,'objectDomain','fields'),(262,5,'editActive',''),(263,5,'container_class',''),(264,5,'input_limit',''),(265,5,'input_limit_type','characters'),(266,5,'input_limit_msg','Character(s) left'),(267,5,'manual_key',''),(268,5,'disable_input',''),(269,5,'admin_label',''),(270,5,'help_text',''),(271,5,'desc_text',''),(272,5,'disable_browser_autocomplete',''),(273,5,'mask',''),(274,5,'custom_mask',''),(275,5,'wrap_styles_background-color',''),(276,5,'wrap_styles_border',''),(277,5,'wrap_styles_border-style',''),(278,5,'wrap_styles_border-color',''),(279,5,'wrap_styles_color',''),(280,5,'wrap_styles_height',''),(281,5,'wrap_styles_width',''),(282,5,'wrap_styles_font-size',''),(283,5,'wrap_styles_margin',''),(284,5,'wrap_styles_padding',''),(285,5,'wrap_styles_display',''),(286,5,'wrap_styles_float',''),(287,5,'wrap_styles_show_advanced_css','0'),(288,5,'wrap_styles_advanced',''),(289,5,'label_styles_background-color',''),(290,5,'label_styles_border',''),(291,5,'label_styles_border-style',''),(292,5,'label_styles_border-color',''),(293,5,'label_styles_color',''),(294,5,'label_styles_height',''),(295,5,'label_styles_width',''),(296,5,'label_styles_font-size',''),(297,5,'label_styles_margin',''),(298,5,'label_styles_padding',''),(299,5,'label_styles_display',''),(300,5,'label_styles_float',''),(301,5,'label_styles_show_advanced_css','0'),(302,5,'label_styles_advanced',''),(303,5,'element_styles_background-color',''),(304,5,'element_styles_border',''),(305,5,'element_styles_border-style',''),(306,5,'element_styles_border-color',''),(307,5,'element_styles_color',''),(308,5,'element_styles_height',''),(309,5,'element_styles_width',''),(310,5,'element_styles_font-size',''),(311,5,'element_styles_margin',''),(312,5,'element_styles_padding',''),(313,5,'element_styles_display',''),(314,5,'element_styles_float',''),(315,5,'element_styles_show_advanced_css','0'),(316,5,'element_styles_advanced',''),(317,5,'cellcid','c3277'),(318,6,'label_pos','default'),(319,6,'required','1'),(320,6,'order','2'),(321,6,'placeholder',''),(322,6,'default',''),(323,6,'wrapper_class',''),(324,6,'element_class',''),(325,6,'objectType','Field'),(326,6,'objectDomain','fields'),(327,6,'editActive',''),(328,6,'container_class',''),(329,6,'admin_label',''),(330,6,'help_text',''),(331,6,'desc_text',''),(332,6,'wrap_styles_background-color',''),(333,6,'wrap_styles_border',''),(334,6,'wrap_styles_border-style',''),(335,6,'wrap_styles_border-color',''),(336,6,'wrap_styles_color',''),(337,6,'wrap_styles_height',''),(338,6,'wrap_styles_width',''),(339,6,'wrap_styles_font-size',''),(340,6,'wrap_styles_margin',''),(341,6,'wrap_styles_padding',''),(342,6,'wrap_styles_display',''),(343,6,'wrap_styles_float',''),(344,6,'wrap_styles_show_advanced_css','0'),(345,6,'wrap_styles_advanced',''),(346,6,'label_styles_background-color',''),(347,6,'label_styles_border',''),(348,6,'label_styles_border-style',''),(349,6,'label_styles_border-color',''),(350,6,'label_styles_color',''),(351,6,'label_styles_height',''),(352,6,'label_styles_width',''),(353,6,'label_styles_font-size',''),(354,6,'label_styles_margin',''),(355,6,'label_styles_padding',''),(356,6,'label_styles_display',''),(357,6,'label_styles_float',''),(358,6,'label_styles_show_advanced_css','0'),(359,6,'label_styles_advanced',''),(360,6,'element_styles_background-color',''),(361,6,'element_styles_border',''),(362,6,'element_styles_border-style',''),(363,6,'element_styles_border-color',''),(364,6,'element_styles_color',''),(365,6,'element_styles_height',''),(366,6,'element_styles_width',''),(367,6,'element_styles_font-size',''),(368,6,'element_styles_margin',''),(369,6,'element_styles_padding',''),(370,6,'element_styles_display',''),(371,6,'element_styles_float',''),(372,6,'element_styles_show_advanced_css','0'),(373,6,'element_styles_advanced',''),(374,6,'cellcid','c3281'),(375,7,'label_pos','default'),(376,7,'required','1'),(377,7,'order','5'),(378,7,'placeholder',''),(379,7,'default',''),(380,7,'wrapper_class',''),(381,7,'element_class',''),(382,7,'objectType','Field'),(383,7,'objectDomain','fields'),(384,7,'editActive',''),(385,7,'container_class',''),(386,7,'input_limit',''),(387,7,'input_limit_type','characters'),(388,7,'input_limit_msg','Character(s) left'),(389,7,'manual_key',''),(390,7,'disable_input',''),(391,7,'admin_label',''),(392,7,'help_text',''),(393,7,'desc_text',''),(394,7,'disable_browser_autocomplete',''),(395,7,'textarea_rte',''),(396,7,'disable_rte_mobile',''),(397,7,'textarea_media',''),(398,7,'wrap_styles_background-color',''),(399,7,'wrap_styles_border',''),(400,7,'wrap_styles_border-style',''),(401,7,'wrap_styles_border-color',''),(402,7,'wrap_styles_color',''),(403,7,'wrap_styles_height',''),(404,7,'wrap_styles_width',''),(405,7,'wrap_styles_font-size',''),(406,7,'wrap_styles_margin',''),(407,7,'wrap_styles_padding',''),(408,7,'wrap_styles_display',''),(409,7,'wrap_styles_float',''),(410,7,'wrap_styles_show_advanced_css','0'),(411,7,'wrap_styles_advanced',''),(412,7,'label_styles_background-color',''),(413,7,'label_styles_border',''),(414,7,'label_styles_border-style',''),(415,7,'label_styles_border-color',''),(416,7,'label_styles_color',''),(417,7,'label_styles_height',''),(418,7,'label_styles_width',''),(419,7,'label_styles_font-size',''),(420,7,'label_styles_margin',''),(421,7,'label_styles_padding',''),(422,7,'label_styles_display',''),(423,7,'label_styles_float',''),(424,7,'label_styles_show_advanced_css','0'),(425,7,'label_styles_advanced',''),(426,7,'element_styles_background-color',''),(427,7,'element_styles_border',''),(428,7,'element_styles_border-style',''),(429,7,'element_styles_border-color',''),(430,7,'element_styles_color',''),(431,7,'element_styles_height',''),(432,7,'element_styles_width',''),(433,7,'element_styles_font-size',''),(434,7,'element_styles_margin',''),(435,7,'element_styles_padding',''),(436,7,'element_styles_display',''),(437,7,'element_styles_float',''),(438,7,'element_styles_show_advanced_css','0'),(439,7,'element_styles_advanced',''),(440,7,'cellcid','c3284'),(441,8,'processing_label','Processing'),(442,8,'order','6'),(443,8,'objectType','Field'),(444,8,'objectDomain','fields'),(445,8,'editActive',''),(446,8,'container_class',''),(447,8,'element_class',''),(448,8,'wrap_styles_background-color',''),(449,8,'wrap_styles_border',''),(450,8,'wrap_styles_border-style',''),(451,8,'wrap_styles_border-color',''),(452,8,'wrap_styles_color',''),(453,8,'wrap_styles_height',''),(454,8,'wrap_styles_width',''),(455,8,'wrap_styles_font-size',''),(456,8,'wrap_styles_margin',''),(457,8,'wrap_styles_padding',''),(458,8,'wrap_styles_display',''),(459,8,'wrap_styles_float',''),(460,8,'wrap_styles_show_advanced_css','0'),(461,8,'wrap_styles_advanced',''),(462,8,'label_styles_background-color',''),(463,8,'label_styles_border',''),(464,8,'label_styles_border-style',''),(465,8,'label_styles_border-color',''),(466,8,'label_styles_color',''),(467,8,'label_styles_height',''),(468,8,'label_styles_width',''),(469,8,'label_styles_font-size',''),(470,8,'label_styles_margin',''),(471,8,'label_styles_padding',''),(472,8,'label_styles_display',''),(473,8,'label_styles_float',''),(474,8,'label_styles_show_advanced_css','0'),(475,8,'label_styles_advanced',''),(476,8,'element_styles_background-color',''),(477,8,'element_styles_border',''),(478,8,'element_styles_border-style',''),(479,8,'element_styles_border-color',''),(480,8,'element_styles_color',''),(481,8,'element_styles_height',''),(482,8,'element_styles_width',''),(483,8,'element_styles_font-size',''),(484,8,'element_styles_margin',''),(485,8,'element_styles_padding',''),(486,8,'element_styles_display',''),(487,8,'element_styles_float',''),(488,8,'element_styles_show_advanced_css','0'),(489,8,'element_styles_advanced',''),(490,8,'submit_element_hover_styles_background-color',''),(491,8,'submit_element_hover_styles_border',''),(492,8,'submit_element_hover_styles_border-style',''),(493,8,'submit_element_hover_styles_border-color',''),(494,8,'submit_element_hover_styles_color',''),(495,8,'submit_element_hover_styles_height',''),(496,8,'submit_element_hover_styles_width',''),(497,8,'submit_element_hover_styles_font-size',''),(498,8,'submit_element_hover_styles_margin',''),(499,8,'submit_element_hover_styles_padding',''),(500,8,'submit_element_hover_styles_display',''),(501,8,'submit_element_hover_styles_float',''),(502,8,'submit_element_hover_styles_show_advanced_css','0'),(503,8,'submit_element_hover_styles_advanced',''),(504,8,'cellcid','c3287'),(505,9,'objectType','Field'),(506,9,'objectDomain','fields'),(507,9,'editActive',''),(508,9,'order','3'),(509,9,'label_pos','default'),(510,9,'required',''),(511,9,'input_limit_type','characters'),(512,9,'input_limit_msg','Character(s) left'),(513,9,'manual_key',''),(514,10,'objectType','Field'),(515,10,'objectDomain','fields'),(516,10,'editActive',''),(517,10,'order','4'),(518,10,'label_pos','default'),(519,10,'required','1'),(520,10,'options','a:3:{i:0;a:7:{s:6:\"errors\";a:0:{}s:5:\"label\";s:22:\"Individual Counselling\";s:5:\"value\";s:22:\"individual-counselling\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:7:{s:6:\"errors\";a:0:{}s:5:\"label\";s:19:\"Couples Counselling\";s:5:\"value\";s:19:\"couples-counselling\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:2;a:7:{s:6:\"errors\";a:0:{}s:5:\"label\";s:15:\"Public Speaking\";s:5:\"value\";s:15:\"public-speaking\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}');
/*!40000 ALTER TABLE `wp_upmt_nf3_field_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_upmt_nf3_fields`
--

DROP TABLE IF EXISTS `wp_upmt_nf3_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_nf3_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `label` longtext COLLATE utf8mb4_unicode_520_ci,
  `key` longtext COLLATE utf8mb4_unicode_520_ci,
  `type` longtext COLLATE utf8mb4_unicode_520_ci,
  `parent_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_nf3_fields`
--

LOCK TABLES `wp_upmt_nf3_fields` WRITE;
/*!40000 ALTER TABLE `wp_upmt_nf3_fields` DISABLE KEYS */;
INSERT INTO `wp_upmt_nf3_fields` VALUES (5,'Name','name','textbox',2,'2016-08-24 22:39:20',NULL),(6,'Email','email','email',2,'2016-08-24 22:39:20',NULL),(7,'Message','message','textarea',2,'2016-08-24 22:39:20',NULL),(8,'Submit','submit','submit',2,'2016-08-24 22:39:20',NULL),(9,'Phone','phone_1486461957338','phone',2,'2017-02-07 10:08:46',NULL),(10,'I\'m interested in','i_m_interested_in_1486462025034','listselect',2,'2017-02-07 10:08:46',NULL);
/*!40000 ALTER TABLE `wp_upmt_nf3_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_upmt_nf3_form_meta`
--

DROP TABLE IF EXISTS `wp_upmt_nf3_form_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_nf3_form_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=196 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_nf3_form_meta`
--

LOCK TABLES `wp_upmt_nf3_form_meta` WRITE;
/*!40000 ALTER TABLE `wp_upmt_nf3_form_meta` DISABLE KEYS */;
INSERT INTO `wp_upmt_nf3_form_meta` VALUES (98,2,'default_label_pos','above'),(99,2,'_seq_num','3'),(100,2,'conditions','a:0:{}'),(101,2,'objectType','Form Setting'),(102,2,'editActive',''),(103,2,'show_title','1'),(104,2,'clear_complete','1'),(105,2,'hide_complete','1'),(106,2,'wrapper_class',''),(107,2,'element_class',''),(108,2,'add_submit','1'),(109,2,'logged_in',''),(110,2,'not_logged_in_msg',''),(111,2,'sub_limit_number',''),(112,2,'sub_limit_msg',''),(113,2,'calculations','a:0:{}'),(114,2,'formContentData','a:6:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:19:\"phone_1486461957338\";i:3;s:31:\"i_m_interested_in_1486462025034\";i:4;s:7:\"message\";i:5;s:6:\"submit\";}'),(195,2,'currency',''),(115,2,'container_styles_background-color',''),(116,2,'container_styles_border',''),(117,2,'container_styles_border-style',''),(118,2,'container_styles_border-color',''),(119,2,'container_styles_color',''),(120,2,'container_styles_height',''),(121,2,'container_styles_width',''),(122,2,'container_styles_font-size',''),(123,2,'container_styles_margin',''),(124,2,'container_styles_padding',''),(125,2,'container_styles_display',''),(126,2,'container_styles_float',''),(127,2,'container_styles_show_advanced_css','0'),(128,2,'container_styles_advanced',''),(129,2,'title_styles_background-color',''),(130,2,'title_styles_border',''),(131,2,'title_styles_border-style',''),(132,2,'title_styles_border-color',''),(133,2,'title_styles_color',''),(134,2,'title_styles_height',''),(135,2,'title_styles_width',''),(136,2,'title_styles_font-size',''),(137,2,'title_styles_margin',''),(138,2,'title_styles_padding',''),(139,2,'title_styles_display',''),(140,2,'title_styles_float',''),(141,2,'title_styles_show_advanced_css','0'),(142,2,'title_styles_advanced',''),(143,2,'row_styles_background-color',''),(144,2,'row_styles_border',''),(145,2,'row_styles_border-style',''),(146,2,'row_styles_border-color',''),(147,2,'row_styles_color',''),(148,2,'row_styles_height',''),(149,2,'row_styles_width',''),(150,2,'row_styles_font-size',''),(151,2,'row_styles_margin',''),(152,2,'row_styles_padding',''),(153,2,'row_styles_display',''),(154,2,'row_styles_show_advanced_css','0'),(155,2,'row_styles_advanced',''),(156,2,'row-odd_styles_background-color',''),(157,2,'row-odd_styles_border',''),(158,2,'row-odd_styles_border-style',''),(159,2,'row-odd_styles_border-color',''),(160,2,'row-odd_styles_color',''),(161,2,'row-odd_styles_height',''),(162,2,'row-odd_styles_width',''),(163,2,'row-odd_styles_font-size',''),(164,2,'row-odd_styles_margin',''),(165,2,'row-odd_styles_padding',''),(166,2,'row-odd_styles_display',''),(167,2,'row-odd_styles_show_advanced_css','0'),(168,2,'row-odd_styles_advanced',''),(169,2,'success-msg_styles_background-color',''),(170,2,'success-msg_styles_border',''),(171,2,'success-msg_styles_border-style',''),(172,2,'success-msg_styles_border-color',''),(173,2,'success-msg_styles_color',''),(174,2,'success-msg_styles_height',''),(175,2,'success-msg_styles_width',''),(176,2,'success-msg_styles_font-size',''),(177,2,'success-msg_styles_margin',''),(178,2,'success-msg_styles_padding',''),(179,2,'success-msg_styles_display',''),(180,2,'success-msg_styles_show_advanced_css','0'),(181,2,'success-msg_styles_advanced',''),(182,2,'error_msg_styles_background-color',''),(183,2,'error_msg_styles_border',''),(184,2,'error_msg_styles_border-style',''),(185,2,'error_msg_styles_border-color',''),(186,2,'error_msg_styles_color',''),(187,2,'error_msg_styles_height',''),(188,2,'error_msg_styles_width',''),(189,2,'error_msg_styles_font-size',''),(190,2,'error_msg_styles_margin',''),(191,2,'error_msg_styles_padding',''),(192,2,'error_msg_styles_display',''),(193,2,'error_msg_styles_show_advanced_css','0'),(194,2,'error_msg_styles_advanced','');
/*!40000 ALTER TABLE `wp_upmt_nf3_form_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_upmt_nf3_forms`
--

DROP TABLE IF EXISTS `wp_upmt_nf3_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_nf3_forms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` longtext COLLATE utf8mb4_unicode_520_ci,
  `key` longtext COLLATE utf8mb4_unicode_520_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  `views` int(11) DEFAULT NULL,
  `subs` int(11) DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_nf3_forms`
--

LOCK TABLES `wp_upmt_nf3_forms` WRITE;
/*!40000 ALTER TABLE `wp_upmt_nf3_forms` DISABLE KEYS */;
INSERT INTO `wp_upmt_nf3_forms` VALUES (2,'Contact Me','','2016-08-24 22:39:20',NULL,NULL,NULL);
/*!40000 ALTER TABLE `wp_upmt_nf3_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_upmt_nf3_object_meta`
--

DROP TABLE IF EXISTS `wp_upmt_nf3_object_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_nf3_object_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_nf3_object_meta`
--

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

--
-- Table structure for table `wp_upmt_nf3_objects`
--

DROP TABLE IF EXISTS `wp_upmt_nf3_objects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_nf3_objects` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` longtext COLLATE utf8mb4_unicode_520_ci,
  `title` longtext COLLATE utf8mb4_unicode_520_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_nf3_objects`
--

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

--
-- Table structure for table `wp_upmt_nf3_relationships`
--

DROP TABLE IF EXISTS `wp_upmt_nf3_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_nf3_relationships` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `child_id` int(11) NOT NULL,
  `child_type` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent_id` int(11) NOT NULL,
  `parent_type` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_nf3_relationships`
--

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

--
-- Table structure for table `wp_upmt_options`
--

DROP TABLE IF EXISTS `wp_upmt_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=817 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_options`
--

LOCK TABLES `wp_upmt_options` WRITE;
/*!40000 ALTER TABLE `wp_upmt_options` DISABLE KEYS */;
INSERT INTO `wp_upmt_options` VALUES (1,'siteurl','http://www.creativedezinesolutions.com/demo/tiela/dev','yes'),(2,'home','http://www.creativedezinesolutions.com/demo/tiela/dev','yes'),(3,'blogname','Tiela Garnett','yes'),(4,'blogdescription','Path Of The True Self','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','tielag@hotmail.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','0','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','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:160:{s:10:\"project/?$\";s:27:\"index.php?post_type=project\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=project&paged=$matches[1]\";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:40:\"et_pb_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"et_pb_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"et_pb_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"et_pb_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"et_pb_layout/([^/]+)/embed/?$\";s:60:\"index.php?post_type=et_pb_layout&name=$matches[1]&embed=true\";s:33:\"et_pb_layout/([^/]+)/trackback/?$\";s:54:\"index.php?post_type=et_pb_layout&name=$matches[1]&tb=1\";s:41:\"et_pb_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&paged=$matches[2]\";s:48:\"et_pb_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&cpage=$matches[2]\";s:37:\"et_pb_layout/([^/]+)(?:/([0-9]+))?/?$\";s:66:\"index.php?post_type=et_pb_layout&name=$matches[1]&page=$matches[2]\";s:29:\"et_pb_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"et_pb_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"et_pb_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"et_pb_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:46:\"scope/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?scope=$matches[1]&feed=$matches[2]\";s:41:\"scope/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?scope=$matches[1]&feed=$matches[2]\";s:22:\"scope/([^/]+)/embed/?$\";s:38:\"index.php?scope=$matches[1]&embed=true\";s:34:\"scope/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?scope=$matches[1]&paged=$matches[2]\";s:16:\"scope/([^/]+)/?$\";s:27:\"index.php?scope=$matches[1]\";s:52:\"layout_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_type=$matches[1]&feed=$matches[2]\";s:47:\"layout_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_type=$matches[1]&feed=$matches[2]\";s:28:\"layout_type/([^/]+)/embed/?$\";s:44:\"index.php?layout_type=$matches[1]&embed=true\";s:40:\"layout_type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?layout_type=$matches[1]&paged=$matches[2]\";s:22:\"layout_type/([^/]+)/?$\";s:33:\"index.php?layout_type=$matches[1]\";s:53:\"module_width/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?module_width=$matches[1]&feed=$matches[2]\";s:48:\"module_width/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?module_width=$matches[1]&feed=$matches[2]\";s:29:\"module_width/([^/]+)/embed/?$\";s:45:\"index.php?module_width=$matches[1]&embed=true\";s:41:\"module_width/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?module_width=$matches[1]&paged=$matches[2]\";s:23:\"module_width/([^/]+)/?$\";s:34:\"index.php?module_width=$matches[1]\";s:56:\"layout_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:51:\"layout_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:32:\"layout_category/([^/]+)/embed/?$\";s:48:\"index.php?layout_category=$matches[1]&embed=true\";s:44:\"layout_category/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?layout_category=$matches[1]&paged=$matches[2]\";s:26:\"layout_category/([^/]+)/?$\";s:37:\"index.php?layout_category=$matches[1]\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:40:\"index.php?project=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?project=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"project_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:52:\"project_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:33:\"project_category/([^/]+)/embed/?$\";s:49:\"index.php?project_category=$matches[1]&embed=true\";s:45:\"project_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?project_category=$matches[1]&paged=$matches[2]\";s:27:\"project_category/([^/]+)/?$\";s:38:\"index.php?project_category=$matches[1]\";s:52:\"project_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:47:\"project_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:28:\"project_tag/([^/]+)/embed/?$\";s:44:\"index.php?project_tag=$matches[1]&embed=true\";s:40:\"project_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?project_tag=$matches[1]&paged=$matches[2]\";s:22:\"project_tag/([^/]+)/?$\";s:33:\"index.php?project_tag=$matches[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=45&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:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:4:{i:0;s:19:\"akismet/akismet.php\";i:1;s:35:\"backupwordpress/backupwordpress.php\";i:2;s:27:\"ninja-forms/ninja-forms.php\";i:3;s:24:\"wordpress-seo/wp-seo.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:75:\"/home1/creat537/public_html/demo/tiela/dev/wp-content/themes/Divi/style.css\";i:2;s:0:\"\";}','no'),(40,'template','Divi','yes'),(41,'stylesheet','Divi','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:2:{s:37:\"optinmonster/optin-monster-wp-api.php\";s:32:\"optin_monster_api_uninstall_hook\";s:27:\"ninja-forms/ninja-forms.php\";s:21:\"ninja_forms_uninstall\";}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','45','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,'wp_upmt_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{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:15:\"wpseo_bulk_edit\";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:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";N;s:9:\"sidebar-5\";N;s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'cron','a:10:{i:1486541194;a:1:{s:14:\"mm_cron_hourly\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1486544662;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:1486544784;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1486544794;a:2:{s:13:\"mm_cron_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:18:\"mm_cron_twicedaily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1486549448;a:1:{s:29:\"wp_session_garbage_collection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1486558819;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;}}}i:1486594800;a:1:{s:19:\"hmbkp_schedule_hook\";a:1:{s:32:\"2b124592708805254361aa242f2737c5\";a:3:{s:8:\"schedule\";s:11:\"fortnightly\";s:4:\"args\";a:1:{s:2:\"id\";s:10:\"1486538729\";}s:8:\"interval\";i:1209600;}}}i:1486868400;a:1:{s:19:\"hmbkp_schedule_hook\";a:1:{s:32:\"b796e32f5a2dcd6cdf48eb321b467006\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:1:{s:2:\"id\";s:10:\"1486538730\";}s:8:\"interval\";i:604800;}}}i:1489141448;a:1:{s:13:\"nf_optin_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"nf-monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2678400;}}}s:7:\"version\";i:2;}','yes'),(105,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1481714972;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'),(108,'optinmonster_trial_id','1258907','yes'),(109,'mm_host','b7182c02-0c17-11e2-8b3b-0030483370c8','yes'),(110,'mm_brand','Just_Host','yes'),(111,'_mm_refresh_token','57bc59af-6a2c-4f2c-b4e8-6c684219cb1b','yes'),(112,'endurance_user','1','yes'),(213,'jpsq_sync-1481710345.120125-227775-2','a:5:{i:0;s:14:\"updated_option\";i:1;a:3:{i:0;s:14:\"active_plugins\";i:1;a:2:{i:0;s:19:\"akismet/akismet.php\";i:3;s:19:\"jetpack/jetpack.php\";}i:2;a:1:{i:0;s:19:\"akismet/akismet.php\";}}i:2;i:1;i:3;d:1481710345.1201119;i:4;b:0;}','no'),(113,'jetpack_activated','1','yes'),(115,'jetpack_file_data','a:1:{s:5:\"4.4.2\";a:50:{s:32:\"31e5b9ae08b62c2b0cd8a7792242298b\";a:14:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:40:\"Check your spelling, style, and grammar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";}s:32:\"3f41b2d629265b5de8108b463abbe8e2\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:64:\"Transform image galleries into gorgeous, full-screen slideshows.\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";}s:32:\"c6ebb418dde302de09600a6025370583\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:65:\"Allow comments with WordPress.com, Twitter, Facebook, or Google+.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";}s:32:\"836f9485669e1bbb02920cb474730df0\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:57:\"Insert a customizable contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:18:\"Writing, Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";}s:32:\"ea3970eebf8aac55fc3eca5dca0e0157\";a:14:{s:4:\"name\";s:20:\"Custom Content Types\";s:11:\"description\";s:61:\"Organize and display different types of content on your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";}s:32:\"d2bb05ccad3d8789df40ca3abb97336c\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:53:\"Tweak your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";}s:32:\"a2064eec5b9c7e0d816af71dee7a715f\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"53a4ec755022ef3953699734c343da02\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";}s:32:\"72fecb67ee6704ba0a33e0225316ad06\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"d56e2886185a9eace719cc57d46770df\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";}s:32:\"e391e760617bd0e0736550e34a73d7fe\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:8:\"2.0.3 ??\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"2e345370766346c616b3c5046e817720\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:54:\"Automatically load new content when a visitor scrolls.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";}s:32:\"bd69edbf134de5fae8fdcf2e70a45b56\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";}s:32:\"8110b7a4423aaa619dfa46b8843e10d1\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:57:\"Use LaTeX markup for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";}s:32:\"fd7e85d3b4887fa6b6f997d6592c1f33\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";}s:32:\"c5dfef41fad5bcdcaae8e315e5cfc420\";a:14:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:54:\"Manage all of your sites from a centralized dashboard.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from <a href=\"https://wordpress.com/plugins/\" target=\"_blank\">wordpress.com</a>.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";}s:32:\"fd6dc399b92bce76013427e3107c314f\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:51:\"Write posts or pages in plain-text Markdown syntax.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";}s:32:\"c49a35b6482b0426cb07ad28ecf5d7df\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:47:\"Optimize your site for smartphones and tablets.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";}s:32:\"b42e38f6fafd2e4104ebe5bf39b4be47\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"771cfeeba0d3d23ec344d5e781fb0ae2\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"54f0661d27c814fc8bde39580181d939\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"46c4c413b5c72bbd3c3dbd14ff8f8adc\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"9ea52fa25783e5ceeb6bfaed3268e64e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";}s:32:\"cfcaafd0fcad087899d715e0b877474d\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";}s:32:\"0d18bfa69bec61550c1d813ce64149b0\";a:14:{s:4:\"name\";s:10:\"Omnisearch\";s:11:\"description\";s:66:\"Search your entire database from a single field in your dashboard.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"16\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:6:\"search\";}s:32:\"3f0a11e23118f0788d424b646a6d465f\";a:14:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:27:\"Speed up images and photos.\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:34:\"Recommended, Jumpstart, Appearance\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";}s:32:\"e37cfbcb72323fb1fe8255a2edb4d738\";a:14:{s:4:\"name\";s:13:\"Post by Email\";s:11:\"description\";s:34:\"Publish posts by sending an email.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";}s:32:\"728290d131a480bfe7b9e405d7cd925f\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:43:\"Prevent and block malicious login attempts.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:65:\"security, secure, protection, botnet, brute force, protect, login\";}s:32:\"f9ce784babbbf4dcca99b8cd2ceb420c\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:27:\"Automated social marketing.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:107:\"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing\";}s:32:\"052c03877dd3d296a71531cb07ad939a\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"52edecb2a75222e75b2dce4356a4efce\";a:14:{s:4:\"name\";s:13:\"Related Posts\";s:11:\"description\";s:64:\"Increase page views by showing related content to your visitors.\";s:14:\"jumpstart_desc\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";}s:32:\"68b0d01689803c0ea7e4e60a86de2519\";a:14:{s:4:\"name\";s:9:\"SEO tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:14:\"jumpstart_desc\";s:50:\"Better results on search engines and social media.\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:18:\"Traffic, Jumpstart\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";}s:32:\"8b059cb50a66b717f1ec842e736b858c\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:37:\"Allow visitors to share your content.\";s:14:\"jumpstart_desc\";s:116:\"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";}s:32:\"a6d2394329871857401255533a9873f7\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:50:\"Embed media from popular sites without any coding.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:245:\"shortcodes, shortcode, embeds, media, bandcamp, blip.tv, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";}s:32:\"21496e2897ea5f81605e2f2ac3beb921\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:54:\"Create short and simple links for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";}s:32:\"e2a54a5d7879a4162709e6ffb540dd08\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"f5c537bc304f55b29c1a87e30be0cd24\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";}s:32:\"59a23643437358a9b557f1d1e20ab040\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"6a90f97c3194cfca5671728eaaeaf15e\";a:14:{s:4:\"name\";s:14:\"Single Sign On\";s:11:\"description\";s:46:\"Secure user authentication with WordPress.com.\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";}s:32:\"b65604e920392e2f7134b646760b75e8\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";}s:32:\"23a586dd7ead00e69ec53eb32ef740e4\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:55:\"Notify your readers of new posts and comments by email.\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";}s:32:\"1d978b8d84d2f378fe1a702a67633b6d\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"b3b983461d7f3d27322a3551ed8a9405\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";}s:32:\"d924e5b05722b0e104448543598f54c0\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"36741583b10c521997e563ad8e1e8b77\";a:14:{s:4:\"name\";s:12:\"Data Backups\";s:11:\"description\";s:54:\"Off-site backups, security scans, and automatic fixes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";}s:32:\"2b9b44f09b5459617d68dd82ee17002a\";a:14:{s:4:\"name\";s:17:\"Site Verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";}s:32:\"5ab4c0db7c42e10e646342da0274c491\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:44:\"Powerful, simple video hosting for WordPress\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:25:\"video, videos, videopress\";}s:32:\"60a1d3aa38bc0fe1039e59dd60888543\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";}s:32:\"174ed3416476c2cb9ff5b0f671280b15\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:54:\"Add images, Twitter streams, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";}s:32:\"28b931a1db19bd24869bd54b14e733d5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}}}','yes'),(116,'jetpack_available_modules','a:1:{s:5:\"4.4.2\";a:37:{s:18:\"after-the-deadline\";s:3:\"1.1\";s:8:\"carousel\";s:3:\"1.5\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:5:\"likes\";s:3:\"2.2\";s:6:\"manage\";s:3:\"3.4\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"omnisearch\";s:3:\"2.3\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";}}','yes'),(117,'jetpack_options','a:2:{s:7:\"version\";s:16:\"4.4.2:1481706262\";s:11:\"old_version\";s:16:\"4.4.2:1481706262\";}','yes'),(118,'_transient_timeout_mm_api_calls','1481792749','no'),(119,'_transient_mm_api_calls','a:2:{s:32:\"8b6414ea1a1f66f96e32726bc72b5763\";a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:10:{s:6:\"server\";s:12:\"nginx/1.10.1\";s:4:\"date\";s:29:\"Wed, 14 Dec 2016 09:04:23 GMT\";s:12:\"content-type\";s:16:\"application/json\";s:14:\"content-length\";s:3:\"461\";s:13:\"last-modified\";s:29:\"Thu, 19 May 2016 17:58:06 GMT\";s:4:\"etag\";s:14:\"\"573dfeae-1cd\"\";s:13:\"accept-ranges\";a:2:{i:0;s:5:\"bytes\";i:1;s:5:\"bytes\";}s:11:\"x-cacheable\";s:17:\"NO: Not Cacheable\";s:9:\"x-varnish\";s:9:\"408755670\";s:7:\"x-cache\";s:4:\"MISS\";}}s:4:\"body\";s:461:\"{\n   \"BlueHost\":\"bluehost\",\n   \"BlueHost_for_Education\":\"bluehost\",\n   \"BlueHost_Optimized_for_WordPress\":\"bluehost\",\n   \"Bluehost_QI\":\"bluehost\",\n   \"Just_Host\":\"default\",\n   \"Just_Host_QI\":\"default\",\n   \"HostMonster\":\"default\",\n   \"Hostmonster_QI\":\"default\",\n   \"HostGator_QI\":\"default\",\n   \"HostGator_com_for_Resellers\":\"default\",\n   \"Hostgator_Com_LLC\":\"default\",\n   \"HostGatorSG\":\"default\",\n   \"iPower\":\"ipower\",\n   \"iPage\":\"ipage\",\n   \"FatCow\":\"fatcow\"\n}\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:461:\"{\n   \"BlueHost\":\"bluehost\",\n   \"BlueHost_for_Education\":\"bluehost\",\n   \"BlueHost_Optimized_for_WordPress\":\"bluehost\",\n   \"Bluehost_QI\":\"bluehost\",\n   \"Just_Host\":\"default\",\n   \"Just_Host_QI\":\"default\",\n   \"HostMonster\":\"default\",\n   \"Hostmonster_QI\":\"default\",\n   \"HostGator_QI\":\"default\",\n   \"HostGator_com_for_Resellers\":\"default\",\n   \"Hostgator_Com_LLC\":\"default\",\n   \"HostGatorSG\":\"default\",\n   \"iPower\":\"ipower\",\n   \"iPage\":\"ipage\",\n   \"FatCow\":\"fatcow\"\n}\n\";s:3:\"raw\";s:792:\"HTTP/1.1 200 OK\r\nServer: nginx/1.10.1\r\nDate: Wed, 14 Dec 2016 09:04:23 GMT\r\nContent-Type: application/json\r\nContent-Length: 461\r\nConnection: close\r\nLast-Modified: Thu, 19 May 2016 17:58:06 GMT\r\nETag: \"573dfeae-1cd\"\r\nAccept-Ranges: bytes\r\nX-Cacheable: NO: Not Cacheable\r\nAccept-Ranges: bytes\r\nX-Varnish: 408755670\r\nX-Cache: MISS\r\n\r\n{\n   \"BlueHost\":\"bluehost\",\n   \"BlueHost_for_Education\":\"bluehost\",\n   \"BlueHost_Optimized_for_WordPress\":\"bluehost\",\n   \"Bluehost_QI\":\"bluehost\",\n   \"Just_Host\":\"default\",\n   \"Just_Host_QI\":\"default\",\n   \"HostMonster\":\"default\",\n   \"Hostmonster_QI\":\"default\",\n   \"HostGator_QI\":\"default\",\n   \"HostGator_com_for_Resellers\":\"default\",\n   \"Hostgator_Com_LLC\":\"default\",\n   \"HostGatorSG\":\"default\",\n   \"iPower\":\"ipower\",\n   \"iPage\":\"ipage\",\n   \"FatCow\":\"fatcow\"\n}\n\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:10:{s:6:\"server\";a:1:{i:0;s:12:\"nginx/1.10.1\";}s:4:\"date\";a:1:{i:0;s:29:\"Wed, 14 Dec 2016 09:04:23 GMT\";}s:12:\"content-type\";a:1:{i:0;s:16:\"application/json\";}s:14:\"content-length\";a:1:{i:0;s:3:\"461\";}s:13:\"last-modified\";a:1:{i:0;s:29:\"Thu, 19 May 2016 17:58:06 GMT\";}s:4:\"etag\";a:1:{i:0;s:14:\"\"573dfeae-1cd\"\";}s:13:\"accept-ranges\";a:2:{i:0;s:5:\"bytes\";i:1;s:5:\"bytes\";}s:11:\"x-cacheable\";a:1:{i:0;s:17:\"NO: Not Cacheable\";}s:9:\"x-varnish\";a:1:{i:0;s:9:\"408755670\";}s:7:\"x-cache\";a:1:{i:0;s:4:\"MISS\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1000000000000001;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:69:\"https://www.mojomarketplace.com/mojo-plugin-assets/json/branding.json\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}s:32:\"7e33963398763a33156df13bbbd65f73\";a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:12:\"content-type\";s:24:\"text/html; charset=UTF-8\";s:4:\"date\";s:29:\"Wed, 14 Dec 2016 09:05:49 GMT\";s:6:\"server\";s:12:\"nginx/1.10.1\";s:10:\"set-cookie\";s:131:\"SESSION=07u3tsus9ge7q9uknhjsulphl1; expires=Wed, 14-Dec-2016 09:06:49 GMT; Max-Age=60; path=/; domain=mojomarketplace.com; HttpOnly\";s:12:\"x-powered-by\";s:10:\"PHP/5.6.22\";s:14:\"content-length\";s:1:\"0\";}}s:4:\"body\";b:0;s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:1:{i:0;O:14:\"WP_Http_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"07u3tsus9ge7q9uknhjsulphl1\";s:7:\"expires\";i:1481706409;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";}}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";b:0;s:3:\"raw\";s:327:\"HTTP/1.1 200 OK\r\nContent-Type: text/html; charset=UTF-8\r\nDate: Wed, 14 Dec 2016 09:05:49 GMT\r\nServer: nginx/1.10.1\r\nSet-Cookie: SESSION=07u3tsus9ge7q9uknhjsulphl1; expires=Wed, 14-Dec-2016 09:06:49 GMT; Max-Age=60; path=/; domain=mojomarketplace.com; HttpOnly\r\nX-Powered-By: PHP/5.6.22\r\nContent-Length: 0\r\nConnection: Close\r\n\r\n\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:6:{s:12:\"content-type\";a:1:{i:0;s:24:\"text/html; charset=UTF-8\";}s:4:\"date\";a:1:{i:0;s:29:\"Wed, 14 Dec 2016 09:05:49 GMT\";}s:6:\"server\";a:1:{i:0;s:12:\"nginx/1.10.1\";}s:10:\"set-cookie\";a:1:{i:0;s:131:\"SESSION=07u3tsus9ge7q9uknhjsulphl1; expires=Wed, 14-Dec-2016 09:06:49 GMT; Max-Age=60; path=/; domain=mojomarketplace.com; HttpOnly\";}s:12:\"x-powered-by\";a:1:{i:0;s:10:\"PHP/5.6.22\";}s:14:\"content-length\";a:1:{i:0;s:1:\"0\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1000000000000001;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:55:\"http://api.mojomarketplace.com/api/v1/meta/landing_page\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:1:{s:7:\"SESSION\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"07u3tsus9ge7q9uknhjsulphl1\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:5:{s:7:\"expires\";i:1481706409;s:7:\"max-age\";i:1481706409;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";s:8:\"httponly\";b:1;}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1481706349;s:11:\"last-access\";i:1481706349;s:10:\"persistent\";b:0;s:9:\"host-only\";b:0;}s:14:\"reference_time\";i:1481706349;}}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}}','no'),(121,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(122,'widget_optin-monster-api','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(140,'widget_ctct_form','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(124,'_transient_timeout_mm_test','1489482348','no'),(125,'_transient_mm_test','a:2:{s:4:\"name\";s:23:\"jetpack-onboarding-v1.5\";s:3:\"key\";s:32:\"caa132511cc49b876c4b641cb879d8cd\";}','no'),(126,'mm_previous_tests','a:1:{i:0;s:23:\"jetpack-onboarding-v1.5\";}','yes'),(127,'mm_install_date','Dec 14, 2016','yes'),(128,'mm_cron','a:4:{s:6:\"hourly\";a:0:{}s:5:\"daily\";a:1:{s:14:\"plugin_version\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:14:\"plugin_version\";s:2:\"el\";s:5:\"1.1.1\";}}s:7:\"monthly\";a:4:{s:11:\"php_version\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:11:\"php_version\";s:2:\"el\";s:6:\"5.4.43\";}s:12:\"plugin_count\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:12:\"plugin_count\";s:2:\"el\";i:6;}s:11:\"theme_count\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:11:\"theme_count\";s:2:\"el\";i:3;}s:13:\"current_theme\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:13:\"current_theme\";s:2:\"el\";s:15:\"twentyseventeen\";}}s:6:\"weekly\";a:1:{s:10:\"wp_version\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:10:\"wp_version\";s:2:\"el\";s:3:\"4.7\";}}}','yes'),(129,'mm_coming_soon','true','yes'),(465,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:20:\"anshul1304@gmail.com\";s:7:\"version\";s:5:\"4.7.2\";s:9:\"timestamp\";i:1485551573;}','no'),(143,'_transient_timeout_mm_spam_e3805f10afecee659b65e91e1705d23d','1481792759','no'),(781,'_site_transient_timeout_theme_roots','1486540369','no'),(782,'_site_transient_theme_roots','a:2:{s:4:\"Divi\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";}','no'),(756,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1486538719;s:7:\"checked\";a:2:{s:4:\"Divi\";s:6:\"3.0.23\";s:15:\"twentyseventeen\";s:3:\"1.0\";}s:8:\"response\";a:2:{s:15:\"twentyseventeen\";a:4:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.1.1.zip\";}s:4:\"Divi\";a:2:{s:11:\"new_version\";s:6:\"3.0.33\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";}}s:12:\"translations\";a:0:{}}','no'),(187,'_transient_timeout_jetpack_idc_allowed','1481713601','no'),(188,'_transient_jetpack_idc_allowed','1','no'),(135,'ctct_plugin_version','1.1.1','yes'),(142,'_transient__omapi_validate','1','no'),(141,'_transient_timeout__omapi_validate','1481792786','no'),(144,'_transient_mm_spam_e3805f10afecee659b65e91e1705d23d','no','no'),(145,'_transient_timeout_mm_icon_hash','1482311184','no'),(146,'_transient_mm_icon_hash','PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4wLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL1RSLzIwMDEvUkVDLVNWRy0yMDAxMDkwNC9EVEQvc3ZnMTAuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4wIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA0MCA0MCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNDAgNDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTMuMSwzMS4zYy0wLjcsMC0xLjUtMC4zLTItMC44Yy0xLjEtMS4xLTEuMS0yLjksMC00TDE3LjksOS42YzEuMS0xLjEsMi45LTEuMSw0LDBjMS4xLDEuMSwxLjEsMi45LDAsNA0KCQlMNS4xLDMwLjRDNC41LDMxLDMuOCwzMS4zLDMuMSwzMS4zeiIvPg0KCTxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0xOS43LDMxLjNjLTAuNywwLTEuNS0wLjMtMi0wLjhjLTEuMS0xLjEtMS4xLTIuOSwwLTRMMzQuNCw5LjZjMC45LTAuOSwyLjItMS4yLDMuNC0wLjcNCgkJYzEuMiwwLjUsMS45LDEuNiwxLjksMi45djE2LjZjMCwxLjYtMS4zLDIuOC0yLjgsMi44cy0yLjgtMS4zLTIuOC0yLjhWMTguMUwyMS43LDMwLjRDMjEuMiwzMSwyMC40LDMxLjMsMTkuNywzMS4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=','no'),(148,'do_activate','0','yes'),(149,'_transient_timeout_jetpack_https_test','1481792786','no'),(150,'_transient_jetpack_https_test','1','no'),(151,'_transient_timeout_jetpack_https_test_message','1481792786','no'),(152,'_transient_jetpack_https_test_message','','no'),(153,'_transient_timeout_staging_auth_token','1481706446','no'),(154,'_transient_staging_auth_token','sFfTot132ZAibKwFrfl3sEeSka14ZZfM','no'),(155,'staging_config','a:5:{s:14:\"production_dir\";s:43:\"/home1/creat537/public_html/demo/tiela/dev/\";s:11:\"staging_dir\";s:56:\"/home1/creat537/public_html/demo/tiela/dev/staging/7772/\";s:14:\"production_url\";s:53:\"http://www.creativedezinesolutions.com/demo/tiela/dev\";s:11:\"staging_url\";s:66:\"http://www.creativedezinesolutions.com/demo/tiela/dev/staging/7772\";s:13:\"creation_date\";s:12:\"Dec 14, 2016\";}','yes'),(183,'_site_transient_timeout_wporg_theme_feature_list','1481721932','no'),(160,'_site_transient_timeout_browser_34f676f9c342b94e657bdc22b061ef1c','1482311194','no'),(157,'mm_churn','a:4:{s:2:\"ip\";s:14:\"173.254.28.135\";s:6:\"whoami\";s:8:\"creat537\";s:3:\"key\";s:2008:\"\n\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html>\n  <head>\n    <title>404 Not Found</title>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n    <style type=\"text/css\">\n        body {\n        	font-family: Verdana, Arial, Helvetica, sans-serif;\n        	font-size: 12px;\n        	background-color:#367E8E;\n        	scrollbar-base-color: #005B70;\n        	scrollbar-arrow-color: #F3960B;\n        	scrollbar-DarkShadow-Color: #000000;\n        	color: #FFFFFF;\n			margin:0;\n        }\n        a { color:#021f25; text-decoration:none}\n        h1 {\n        	font-size: 18px;\n        	color: #FB9802;\n        	padding-bottom: 10px;\n        	background-image: url(sys_cpanel/images/bottombody.jpg);\n        	background-repeat: repeat-x;\n        	padding:5px 0 10px 15px;\n			margin:0;\n        }\n        #body-content p {\n        	padding-left: 25px;\n        	padding-right: 25px;\n        	line-height: 18px;\n        	padding-top: 5px;\n        	padding-bottom: 5px;\n        }\n        h2 {\n        	font-size: 14px;\n        	font-weight: bold;\n        	color: #FF9900;\n        	padding-left: 15px;\n        }\n    </style>\n  </head>\n  <body>\n    <div id=\"body-content\">  \n<!-- start content-->\n\n<!-- \n instead of REQUEST_URI, we could show absolute URL via:\n http://HTTP_HOST/REQUEST_URI\n    but what if its https:// or other protocol?\n    \n    SERVER_PORT_SECURE doesn\'t seem to be used\n    SERVER_PORT logic would break if they use alternate ports\n-->\n\n<h1>404 Not Found</h1>\n<p>The server can not find the requested page:</p>\n  <blockquote>\n    162.144.133.144/api/create (port 80)\n  </blockquote> \n<p>\n    Please forward this error screen to 162.144.133.144\'s \n    <a href=\"mailto:root@server.eigchurn.com?subject=Error message [404] 404 Not Found for 162.144.133.144/api/create port 80 on Wednesday, 14-Dec-2016 09:06:41 UTC\">\n    WebMaster</a>.\n</p>\n<hr />\n\n\n<!-- end content -->\n    </div>\n  </body>\n</html>\n\";s:4:\"test\";s:23:\"jetpack-onboarding-v1.5\";}','yes'),(158,'_transient_timeout_mm_compat_check','1484298394','no'),(159,'_transient_mm_compat_check','compatible','no'),(161,'_site_transient_browser_34f676f9c342b94e657bdc22b061ef1c','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"54.0.2840.99\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(162,'ctct_connect_verification','W14QkWyTBABLRj6iNypinM8kQdLglquPIvj','yes'),(163,'jpo_firstrun','1','yes'),(184,'_site_transient_wporg_theme_feature_list','a:3:{s:6:\"Layout\";a:7:{i:0;s:11:\"grid-layout\";i:1;s:10:\"one-column\";i:2;s:11:\"two-columns\";i:3;s:13:\"three-columns\";i:4;s:12:\"four-columns\";i:5;s:12:\"left-sidebar\";i:6;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:10:\"buddypress\";i:2;s:17:\"custom-background\";i:3;s:13:\"custom-colors\";i:4;s:13:\"custom-header\";i:5;s:11:\"custom-menu\";i:6;s:12:\"editor-style\";i:7;s:21:\"featured-image-header\";i:8;s:15:\"featured-images\";i:9;s:15:\"flexible-header\";i:10;s:14:\"footer-widgets\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:9:{i:0;s:4:\"blog\";i:1;s:10:\"e-commerce\";i:2;s:9:\"education\";i:3;s:13:\"entertainment\";i:4;s:14:\"food-and-drink\";i:5;s:7:\"holiday\";i:6;s:4:\"news\";i:7;s:11:\"photography\";i:8;s:9:\"portfolio\";}}','no'),(164,'can_compress_scripts','0','no'),(766,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1486581024','no'),(767,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1486537824','no'),(169,'_transient_timeout_feed_99b272eaef9eaa265f30d77863073f26','1481717207','no'),(170,'_transient_feed_99b272eaef9eaa265f30d77863073f26','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:3:{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:51:\"WPTavern: Harare, Zimbabwe Hosts Its First WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=64419\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/harare-zimbabwe-hosts-its-first-wordcamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3497:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/12/wordcamp-harare.jpg?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/12/wordcamp-harare.jpg?resize=1025%2C560&ssl=1\" alt=\"\" class=\"size-full wp-image-64426\" /></a>photo credit: <a href=\"http://www.techzim.co.zw/2016/12/wordcamp-2016-harare-learning-pictures/\">Limbikani Soul Makani Kabweza</a>\n<p><a href=\"https://2016.harare.wordcamp.org/\" target=\"_blank\">WordCamp Harare</a>, the first ever WordCamp in Zimbabwe, was held over the weekend at the Harare City Library. Harare was selected out of 182 applicants as one of the three locations for the <a href=\"https://wptavern.com/wordcamp-incubator-program-to-launch-in-indonesia-zimbabwe-and-columbia\" target=\"_blank\">WordCamp Incubator Program</a>. The experimental program launched in February 2016 with the goal of bringing WordCamps to new locations around the world where local meetups may not be as well established.</p>\n<p>WordCamp Harare was successful at connecting the Zimbabwean WordPress community and introducing the attendees to the concept of a WordCamp.</p>\n<p>&#8220;It was a great day because we met lots of people who are passionate about WordPress and building stuff on the internet,&#8221; Limbikani Soul Makani Kabweza said in his <a href=\"http://www.techzim.co.zw/2016/12/wordcamp-2016-harare-learning-pictures/\" target=\"_blank\">recap</a> of the event. Kabweza is a contributor at <a href=\"http://www.techzim.co.zw/\" target=\"_blank\">Techzim</a>, a Zimbabwean tech publication that runs on WordPress.</p>\n<p>&#8220;As Techzim (and the other startups we work with like <a href=\"http://www.soccer24.co.zw/\" target=\"_blank\">Soccer24</a> and <a href=\"http://www.pindula.co.zw/news/\" target=\"_blank\">Pindula</a>) the internet is our lifeblood, so a day dedicated to discussing internet platforms and how to do things better was the amazingly enriching experience we expected it to be.&#8221;</p>\n<p>Co-organizer Charles Muzonzini, who works as a web and mobile app developer with <a href=\"http://www.csz.org.zw/\" target=\"_blank\">The Computer Society of Zimbabwe</a>, said, &#8220;WordCamp Harare 2016 was an awesome success, far exceeding my expectations. Everything was on point and I’m glad to have met so many great people and learnt so much. This is hands down the best IT conference this year.&#8221; Muzonzini is also a co-organizer of the <a href=\"http://www.meetup.com/Harare-WordPress-Meetup/\" target=\"_blank\">Harare WordPress Meetup</a>, which now has 82 members.</p>\n<p>Job Thomas, who works as an Education Vanguard at Automattic, traveled from Cape Town to speak about WooCommerce at the WordCamp. In a <a href=\"https://2016.harare.wordcamp.org/open-source-empowering-africa/\" target=\"_blank\">guest post</a> for the event Thomas wrote about the importance of open source for the empowerment of Africa in removing hindrances for becoming successful.</p>\n<p>&#8220;It is great to see WordCamp Harare happening,&#8221; Thomas said. &#8220;WordCamps are not primarily events for communicating ideas – although this plays a big role. WordCamps are primarily a celebration of the open source community; they gather people with a similar passion for making the web a better place.&#8221;</p>\n<p>WordCamp Harare was the fourth WordCamp held in Africa in 2016, joining events in Nairobi, Johannesburg, and Cape Town in the expansion of the WordPress community in southern and eastern Africa.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Dec 2016 05:11: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: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:73:\"WPTavern: WordPress 2.7 Is the Role Model for How Design Can Lead the Way\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=64183\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordpress-2-7-is-the-role-model-for-how-design-can-lead-the-way\";s: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:11607:\"<p>When Matt Mullenweg, co-creator of the WordPress open source project, <a href=\"https://videopress.com/v/IYfHX4jN?at=3472\">announced that</a> design would lead the way for WordPress development in 2017, utilizing user research and mockups, the first thing that came to my mind was WordPress 2.7. That release was the culmination of effective leadership and effort from Jen Mylo and Liz Danzico. In order to learn why this release is in a class of its own, we must look at how it was created.</p>\n<h2>Introducing Crazyhorse</h2>\n<p>On March 29th, 2008, WordPress 2.5 &#8220;Brecker&#8221; <a href=\"https://wordpress.org/news/2008/03/wordpress-25-brecker/\">was released</a> to the world. The biggest feature in 2.5 was the redesigned backend that was built in collaboration with <a href=\"http://happycog.com/\">Happy Cog</a>.</p>\n<p>When Mullenweg gave the public a <a href=\"https://wordpress.org/news/2008/03/25-sneak-peek/\">sneak peek</a> at the redesigned backend, he had this to say:</p>\n<blockquote><p>For the past few months, we’ve been working with our friends at Happy Cog — <a href=\"http://zeldman.com/\">Jeffrey Zeldman</a>, <a href=\"http://jasonsantamaria.com/\">Jason Santa Maria</a>, and <a href=\"http://bobulate.com/\">Liz Danzico</a> — to redesign WordPress from the ground-up. The result is a new way of interacting with WordPress that will remain familiar to seasoned users while improving the experience for everyone. This isn’t just a fresh coat of paint — we’ve re-thought the look of WordPress, as well as how it’s organized so that you can forget about the software and focus on your own creative pursuits.</p></blockquote>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/12/WordPress25PostEditor.jpg?ssl=1\"><img class=\"size-full wp-image-64399\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/12/WordPress25PostEditor.jpg?resize=1008%2C643&ssl=1\" alt=\"WordPress 2.5 Post Editor\" /></a>WordPress 2.5 Post Editor\n<p>While some people <a href=\"http://socializedsoftware.com/2008/03/30/wordpress-25-review/\">praised the redesign</a>, others <a href=\"http://scottberkun.com/2008/wordpress-25-review/\">were not happy</a>, particularly with the menu hierarchy. Since sentiment in the community was mixed, Mylo contracted Ball State University’s Center for Media Design, Insight and Research to <a href=\"https://wordpress.org/news/2008/10/usability-testing-report-25-and-crazyhorse/\">perform a usability report</a> on the WordPress 2.5 admin design. The report was used to figure out which issues were based on interface problems versus people simply not liking the changes.</p>\n<p>Usability <a href=\"http://wpdotorg.wordpress.com/files/2008/10/wp-testreport-205-crazyhorse-1028a08jw.pdf\">testing results</a> were shared with lead developers which inspired a prototype interface to address some of the issues discovered. This allowed developers to use WordPress 2.5 on their own sites and the prototype on a test site. However, once testing began with the prototype interface, it became clear that a more ambitious approach was required.</p>\n<p>According to Mylo, the second prototype known as &#8220;Crazyhorse&#8221; blew test subjects away:</p>\n<blockquote><p>The second round of testing blew everyone away. The research team had never seen such consistent results. Tasks were completed faster, participant opinions rated it higher, understanding of how interface elements worked was greater, and it wasn’t even a fully functional application. Of the test participants, every single one said they would choose the prototype over their current administrative interface, and it wasn’t even pretty.</p></blockquote>\n<p>Throughout the 2.7 development process, Mylo used a number of communication channels to gather user feedback. On September 15th, 2008, Mylo published a <a href=\"https://wordpress.org/news/2008/09/wordpress-27-navigation-options-survey/\">Navigation Options Survey</a>. The survey was part of a broader effort to get more people involved in the design and decision process:</p>\n<blockquote><p>As part of the mission to increase user involvement in design decisions, we’ve created a survey intended to give WordPress users the ability to play a part in deciding how the navigation options should be grouped and labeled.</p></blockquote>\n<p>Later that month, a <a href=\"https://wordpress.org/news/2008/09/wordpress-2-7-survey-no2/\">second survey</a> was created that allowed users to vote on mockups of the search box, favorites menu, the Future/Publish and Edit Timestamp buttons. It only took two days for the survey to reach its maximum response count of 5,000.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/CrazyhorseWireframe.png?ssl=1\"><img class=\"size-full wp-image-64416\" src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/CrazyhorseWireframe.png?resize=894%2C666&ssl=1\" alt=\"Crazyhorse Wireframe\" /></a>Crazyhorse Wireframe\n<p>Once the survey concluded, Mylo <a href=\"https://wordpress.org/news/2008/10/wordpress-27-wireframes/\">published a follow-up post</a> as well as a document containing <a href=\"https://wpdotorg.files.wordpress.com/2008/10/wf-dashboard_v002_093008jw.pdf\">wireframes</a> that gave users an idea of what the end product might look like. Near the middle of October, 2008, Mylo <a href=\"https://wordpress.org/news/2008/10/the-visual-design-of-27/\">published</a> semi-polished screenshots of the 2.7 interface and explained how it worked. Matt Thomas and Andy Peatling are largely responsible for the design of WordPress 2.7.</p>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/WordPress27Dashboard.png?ssl=1\"><img class=\"size-full wp-image-64418\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/WordPress27Dashboard.png?resize=597%2C753&ssl=1\" alt=\"WordPress 2.7 Dashboard\" /></a>WordPress 2.7 Dashboard\n<p>The response to the screenshots was <a href=\"https://wordpress.org/news/2008/10/the-new-27-dashboard/\">overwhelmingly positive</a>. A week after showcasing the 2.7 dashboard, Mylo <a href=\"https://wordpress.org/news/2008/10/calling-all-wordpress-loving-icon-designers/\">asked the WordPress community</a> to create a set of icons to go with each of the navigation sections. More than a dozen people submitted icon sets and instead of choosing one, Mylo <a href=\"https://wordpress.org/news/2008/11/wordpress-27-project-icon/\">let the community vote</a> on which set best matched WordPress 2.7&#8217;s style. With 35% of the vote, the <a href=\"https://wordpress.org/news/2008/11/the-results-of-project-icon/\">winning set</a> was created by <a href=\"http://bendunkle.com/\">Ben Dunkle</a>.</p>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/BDIcons.png?ssl=1\"><img class=\"size-full wp-image-64421\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/BDIcons.png?resize=147%2C479&ssl=1\" alt=\"Ben Dunkle\'s Winning Icon Set\" /></a>Winning Icon Set\n<p>I asked Dunkle what inspired him to create the icons and if Mylo didn&#8217;t offer the opportunity to the community the way that she did, if he would have contributed to WordPress 2.7 otherwise.</p>\n<p>&#8220;When I saw Jen&#8217;s post calling for icon designers to submit a set for 2.7, it was right at the deadline,&#8221; Dunkle told the Tavern. &#8220;I can&#8217;t remember how I found the post, since I didn&#8217;t visit the WordPress development blog very often. I&#8217;d been building sites with WordPress for few years by that time, and really enjoyed it, but I didn&#8217;t think much about the online community.&#8221;</p>\n<p>&#8220;Jen expressed the direction eloquently: &#8216;Icons should be subtle, with a classic/designed look, nothing cartoonish. Thin lines. Maybe a little old-fashioned looking.&#8217; I was designing icons for other open source projects around that time, and the language of the post struck a chord with me. I rushed out an email.</p>\n<p>&#8220;I ended up as a finalist, pushed the pixels, and sent off the design. Mine got the most votes. The contest caused some controversy, since anything resembling spec work has always been a lightning rod in the design community. I didn&#8217;t see it that way. It was an open source project and I was a volunteer, not a contractor.</p>\n<p>&#8220;In the end, it launched an ongoing connection that I maintain to this day. They&#8217;re now called Dashicons, made with vectors instead of pixels, and soon to be SVGs instead of web fonts (once we get the bugs sorted out).&#8221;</p>\n<p>After going through the beta and release candidate stages, WordPress 2.7 &#8220;Coltrane&#8221; was <a href=\"https://wordpress.org/news/2008/12/coltrane/\">released to the public</a> on December 11th, 2008. More than 150 people contributed code directly to the release and countless others contributed with valuable feedback during opportune times through surveys, mailing lists, and testing.</p>\n<p>Referring to WordPress 2.7, longtime user Ozh <a href=\"http://planetozh.com/blog/2008/12/a-journey-through-five-years-of-wordpress-interface/\">had this to say</a>, &#8220;The dev team asked users what they wanted and what they liked, and the result is light years beyond what the design studio produced for 2.5 six months earlier. One word to summarize it all: &#8216;Above the fold!\'&#8221;</p>\n<h2>WordPress 2.7 Set a Great Standard</h2>\n<p>During Contributor day at WordCamp US 2016, I asked Mullenweg if the WordPress 2.7 development process inspired the experimental approach to developing WordPress in 2017.</p>\n<blockquote><p>Yeah, I mean that was one of the beginnings to Jen&#8217;s contributions and her huge impact on the WordPress world. She brought an entirely different way of thinking with a user first, usability, research led mindset. It was fantastic to have female leadership demonstrating very early on in the WordPress community that this is software made by everyone for everyone. What that was for its time is a great standard to hold ourselves up to as we move forward in 2017.</p></blockquote>\n<p>Out of all the WordPress releases I&#8217;ve covered since 2007, WordPress 2.7 is special. It&#8217;s the only release where I feel like a lot of the community rallied together and focused on making WordPress better. Through surveys, comments, blog posts, testing, and reaching out to talented people in the community for help, Mylo proved that the community can be part of the development and design process of WordPress and end up with a better product as a result.</p>\n<p>Things have changed since 2008. The community, contributor pool, and the project itself has become larger. Communication is spread out among the Make Blogs as well as SlackHQ. The WordPress development process is more open now than ever before. Since WordPress 2.7&#8217;s release, I haven&#8217;t felt the same spark of rallying together for a common goal that Mylo was able to foster. Perhaps it&#8217;s because I&#8217;m not part of a project team like the REST API or I&#8217;m not searching for it in the right places. I hope those feelings are rekindled in 2017.</p>\n<p>It will be interesting to see how the new development process works out. Until then, I leave you with a wonderful quote from Mylo as it succinctly captures the way I feel and remember the WordPress 2.7 development cycle.</p>\n<p>&#8220;I hope you enjoy getting an inside look at how we’ve been organizing our thoughts around 2.7, and that when the community feedback starts flowing everyone remembers that we all want the same thing: the best WordPress possible.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Dec 2016 01:56: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:29:\"Matt: State of the Word, 2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=46950\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://ma.tt/2016/12/state-of-the-word-2016/\";s: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:2117:\"<p></p>\n<p>The full video and Q&amp;A from 2016&#8217;s State of the Word last week in Philadelphia is now online. This year was especially exciting because it wasnt&#8217; just a look back at the previous year, but sets out a new direction for where WordPress will be in 2017 and beyond.</p>\n<p>If you want just the slides, here they are:</p>\n<p>  </p>\n<div> <strong> <a href=\"https://www.slideshare.net/photomatt/state-of-the-word-2016\" title=\"State of the Word 2016\" target=\"_blank\">State of the Word 2016</a> </strong> from <strong><a target=\"_blank\" href=\"http://www.slideshare.net/photomatt\">photomatt</a></strong> </div>\n<p>Like every year, there was a ton of help bringing this together. Mark Uraine led the slides, and at various points these folks pitched in as well: Mel Choyce, Tammie Lister, Michael Arestad, Ashleigh Axios, Ian Dunn, Corey McKrill, Martin Remy, Josepha Haden, Alex Kirk, Marina Pape, Alx Block, Cami Kaos, Matias Ventura, Donncha O Caoimh, John Maeda, Barry Abrahamson, Nikolay Bachiyski, Chrissie Pollock, Sam Sidler, Boris Gorelik, Dion Hulse, Brooke Dukes, Sarah Blackstock. I also got input and suggestions from Petya Raykovska, Tony Perez, Joe Casabona, Helen Hou-Sandi, Jon Bossenger, Jason Cohen, Daniel Bachhuber, Drew Butler, Ryan Boren, Andrew Roberts, Joost de Valk, Stephane Daury, Dion Hulse, Gary Pendergast, David Bisset, Ryan McCue, Alex Shiels, Brian Krogsgard, Joe Hoyle, Sean Blakeley, Andrew Nacin, Mark Jaquith, John Blackbourn, and thank you to Rose Kuo for inspiring the poetry theme which featured prominently this year.</p>\n<p><a href=\"https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle\">Tavern</a> and <a href=\"https://poststatus.com/matt-mullenweg-state-word-2016/\">Post Status</a> wrote up the talk itself. As a follow-up I did interviews with both to expand on some of what was discussed in the speech. The <a href=\"https://poststatus.com/interview-matt-mullenweg-new-wordpress-release-cycle/\">Post Status one is now up</a> and you can watch it here:</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, 12 Dec 2016 21:10: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: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: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:74:\"WPTavern: Bluehost Network Outage Hits Customers with 12 Hours of Downtime\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=64386\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/bluehost-network-outage-hits-users-with-12-hours-of-downtime\";s: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:4435:\"<p>Over the weekend, <a href=\"https://www.bluehost.com/\" target=\"_blank\">Bluehost</a> experienced a severe, widespread network issue that caused customer sites to go down. The incident began Friday evening and continued into the night. As WP Tavern is hosted on Bluehost, we were watching the situation with keen interest, finally clocking the downtime at 12 hours before our site was back up.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">We are seeing problems w/ network flapping which could be caused by denial of service or other network issues in our switching fabric. (1/5)</p>\n<p>&mdash; Bluehost (@bluehost) <a href=\"https://twitter.com/bluehost/status/807394100630667265\">December 10, 2016</a></p></blockquote>\n<p></p>\n<p>The Bluehost Twitter and Facebook accounts kept customers updated as network engineers worked to resolve the issue. Shortly after midnight Bluehost said they identified a network loop within a portion of the network. Staff worked to restore services &#8220;while making sure we do not reintroduce the loop into the network.&#8221;</p>\n<p>At approximately 10 hours into the downtime, Bluehost updated customers who were still down, citing &#8220;a packet filtering problem&#8221; in its core routing layer for which the team had created a fix. Within a couple more hours most of the company&#8217;s customers were back online.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">We have identified a packet filtering problem in our core routing layer. We have worked closely with our vendor to develop a global fix- 1/2</p>\n<p>&mdash; Bluehost (@bluehost) <a href=\"https://twitter.com/bluehost/status/807491514830098432\">December 10, 2016</a></p></blockquote>\n<p></p>\n<p>Bluehost&#8217;s earliest communications about the downtime indicated a DDoS attack may have caused the incident, though this is no longer a strong consideration.</p>\n<p>&#8220;It doesn’t appear to be a DDoS but we are conducting a full investigation,&#8221; Bluehost head of product Brady Nord told the Tavern after the incident. His team worked around the clock to identify and resolve issues until customer sites came back up.</p>\n<p>&#8220;Many of our dedicated and VPS customers were affected to some degree for approximately 12 hours,&#8221; Nord said. &#8220;We made every attempt to keep our customers informed during the event as information became available because we understand our customers depend on our products and services.&#8221;</p>\n<p>Nord would not share further details about the cause of the outage but said the company plans to complete a detailed post mortem to prevent future outages.</p>\n<p>&#8220;With any significant event that affects our customer base, we conduct an extensive examination after the event to ensure we understand the root cause and develop a course of action to improve our systems and procedures,&#8221; Nord said.</p>\n<p>Bluehost is one of the hosts listed on <a href=\"https://wordpress.org/hosting/\" target=\"_blank\">WordPress&#8217; recommended hosting page</a> and Nord said roughly 2/3 of the company&#8217;s customer base uses WordPress.</p>\n<p>&#8220;The incident last night mainly impacted our dedicated and VPS customers which is a lower density section of the platform,&#8221; Nord said.</p>\n<p>Bluehost has not yet published the results of its investigation, but support staff have <a href=\"https://twitter.com/bluehostsupport/status/807670769685856256\" target=\"_blank\">replied</a> to customer inquiries with a fairly definitive assessment of the issue as having been due to a spanning tree issue on their core routing layer.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/saxangle\">@saxangle</a> Sure we can tell you what happened. We discovered a spanning tree issue on our core routing layer which caused network degradation</p>\n<p>&mdash; help.bluehost.com (@bluehostsupport) <a href=\"https://twitter.com/bluehostsupport/status/807670769685856256\">December 10, 2016</a></p></blockquote>\n<p></p>\n<p><a href=\"http://www.cisco.com/c/en/us/support/docs/lan-switching/spanning-tree-protocol/10556-16.html\" target=\"_blank\">Spanning tree protocol</a> misconfigurations can cause network problems similar to what Bluehost experienced but results of the investigation should confirm whether this was the root of problem that took customer sites down over the weekend.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 12 Dec 2016 17:48:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;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:52:\"HeroPress: WordCamp US Talk, The People Of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=1524\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/wordcamp-us-talk-people-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:2810:\"<p>I was incredibly honored to speak at WordCamp US in Philadelphia this year. It was especially cool to hear from people all over the world watching on the live stream.</p>\n<p>The hardest part was telling only a few stories that would fit into the time slot, and not every story on this site.</p>\n<p>If you missed the talk, it&#8217;s now on <a href=\"http://wordpress.tv/2016/12/11/topher-derosia-heropress-the-people-of-wordpress/\">WordPress.tv</a>, but you can also watch it right here.</p>\n<p></p>\n<p>I love speaking, and I&#8217;ll probably talk about HeroPress again, what are some other topics and ideas you&#8217;d like to hear about?</p>\n<p>Please leave a comment and let me know.</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: WordCamp US Talk, The People Of WordPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordCamp%20US%20Talk%2C%20The%20People%20Of%20WordPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Fwordcamp-us-talk-people-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordCamp US Talk, The People Of WordPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fwordcamp-us-talk-people-wordpress%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%2Fwordcamp-us-talk-people-wordpress%2F&title=WordCamp+US+Talk%2C+The+People+Of+WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordCamp US Talk, The People Of WordPress\"></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/wordcamp-us-talk-people-wordpress/&media=http://heropress.com/wp-content/plugins/rtsocial/images/default-pinterest.png&description=WordCamp US Talk, The People Of WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordCamp US Talk, The People Of WordPress\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/wordcamp-us-talk-people-wordpress/\" title=\"WordCamp US Talk, The People Of WordPress\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/wordcamp-us-talk-people-wordpress/\">WordCamp US Talk, The People Of WordPress</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:\"Mon, 12 Dec 2016 00:50: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:\"\";}}}}}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:86:\"Post Status: Interview with Matt Mullenweg on the new WordPress release cycle and more\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=31281\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://poststatus.com/interview-matt-mullenweg-new-wordpress-release-cycle/\";s: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:1864:\"<p>During contributor day of WordCamp US in Philadelphia, I was able to interview Matt Mullenweg to follow up on several items he announced in the <a href=\"https://poststatus.com/matt-mullenweg-state-word-2016/\">State of the Word</a>.</p>\n<p>We mostly discussed the new WordPress development cycle and how it will work with the three focus areas. We also discussed how that will affect other non-major updates and WordPress features.</p>\n<p>Matt also talked about the WordPress REST API, how he defines success for it, what he hopes to see out of it, and what he thinks would cause it to revert to a plugin only feature.</p>\n<p>And as this was the second and final year of WordCamp US in Philadelphia, we reflected on the event, and talked about what there is to look forward to in Nashville for WordCamp US 2017 and 2018.</p>\n<p>You can listen to just the audio, also on our podcast, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher.</p>\n<!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href=\"https://audio.simplecast.com/54882.mp3\">https://audio.simplecast.com/54882.mp3</a>\n<p><a href=\"https://audio.simplecast.com/54882.mp3\">Direct Download</a></p>\n<p>Or just watch the <a href=\"https://www.youtube.com/watch?v=Lh5DF5-6UoE\">video on YouTube</a>, or below for the full experience. And don&#8217;t forget to subscribe to <a href=\"https://www.youtube.com/channel/UCndSWDwwIOmbuxC79Lv66NQ\">my new channel on YouTube</a>.</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, 10 Dec 2016 22:53: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: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: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:59:\"WPTavern: WPWeekly Episode 255 – All About the Customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=64372&preview=true&preview_id=64372\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wptavern.com/wpweekly-episode-255-all-about-the-customizer\";s: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:2964:\"<p>In this episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by <a href=\"https://weston.ruter.net/\">Weston Ruter</a> and <a href=\"http://celloexpressions.com/\">Nick Halsey, </a>lead developers of the <a href=\"https://make.wordpress.org/core/components/customize/\">Customize component</a> in WordPress.</p>\n<p>I invited Ruter and Halsey on the show to give us some insight into its origin and why it was created. We also discuss its evolution since WordPress 3.6 and why it&#8217;s an important <a href=\"https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle\">part of WordPress&#8217; future</a>.</p>\n<p>The duo shared their experience of what it&#8217;s like to iterate on a feature that routinely receives push-back from a subset of the community. We also talk about the perception that features are continuously being crammed into the Customizer when it&#8217;s really about adding live previews to WordPress functionality.</p>\n<p>Last but not least, Ruter and Halsey describe what improvements we can expect to see going forward. For details on how to contribute to the Customize component, please visit the <a href=\"https://make.wordpress.org/core/components/customize/\">Make Core Customize Component </a>website.</p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/product-designer/\">Product Designer</a> allows you to display an awesome Product Designer on your website via short-code. You can add unlimited clip art using a custom post. Text can be used with a fancy font family, font size and color.</p>\n<p><a href=\"https://wordpress.org/plugins/text-to-speech-widget/\">Text To Speech Widget</a> converts any text into speech in a selected language and voice. It supports 63 voices in different languages. The plugin is based on HTML5 and doesn&#8217;t require using Flash.</p>\n<p><a href=\"https://wordpress.org/plugins/featured-products-first-for-woocommerce/\">Featured Products First for WooCommerce</a> allows a product in WooCommerce to be featured on the first shop page as well as search results. It also comes with a sidebar widget to display featured products on the homepage.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, December 14th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #255:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Dec 2016 01:23:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:67:\"WPTavern: WordCamp Europe Calls for Host City Applications for 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:29:\"https://wptavern.com/?p=64343\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/wordcamp-europe-calls-for-host-city-applications-for-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:3711:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/planning.jpg?ssl=1\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/planning.jpg?resize=960%2C416&ssl=1\" alt=\"\" class=\"size-full wp-image-64370\" /></a>photo credit: <a href=\"https://stocksnap.io/photo/5ZMT04MIW6\">Oli Dale</a>\n<p>Even though the <a href=\"https://2017.europe.wordcamp.org/2016/11/28/join-us-as-a-speaker-at-wordcamp-europe/\" target=\"_blank\">call for speakers</a> for WordCamp Europe 2017 has just opened, organizers are already on the hunt for a city to <a href=\"https://2017.europe.wordcamp.org/2016/12/08/apply-to-host-wordcamp-europe-2018/\" target=\"_blank\">host the event in 2018</a>. The team chosen to host in 2018 will need to be planning throughout 2017 and should be present on the ground in Paris, so the selection process is already underway.</p>\n<p>WordCamp Europe is currently WordPress&#8217; largest community event, and support and mentorship have been a key part of its success. Petya Raykovska, a past organizer, said the prospect of organizing the event can be intimidating for new teams but mentors will be available to applicants throughout the process.</p>\n<p>&#8220;The mentors are supposed to help the local teams prepare a better application,&#8221; Raykovska said. &#8220;They are all experienced WCEU organizers who can help with many aspects of the planning.&#8221;</p>\n<p>Host city selection is based on more than two dozen factors, including organizer experience, location, venue, and budget considerations. One of the most challenging aspects is securing a venue that can accommodate 3,000 attendees, but applicants are given a lot of flexibility on the event date.</p>\n<p>&#8220;We ask volunteers to book a venue for 3,000 people,&#8221; Raykovska said. &#8220;Not only are there not many venues that can fit us at this scale, most of them are booked years in advance.&#8221;</p>\n<p>Raykovska said organizers can book dates anywhere from May 1 &#8211; June 31, 2018. This makes it possible to have more cities and venues vying to host the event.</p>\n<p>Raykovska volunteered in Leiden in 2013 and helped organize WordCamp Sofia after that. In 2014, she applied to host WordCamp Europe in Sofia along with Tina Kesova, Nikolay Bachiyski, Veselin Nikolov, and Mario Peshev. Since that time she has been involved in organizing the event and mentoring newcomers. Potential applicants are encouraged to get in touch if they are wondering if their team has what it takes.</p>\n<p>&#8220;Sometimes these conversations serve as a reality check,&#8221; Raykovska said. &#8220;People can get super enthusiastic about organizing without having an idea of the time commitment. We want WCEU to be a positive experience for organizers and make sure our local teams have enough people and are aware what it takes to get involved as a local host.&#8221;</p>\n<p><a href=\"https://2017.europe.wordcamp.org/2016/12/08/apply-to-host-wordcamp-europe-2018/\" target=\"_blank\">Applications for host city</a> will be open through February 15, 2017 and the decision will be made by the end of February. The team selected for 2018 will then join the 2017 planning team to gain a better understanding of the process. Potential applicants who want to be matched to a mentor can get in touch by emailing host at wp-europe.org.</p>\n<p>&#8220;In late 2013, one tweet pushed the WordCamp Sofia team to apply to host WCEU,&#8221; Raykovska said. &#8220;It turned into the most incredible journey I&#8217;ve taken so far with stops further beyond the future host cities of Seville, Vienna, and Paris. It&#8217;s time for someone to write the next chapter of the story.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Dec 2016 23:44: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:\"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:65:\"Post Status: Photos from Post Status Publish and WordCamp US 2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=31040\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/photos-post-status-publish-wordcamp-us-2016/\";s: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:55162:\"<p>Last week was a whirlwind of events. On Thursday, December 1st, I hosted the inaugural <a href=\"https://poststatus.com/publish\">Post Status Publish</a>, which was a ton of fun. And following that event, we had three straight days of <a href=\"https://2016.us.wordcamp.org\">WordCamp US</a>.</p>\n<p><a href=\"https://twitter.com/rzen\">Brian Richards</a> and I teamed up to take pictures and cover the event.</p>\n<h3>Post Status Publish</h3>\n<p>Publish was on Thursday. We have a lot of video, but fewer pictures. Here is a selection taken by Brian Richards. If you took photos at Publish, we&#8217;d love to see them as well!</p>\n\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-1/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-1-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-1\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-4/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-4-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-4\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-3/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-3-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-3\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-6/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-6-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-6\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-5/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-5-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-5\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-7/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-7-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-7\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-8/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-8-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-8\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-10/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-10-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-10\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-9/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-9-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-9\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-11/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-11-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-11\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-12/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-12-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-12\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-14/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-14-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-14\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-13/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-13-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-13\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-16/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-16-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-16\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-15/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-15-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-15\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-17/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-17-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-17\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-19/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-19-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-19\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-20/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-20-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-20\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-21/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-21-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-21\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-22/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-22-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-22\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-24/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-24-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-24\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-23/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-23-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-23\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-25/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-25-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-25\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-26/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-26-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-26\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-27/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-27-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-27\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-28/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-28-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-28\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-29/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-29-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-29\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-31/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-31-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-31\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-32/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-32-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-32\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-34/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-34-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-34\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/publish-2016-33/\"><img width=\"114\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/publish-2016-33-114x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"publish-2016-33\" /></a>\n\n<h3>WordCamp US</h3>\n<p>Then there was WordCamp US. I unfortunately didn&#8217;t get to any sessions other than Matt&#8217;s State of the Word. But thankfully they&#8217;ll all be up on WordPress.tv, so I can catch up on the many that I wanted to attend.</p>\n<p>All photos directly before and during Matt&#8217;s <a href=\"https://poststatus.com/matt-mullenweg-state-word-2016/\">State of the Word</a> are by Brian Richards. I took most of the hallway shots.</p>\n\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-1/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-1-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-1\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-2/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-2-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-2\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-3/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-3-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-3\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-4/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-4-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-4\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-5/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-5-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-5\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-6/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-6-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-6\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-8/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-8-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-8\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-7/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-7-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-7\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-10/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-10-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-10\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-11/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-11-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-11\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-12/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-12-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-12\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-14/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-14-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-14\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-13/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-13-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-13\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-16/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-16-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-16\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-15/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-15-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-15\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-17/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-17-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-17\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-18/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-18-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-18\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-19/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-19-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-19\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-20/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-20-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-20\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-21/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-21-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-21\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-22/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-22-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-22\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-24/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-24-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-24\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-23/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-23-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-23\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-25/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-25-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-25\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-27/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-27-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-27\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-28/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-28-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-28\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-29/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-29-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-29\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-30/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-30-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-30\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-31/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-31-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-31\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-32/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-32-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-32\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-33/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-33-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-33\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-35/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-35-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-35\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-34/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-34-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-34\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-36/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-36-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-36\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-37/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-37-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-37\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-39/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-39-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-39\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-38/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-38-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-38\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-41/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-41-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-41\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-40/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-40-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-40\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-43/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-43-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-43\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-42/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-42-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-42\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-44/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-44-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-44\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-45/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-45-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-45\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-47/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-47-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-47\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-46/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-46-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-46\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-48/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-48-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-48\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-49/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-49-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-49\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-51/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-51-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-51\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-50/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-50-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-50\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-52/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-52-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-52\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-53/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-53-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-53\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-54/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-54-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-54\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-55/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-55-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-55\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-57/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-57-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-57\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-56/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-56-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-56\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-58/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-58-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-58\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-59/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-59-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-59\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-60/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-60-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-60\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-61/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-61-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-61\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-62/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-62-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-62\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-63/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-63-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-63\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-66/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-66-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-66\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-65/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-65-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-65\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-67/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-67-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-67\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-68/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-68-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-68\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-69/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-69-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-69\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-70/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-70-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-70\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-71/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-71-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-71\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-72/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-72-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-72\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-73/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-73-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-73\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-74/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-74-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-74\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-75/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-75-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-75\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-76/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-76-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-76\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-77/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-77-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-77\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-78/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-78-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-78\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-79/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-79-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-79\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-80/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-80-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-80\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-81/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-81-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-81\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-82/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-82-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-82\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-83/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-83-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-83\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-84/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-84-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-84\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-85/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-85-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-85\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-86/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-86-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-86\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-87/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-87-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-87\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-89/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-89-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-89\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-92/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-92-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-92\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-93/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-93-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-93\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-96/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-96-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-96\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-97/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-97-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-97\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-101/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-101-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-101\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-102/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-102-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-102\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-103/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-103-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-103\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-104/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-104-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-104\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-105/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-105-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-105\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-106/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-106-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-106\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-107/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-107-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-107\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-108/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-108-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-108\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-110/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-110-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-110\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-111/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-111-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-111\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-112/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-112-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-112\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-113/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-113-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-113\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-114/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-114-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-114\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-115/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-115-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-115\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-116/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-116-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-116\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-117/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-117-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-117\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-118/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-118-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-118\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-119/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-119-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-119\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-120/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-120-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-120\" /></a>\n\n<h3>WordCamp US Contributor Day</h3>\n<p>Finally, Contributor Day was on Sunday. In addition to the contributor area itself, lunch was at the market where you can choose from a variety of lunch spots, with common cafeteria seating. I had an awesome spicy roast pork sandwich from Dinic&#8217;s, which I took a few pictures of as well.</p>\n\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-122/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-122-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-122\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-121/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-121-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-121\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-123/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-123-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-123\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-124/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-124-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-124\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-125/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-125-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-125\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-127/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-127-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-127\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-126/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-126-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-126\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-128/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-128-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-128\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-129/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-129-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-129\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-130/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-130-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-130\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-131/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-131-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-131\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-132/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-132-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-132\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-133/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-133-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-133\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-134/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-134-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-134\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-135/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-135-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-135\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-136/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-136-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-136\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-137/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-137-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-137\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-138/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-138-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-138\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-139/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-139-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-139\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-140/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-140-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-140\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-141/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-141-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-141\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-142/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-142-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-142\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-143/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-143-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-143\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-144/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-144-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-144\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-145/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-145-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-145\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-146/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-146-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-146\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-147/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-147-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-147\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-148/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-148-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-148\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-149/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-149-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-149\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-150/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-150-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-150\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-151/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-151-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-151\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-152/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-152-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-152\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-153/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-153-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-153\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-154/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-154-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-154\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-155/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-155-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-155\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-156/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-156-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-156\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-159/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-159-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-159\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-158/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-158-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-158\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-161/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-161-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-161\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-160/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-160-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-160\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-163/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-163-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-163\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-162/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-162-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-162\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-164/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-164-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-164\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-165/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-165-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-165\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-166/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-166-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-166\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-167/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-167-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-167\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-168/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-168-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-168\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-169/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-169-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-169\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-170/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-170-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-170\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-172/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-172-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-172\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-171/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-171-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-171\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-174/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-174-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-174\" /></a>\n<a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/wcus-2016-173/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/wcus-2016-173-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"wcus-2016-173\" /></a>\n\n<p>I&#8217;ll have more coverage of both Publish and WordCamp US for Post Status Members in the coming days. In the meantime, I hope you enjoy the pictures! If you&#8217;d like to use any of them, you are free to do so, and while credit is not required, it&#8217;s always appreciated.</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, 08 Dec 2016 20:49: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: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: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:95:\"WPTavern: GoDaddy Acquires WP Curve, Aims to Become a One-Stop Shop for WordPress Professionals\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=64287\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/godaddy-acquires-wp-curve-aims-to-become-a-one-stop-shop-for-wordpress-professionals\";s: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:5040:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/09/godaddy-logo.jpg?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/09/godaddy-logo.jpg?resize=680%2C295&ssl=1\" alt=\"\" class=\"aligncenter size-full wp-image-61236\" /></a></p>\n<p><a href=\"https://wpcurve.com/\" target=\"_blank\">WP Curve</a>, a WordPress services business that focuses on completing small jobs for customers, <a href=\"https://wpcurve.com/wp-curve-joins-godaddy/\" target=\"_blank\">announced</a> this week that GoDaddy has acquired the company. Founders Dan Norris and Alex McClafferty bootstrapped WP Curve in 2013 and have processed 105,000+ jobs through its pipeline.</p>\n<p>&#8220;WP Curve complements GoDaddy’s expanding WordPress offering including Managed WordPress and the recent ManageWP addition,&#8221; the company said in the announcement.</p>\n<p>Existing customers will be on-boarded to GoDaddy accounts with their current subscriptions. After the transition, the newly acquired WP Curve team will assist in scaling the services to support GoDaddy&#8217;s WordPress customers. Norris plans to exit the company and McClafferty will lead the team at GoDaddy.</p>\n<h3>GoDaddy&#8217;s Plans for WP Curve</h3>\n<p>Gabe Mays, head of WordPress Products at GoDaddy, said the WP Curve acquisition is an important part of GoDaddy&#8217;s goal to become &#8220;a one-stop shop for WordPress professionals.&#8221; Roughly one third of all GoDaddy sites are running on WordPress, and half of all new sites are using the software. This is one of the reasons GoDaddy plans to <a href=\"https://wptavern.com/wordpress-passes-27-market-share-banks-on-customizer-for-continued-success\" target=\"_blank\">invest in improvements to WordPress&#8217; core customizer component</a>.</p>\n<p>&#8220;WP Curve will help us in two ways,&#8221; Mays said. &#8220;First we’re adding WP Curve’s WordPress experts to the company and we’ll leverage their expertise to improve the training and tools for the hundreds of GoDaddy Customer Care representatives that support our customers globally.</p>\n<p>&#8220;Second, we’ll directly offer WP Curve&#8217;s services to our customers,&#8221; Mays said. &#8220;This combination will be amazing for our customers and create a compelling one-stop shop for WordPress professionals and their clients.&#8221;</p>\n<p>Mays said WP Curve&#8217;s services &#8220;will continue to be offered as standalone services&#8221; but GoDaddy may consider adding them to its hosting plans sometime in the future.</p>\n<p>&#8220;Down the road it&#8217;s possible we&#8217;ll see aspects integrated into our Hosting plans to improve the customer experience, especially for nascent WordPress users,&#8221; Mays said.</p>\n<p>Mays would not comment on whether GoDaddy has more acquisitions in the pipeline, but the company is likely to require additional expertise if it aims to become a one-stop shop for WordPress professionals. GoDaddy is part of a more recent trend of hosting companies acquiring WordPress products and services, including its <a href=\"https://wptavern.com/godaddy-acquires-wordpress-site-management-service-managewp\" target=\"_blank\">ManageWP acquisition</a> and <a href=\"https://wptavern.com/flywheel-acquires-wordpress-local-development-tool-pressmatic\" target=\"_blank\">Flywheel&#8217;s purchase of Pressmatic</a>. The trend has sparked some recent discussion on Twitter regarding &#8220;hosting companies eating WordPress:&#8221;</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">If software is eating the world, then hosting companies are eating WordPress.</p>\n<p>&mdash; Cory Miller (@corymiller303) <a href=\"https://twitter.com/corymiller303/status/805891418866806784\">December 5, 2016</a></p></blockquote>\n<p></p>\n<p>Mays sees this notion as a positive development and an opportunity for hosts to become more deeply invested in WordPress core and the surrounding ecosystem.</p>\n<p>&#8220;We see it as win-win for hosts and the WordPress community, more investment in WordPress is better for everyone,&#8221; Mays said. &#8220;For example, this year we hired our first core contributor, contributed full translations to some of the most popular themes and plugins, built a number of themes and plugins and contributed them to the WordPress repo and more. As a WordPress community we need all the investment we can get to reach our 50% goal and beyond.&#8221;</p>\n<p>Just days after the WP Curve acquisition, GoDaddy <a href=\"https://aboutus.godaddy.net/newsroom/news-releases/news-releases-details/2016/GoDaddy-Acquires-Host-Europe-Group-Becomes-Market-Leader-In-Europe-For-Small-Business-Cloud-Services/default.aspx\" target=\"_blank\">announced</a> its acquisition of <a href=\"https://www.heg.com/\" target=\"_blank\">Host Europe Group</a> (HEG) for $1.8 billion. HEG is Europe&#8217;s largest privately-owned web services provider in Europe and the purchase delivers 1.7 million new customers to GoDaddy, expanding the company&#8217;s international reach.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Dec 2016 20:49: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:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: The Value of Sponsoring a WordCamp from a Business’ Perspective\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=64315\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/the-value-of-sponsoring-a-wordcamp-from-a-business-perspective\";s: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:27974:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/12/tony-perez-sucuri.jpg?ssl=1\"><img class=\"wp-image-64317 size-thumbnail\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/12/tony-perez-sucuri.jpg?resize=150%2C150&ssl=1\" alt=\"Tony Perez, CEO of Sucuri\" /></a>Tony Perez, CEO of Sucuri\n<p>This is a guest post written by Tony Perez, <a href=\"http://perezbox.com/about/\">co-founder and CEO</a> of <a href=\"https://sucuri.net\">Sucuri</a>. Sucuri is a website security platform that helps clean and protect websites. I would consider us a small mid-sized company. Our annual sponsorship budget is in the range of $300 &#8211; $400k per calendar year (CY).</p>\n<p>One of the industry events we’ve been actively participating in since our inception has been WordCamps. Unlike 2015, in 2016 I decided to be more pragmatic in the way we invest in WordCamps. This new approach stemmed from two basic questions &#8211; <b>What is the ROI of sponsoring a WordCamp and should a business sponsor a WordCamp?</b></p>\n<p>One qualifier I want to add before getting started is that tracking success at events is very difficult. Even with the number of tools and approaches in the market, many organizations struggle getting their hands around the actual ROI of any event sponsorship. This means that many of the points in this post are not unique to the WordPress ecosystem, but the uniqueness and openness of the community makes it worth discussing.</p>\n<hr />\n<h1>The Reality of WordCamps and Sponsors</h1>\n<p>It’s been many years since I helped co-organize a WordCamp (<a href=\"https://2011.sandiego.wordcamp.org/\">San Diego back in 2011</a>), and there is no denying that a lot has changed in the way they are put together. The one thing that hasn’t changed however, is the struggle organizers face when it comes to fundraising. Over the years we’ve seen a number of awesome initiatives by the <a href=\"http://wordpressfoundation.org/\">WordPress Foundation</a> to help assist in the process.</p>\n<p>At <a href=\"https://2016.us.wordcamp.org/\">WordCamp US 2016</a>, <a href=\"https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle\">the State of Word reported </a>that in 2016 alone there were:</p>\n<ul>\n<li>116 WordCamps around the world</li>\n<li>36,000 attendees</li>\n<li>2,056 speakers</li>\n<li>1,036 sponsors</li>\n<li>750 organizers</li>\n</ul>\n<p>What makes it even more impressive is that these are events put on by volunteers. Matt Mullenweg also shared that these WordCamps are made possible by the generosity of the various sponsors which cover 85 &#8211; 95% of the costs associated with such events.</p>\n<p>It’s because of these sponsors that the costs are kept so low for attendees; including the annual event (WCUS) which came in at a cost greater than $500 per person but sold for ~$20 / day (Total of $40 / person). This is truly a herculean feat, and I commend them on their success to date.</p>\n<h1>The Sponsor Canoe Is Leaking</h1>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/Canoes.png?ssl=1\"><img class=\"size-full wp-image-64321\" src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/Canoes.png?resize=705%2C210&ssl=1\" alt=\"Canoes\" /></a>photo credit: dolbinator1000 <a href=\"http://www.flickr.com/photos/126654539@N08/25305151246\">Boyhood</a> &#8211; <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>With this in mind, I think it’s fair to say that at the rate things are going we might find ourselves with a problem of scale. While there have been 1k + sponsors in 2016, I would wager that a majority of the money is likely coming from a smaller subset of that group.</p>\n<p>Taking this into consideration, unless you’re Automattic, I can’t help but imagine that as a business the ROI question continues to come up as it does for me. This is further compounded by the dramatic increase in the <strong>a)</strong> request for sponsorships (# of camps) and <strong>b)</strong> the economics of the sponsorship itself (the $$ amount).</p>\n<p>This makes me think that it’s only a matter of time when the source of funds will be exhausted. Organizations have fiduciary responsibilities to their companies to spend their cash flow wisely, especially in today’s turbulent economic times.</p>\n<p>The impacts of this, as highlighted above, are going to be felt (if not already) by those volunteers trying to put on these great WordCamps. This will become exceptionally difficult for new camps, especially those in remote cities and countries.</p>\n<h1>Why Do Businesses Sponsor WordCamps?</h1>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2015/09/QuestionmarkSmaller.png?ssl=1\"><img class=\"size-full wp-image-48305\" src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2015/09/QuestionmarkSmaller.png?resize=650%2C200&ssl=1\" alt=\"Smaller Question mark featured image\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/matthewmcvickar/4380126801/\">Matthew McVickar</a> &#8211; <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a>\n<p>There is one common phrase every business that has invested in WordCamps has come to terms with &#8211; <b>sponsorships are done in-kind; expect nothing</b>.<i> I’m not clear how this guidance came to be, whether it was explicitly outlined by the Foundation or guidance that came to be over time. What I do know is that a good number of sponsors are familiar with it. </i></p>\n<p>Whether intended or not, allow me to be the first to publicly admit that while we are familiar with the phrase, no one really subscribes to it. The dirty little secret is that every business has some form of an expected ROI. It’s not always financially based, but there is some expectation. Companies sponsor events because there is some vested interest unless we’re talking about a child’s gymnastics or softball team.</p>\n<p>ROI takes many different shapes. Allow me to share the ROI as I see it when I look across the spectrum of some of today’s top sponsors (know that these are all my opinions as a third-party observer):</p>\n<h3><b>GoDaddy </b></h3>\n<p>They sponsor because they need to. When they came into the space two to three years ago, after the changing of the guard they identified the potential in WordPress. They had an image problem; one that couldn’t be fixed remotely. It had to be fixed with boots on the ground.</p>\n<p>Building relationships. Sharing experiences. Engaging influencers (do not underestimate the power of influencers). Whatever you might think of the brand today is nothing compared to what it was a few years ago. WordCamps have been a critical piece of their strategy to make this work. Who doesn’t know <a href=\"https://ifyouwillit.com/about-mendel-kurland/\">Mendel Kurland</a>?</p>\n<h3><b>SiteGround </b></h3>\n<p>When they started to make their big push into the market, they were at every camp giving away free accounts. For them, it wasn’t about the short-term gain as much as the long-term gain. They had everything going against them. They were from Bulgaria working to service the biggest economic market, the US. They were trying to penetrate what many would argue was an already saturated market.</p>\n<p>I remember when they first appeared. No one knew them, and yet through their guerrilla marketing tactics, brand ambassadorship, stellar performance with customers, and word-of-mouth referrals, they are a powerhouse in the WP hosting space.</p>\n<h3><b>WP Engine</b></h3>\n<p>While they exploded through a number of initiatives, I believe that WordCamps and their strategy to engage with the community is what propelled them ahead of their competitors. Their focus wasn’t revenue generation early on. I recall their free accounts campaign. I think it ran for close to two years.</p>\n<p>What better combination than to have a freemium-like model where all you have to do is focus on user adoption (oversimplification of course). Your product and support are spot on, you just need more people touching it, more people telling their friends about it. They grew organically and these events made that possible.</p>\n<h3><b>Automattic</b></h3>\n<p>Honestly, they have no choice but to sponsor. They are the project sponsor by design. They are in many ways tied to the success and continued growth of the platform. They too have their free services that require adoption and user growth, things like Jetpack, Akismet, WooCommerce, and so many others.</p>\n<p>Without growth, they are dead solutions. They have to show support for a product that they’ve gone all in on. If they don’t sponsor, why would anyone else? Their fates are intertwined.</p>\n<p>And the observations go on. Granted, these are obvious gross oversimplifications, but I share them to highlight what ROI can look like. I also share them to show you what success looks like, and what the DNA of these organizations look like. Most of the scenarios above are built on the idea of “free” or “free-ish” services, with the exception being GoDaddy whose prices are so low you might as well consider them a freemium-like model.</p>\n<h1>Measuring the ROI of Events</h1>\n<p>What happens if you’re a premium service though? In this scenario, your ROI is no longer about adoption or user growth. Instead you’re now focused on growth in the form of revenue and sales. User adoption will never be as great as the freemium model.</p>\n<p>As organizations, we’ve invested a lot of money. There has to be something we’re getting out of this. Only in the WordCamp community have I seen this idea that people will donate not only time, but money, under the assumption that there will be nothing at the end of the tunnel.</p>\n<p>I wanted to better understand this myself, and what better place to look for ROI than our own data here at Sucuri.</p>\n<p>The data below highlights the period between December 2015 &#8211; June 2016. I encourage other businesses to share their own data to add to the conversation. When speaking to ROI, I looked for measurable attributes first:</p>\n<ul>\n<li>How many marketing leads were captured?</li>\n<li>How many sales leads were captured?</li>\n<li>How many of those leads converted to sales?</li>\n<li>What kind of exposure did we get via social?</li>\n<li>What kind of exposure did we get via backlinks?</li>\n</ul>\n<p>Perhaps the biggest immeasurable metric being:</p>\n<ul>\n<li>What kind of brand awareness are you really getting?</li>\n</ul>\n<p>In the table below, <b>sponsorship</b> is exactly what you’d think, while <b>financial investment</b> implies ancillary costs of getting people there, lodging and eating. It does not include labor, collateral, shipping and other items.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/SucurisWordCampsInvestments.png?ssl=1\"><img class=\"size-full wp-image-64325\" src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/SucurisWordCampsInvestments.png?resize=996%2C265&ssl=1\" alt=\"Sucuri WordCamp Investments Dec. 2015 - June 2016\" /></a>Sucuri&#8217;s WordCamp Investments Dec. 2015 &#8211; June 2016\n<p>This chart shows the ROI we got in terms of money (did we close deals?) As a for-profit business one of the many attributes we look at are the total net-new customers we can generate from any investment, including events.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/SucuriCPLCACInvestment.png?ssl=1\"><img class=\"wp-image-64327 size-full\" src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/SucuriCPLCACInvestment.png?resize=887%2C259&ssl=1\" alt=\"Sucuri Investment CPL/CAC Analysis\" /></a>Sucuri Investment CPL/CAC Analysis\n<p>To date, from all the events including WordCamp US (2015), we were able to track a total of 13 deals that closed from a direct engagement at the event. Putting the Customer Acquisition Cost (CAC) in the neighborhood of $12.4k per closed lead.</p>\n<p>This means that my lifetime value (LTV), if they purchased a basic plan at $199.99 would have to be 45 years. If they purchased our $499.99 plan, we&#8217;d be looking at a 18 year LTV.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/SucuriInvestmentMeasurableROI.png?ssl=1\"><img class=\"size-full wp-image-64328\" src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/SucuriInvestmentMeasurableROI.png?resize=1006%2C165&ssl=1\" alt=\"Sucuri Investment Measurable ROI\" /></a>Sucuri Investment Measurable ROI\n<p>Focusing on exposure, it is one of the many things you get from sponsoring an event. You get linkbacks from the event, shout outs on the pages, posts highlighting your sponsorship. What does that really amount to? Can it be measured? The easiest way to answer these questions was to look at the main site links and social engagements.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/12/SucuriWebSocialImpact.png?ssl=1\"><img class=\"size-full wp-image-64329\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/12/SucuriWebSocialImpact.png?resize=577%2C304&ssl=1\" alt=\"Sucuri Web / Social Sponsorship Impact\" /></a>Sucuri Web / Social Sponsorship Impact\n<p>We generated 190 sessions total, the most coming from WordCamp US (at the time of the event, not leading up to it, or after). We generate over 500k sessions a month across all our platforms. This makes 190 total sessions over a six month period negligible.</p>\n<p>In my review, we looked at direct traffic from referrals and traced down the social <b>&#8220;thank you&#8221;</b> and <b>&#8220;promotions&#8221;</b> each event provided. It&#8217;s fair to note, that the lack of success in the measurable values above could be very closely be related to our ineffectiveness as an organization as well. We could just be really bad at working events; it’s an art in and of itself.</p>\n<p>I intentionally did not include marketing leads. For me, my focus is looking at what actually converts so when we go to events, we place more emphasis on qualified sales leads (opportunities) than marketing leads; I am not very big on getting into the card collection and SPAM business.</p>\n<p><b>What does this all mean?</b></p>\n<p>Well, if I was a rational person this would mean that as a premium service provider, investing in WordCamps doesn’t make sense. Trust me, I love the community. We are involved in many ways, but this is really too difficult to digest and justify. I wonder what happens when more companies, even the ones that I shared above, start doing the same mathematics.</p>\n<h1>The WordCamp Sponsorship Conundrum</h1>\n<p>The WordPress platform promotes the idea of Free and targets a very curious niche of people &#8211; self-service/Do It Yourself (DIY) types. By this self-proclaimed profile, they are not buyers of premium services; they are the ones that will invest sweat equity to build or find an alternative to their problem &#8211; <b>it just has to be free. </b></p>\n<p>This ideology is fine, but it also means that it frankly may not be the right market for most premium businesses. I would be remiss however, if I did not highlight the fact that a number of the sponsors for WCUS 2016 were premium service providers. The only challenge I would make to this claim is that just because they are sponsoring, doesn’t mean they are getting a return.</p>\n<p>I’d also challenge it and say some of them have a need to sponsor for some of the same reasons described above. Just because a premium service sponsors, it doesn’t mean their goal is defined purely around selling, in many instances it’s built around brand awareness and ambassadorship &#8211; especially unknown brands, or those with bad reputations. GoDaddy is a perfect example of this.</p>\n<p>Does this mean that there is no hope? No, I don’t think so. I just think we have to ask ourselves some key questions, both as organizations and a community. To assist in the conversation, I’ve highlighted a few areas that I find challenging as a business and encourage others to introduce their own. If nothing else, this can help both the Foundation and organizers alike better work with sponsors.</p>\n<h2>The Audience Quality Factor</h2>\n<p>When we turn our attention to WordCamps, events designed to promote and bring together these ideals, you realize that the problem with WordCamps for businesses is the audience.</p>\n<p>I&#8217;m by no way saying that their current design is bad for what WordCamps were designed for. On the contrary, I&#8217;d say they&#8217;ve done an exceptional job sticking to their predefined audience, at least in terms of cost bracket. They don’t, however, do a good job of differentiating between the various personas in attendance. They’re all rolled up into one big bucket. This creates a severe imbalance between the economic investment and audience potential.</p>\n<p>This imbalance I think has to do with the quality of the audience. This is not meant to imply that the audience is not good in their own right, but from a company perspective not so much (i.e., as a potential customer). In a world where everything is expected to be free, and quickly commoditized, how do you bridge that divide?</p>\n<p>This also has residual effects as well into the quality that can be expected at the event, in terms of organization, presentation and speakers. There are so many different ways this can go, does it mean WordCamp Pro like events? I’m not sure, but what I do know is that in it’s current incarnation something has to give.</p>\n<p>Granted, this does not apply to everyone. I know a number of theme shops that bring and meet their customers at these events. Where closing one deal cannot only cover their costs, but set them up nicely for a couple of months.  My points here are more tailored at product / premium shops that are operating at a very different scale and configuration.</p>\n<h2>Increasing Number of Events Globally</h2>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2013/05/WPWorldLogo.jpg?ssl=1\"><img class=\"alignright size-full wp-image-6948\" src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2013/05/WPWorldLogo.jpg?resize=200%2C160&ssl=1\" alt=\"WordPress World\" /></a>The sheer volume of camps and sponsorships presents a very big problem, not just for the Foundation but for businesses as well. Which ones do you invest in? Which will offer the most return?</p>\n<p>I assure you, these are the conversations that are occurring. There are so many, and it’s impossible to invest in them all (at least in a meaningful way). This will continue to put undue pressures on all the organizing teams looking to raise funds. I think you can see an example of this with this years WCUS 2016 sponsorships, a very different (stark) representation of today’s reality when it comes to sponsorships.</p>\n<p>Yes, I&#8217;m very familiar with the new Global Sponsorship opportunities the Foundation has put together. They&#8217;re divided by geographic region, and don&#8217;t include the main geographic events like WordCamp US and WordCamp Europe. The prices are below:</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/12/GlobalSponsorshipOpportunities.png?ssl=1\"><img class=\"size-full wp-image-64326\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/12/GlobalSponsorshipOpportunities.png?resize=730%2C143&ssl=1\" alt=\"Global Sponsorship Prices\" /></a>Global Sponsorship Prices\n<p>It’s definitely a great idea, but providing a large sum of cash that gets distributed across events that you may or may not attend isn’t something I’m particularly fond of. I worry about the longevity of this program, and while I know there are always new sponsors, what will the churn look like in the program. Only time will tell.</p>\n<h2>Impacts of a Corporation Type</h2>\n<p>For those unfamiliar, the entity responsible for facilitating the growth and management of WordCamps around the world is now known as the <a href=\"https://make.wordpress.org/community/2016/03/02/transitioning-to-wordpress-community-support/\">“WordPress Community Support (WPCS) Public Benefit Corporation (PBC)”</a>. This new entity is a subsidiary of the WordPress Foundation, which is still a non-profit, and established in 2016 (Yes, Matt said it’d take effect in 2017 but I’m pretty sure that was in error).</p>\n<blockquote><p>After March 31, sponsorship payments sent to WordPress Foundation accounts will be returned to sender. Please send <a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer-handbook/first-steps/budget-and-finances/running-the-money-through-wpcs/#sponsorship-revenue\">revised payment instructions</a> to any sponsors who have not yet paid.</p></blockquote>\n<p>This new entity is what is known as a benefit corporation, and should NOT be confused with a b-corp. Although it is used in many instances interchangeably, there are a number of differentiating factors, the biggest being that to obtain a b-corp classification an entity must be certified.</p>\n<blockquote><p>B Corps are for-profit companies certified by the nonprofit B Lab to meet rigorous standards of social and environmental performance, accountability, and transparency.</p></blockquote>\n<p>Establishing a PBC to handle the WordCamps I firmly believe was done with the best of intentions for the community, but it does present a few challenges for private businesses. A PBC is still a private for-profit company. The biggest difference, however, is that unlike other corporation types (e.g., C, S, etc..) a PBC allows an organization to be a charter (or mission focused) in addition to more traditional goals of generating profits for its shareholders.</p>\n<p>This change is a bit more significant than might be implied when reading through <a href=\"https://make.wordpress.org/community/2016/03/02/transitioning-to-wordpress-community-support/\">the announcement</a>. One of the driving forces for the change was to make the sponsorship process easier for both the organizers and sponsors alike:</p>\n<blockquote><p>One of the main advantages to the change from the WordPress Foundation (a non-profit) to the WPCS (a public benefit corporation) is that the rules around sponsoring official WordPress events are much simpler.</p>\n<p>The people involved in overseeing the program have updated sponsor rules accordingly, to eliminate the barriers to value-adding stuff like direct links, discounts, and calls to action, while keeping the ones that helped us form such a trustworthy, community-focused sponsor program, like the rule about not using superlatives or unprovable claims.</p></blockquote>\n<p>As a prior WordCamp organizer, there is perhaps no greater challenge in my mind than asking people for money. While my experience was back in 2011, I can only imagine that the struggles are still the same and one of the things leveraged when pitching to companies are the benefits of a non-profit. The non-profit classification was not just about securing donations like venues (which is very important) but it’s critical for some in securing the dollars they require.</p>\n<p>For a company, it also makes it harder to justify the costs. As the dollar investment continues to increase, the one thing that could always be counted on was the non-profit status. By changing it to a private organization (on paper) it’s donating money to another company (regardless of what the mission may or may not be). This might not be a big deal for some, but when we start talking significant investments, it becomes a serious problem.</p>\n<h1>Incentivizing Businesses</h1>\n<p>When you read through the <a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer/planning-details/fundraising/wordcamp-sponsorship/#wordcamp-sponsorship-rules-for-2016\">Sponsorship rules for 2016</a> the changes are not incentivizing enough for a business. The biggest change being the ability to print comparisons or introduce pricing on collateral, both of which are insignificant as you can account for most of your physical collateral to end up in the trash and difficult to track.</p>\n<p>I believe there will be, or are changes in the works, to include pricing on virtual print as well which will definitely be a positive move, but I defer to the ROI measurements above as well.</p>\n<p>While the idea of incentivizing a business might be repulsive, it’s a necessity. As a good friend of mine mentioned, it’s about exposure for businesses. If we’re investing significant dollars and being such pivotal players in the success of these events, then we’re going to ask for as much exposure as possible.</p>\n<p>We’re also going to push the limits of our imaginations and require some flexibility, in return I think most companies would willingly be open to negotiation and flexibility. If ROI is going to be based on exposure and brand awareness, we need to be able to capitalize on that.</p>\n<p>What might be interesting here is to perhaps do a survey of businesses, those that have been supporting the WordCamp communities for years, and take a poll. Maybe present some options and make them part of the process. Even if it’s a fixed list, maybe ask for a wishlist of things; things that can be discussed and openly taken into consideration.</p>\n<p>Like I tell my teams &#8211;<b>most reasonable people don’t need to always win, they just want to be heard and be part of the process.</b> This applies to companies as well. When it comes down to it, it’s but a few people at each organization that will be your evangelists.</p>\n<h1>WordCamp Sponsorship Can Work</h1>\n<p>I am not saying that sponsoring WordCamps is not valuable. I’m also not saying that it’s a lost cause working with WordCamps.  I am saying that it’s important to have a dialog if longevity is what we’re after in the community,  sponsorships are the bloodline that keep these events going.</p>\n<p>There is little that can be done about the growth of events or the new subsidiary (and I don’t think either is bad). They are today’s realities and as organizations we’ll have to work through them independently.</p>\n<p>The two areas I think can be improved on is the audience and how businesses are incentivized.</p>\n<ul>\n<li>I’m not particularly hopeful of the audience, that’s a problem the community will need to solve and not necessarily something the Foundation should concern themselves with. If I were the Foundation, I would be doing exactly what they are doing &#8211;<b> keep the price as low as possible to make it reachable to everyone (need a low barrier to entry). </b>We’ve already seen a few events attempt this, and the best example in my opinion so far has been <a href=\"https://wooconf.com/\">WooConf</a> and <a href=\"https://wpcampus.org/\">WPCampus</a>.</li>\n</ul>\n<ul>\n<li>The one I’m more hopeful of is how businesses are incentivized. If we can agree that at a minimum all organizations are looking for exposure, then that should be the easiest place to start. A few examples might include: speaking guarantees, more prominent branding, access to some form of audience information. Yes, some of these are highly controversial, but I have faith that together we can make something work that is in line with the spirit of these events. I would also encourage other camps to look at <a href=\"https://2017.miami.wordcamp.org/\">WordCamp Miami</a>; beyond  having a Learn JavaScript Deeply track, they do an exceptional job with the way they engage with their sponsors.</li>\n</ul>\n<p>I share this post as a way to provide a perspective that I hope is unique and valuable. If it starts a discussion, and opens a better dialog between businesses, WordCamp organizers and the Foundation then I will consider it a success. Sponsors are a critical piece to the continued success and growth of these community events, and I’d like to ensure that continues.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Dec 2016 04:36: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: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:28:\"BuddyPress: BuddyPress 2.7.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=261855\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://buddypress.org/2016/12/buddypress-2-7-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:756:\"<p>BuddyPress 2.7.3 is now available. This is a maintenance release and a recommended upgrade for all BuddyPress installations.</p>\n<p>BP 2.7.3 fixes bugs in several components. For more information, see the <a href=\"https://buddypress.trac.wordpress.org/query?group=status&milestone=2.7.3\">2.7.3 milestone</a> on <a>BuddyPress Trac</a>.</p>\n<p>Update to BuddyPress 2.7.3 today in your WordPress Dashboard, or by <a href=\"https://wordpress.org/plugins/buddypress/\">downloading from the wordpress.org plugin repository</a>.</p>\n<p>Questions or comments? Check out the <a href=\"https://codex.buddypress.org/releases/version-2-7-3/\">2.7.3 changelog</a>, or stop by our <a href=\"https://buddypress.org/support/\">support forums</a> or  <a>Trac</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, 07 Dec 2016 23:15:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"@mercime\";s: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:76:\"WPTavern: WordPress 4.7 is the First Release to be 100% Translated into Urdu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=64040\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/wordpress-4-7-is-the-first-release-to-be-100-translated-into-urdu\";s: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:5620:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/lahore-pakistan.jpg?ssl=1\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/lahore-pakistan.jpg?resize=1024%2C589&ssl=1\" alt=\"\" class=\"size-full wp-image-64311\" /></a>photo credit: WasifMalik <a href=\"http://www.flickr.com/photos/47644350@N04/23458524585\">Wazir Khan Masjid Mosque Shahi Royal Hammaam Bathhouse Lahore Pakistan Oct 2015  031</a> &#8211; <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p><a href=\"https://wptavern.com/wordpress-4-7-introduces-twenty-seventeen-default-theme-and-wp-rest-api-content-endpoints\" target=\"_blank\">WordPress 4.7 was released yesterday</a> with translations for 52 languages, thanks to the volunteer efforts of its vibrant community of translators. For the first time, WordPress is 100% translated into Urdu, the national language of Pakistan. Urdu is spoken by 100 million people in several different areas of the world, including India, Bangladesh, Nepal, and the Middle East.</p>\n<p>As part of the effort to bring the Urdu translation to 100%, WordPress developer Ahmad Awais <a href=\"https://ahmadawais.com/urdu-wordpress/\" target=\"_blank\">organized a small meetup in Lahore, Pakistan</a> during the <a href=\"https://wptavern.com/2nd-global-wordpress-translation-day-brings-780-translators-together-across-133-locales\" target=\"_blank\">2nd WP Translation Day</a> event. More than 60 attendees joined online and offline over the span of two days with many participating in the <a href=\"http://WP-Pakistan.Slack.com\" target=\"_blank\">WP-Pakistan Slack</a> team in the #translators channel.</p>\n<p>Having WordPress available in Urdu is a major milestone for the Pakistani tech community. It makes it possible for government websites to adopt the software.</p>\n<p>&#8220;The government websites are required to be accessible,&#8221; Awais said. &#8220;While we are not there yet, there are efforts underway to make every government website available in both English and Urdu.&#8221;</p>\n<p>Awais cited the <a href=\"https://www.nadra.gov.pk/\" target=\"_blank\">National Database and Registration Authority</a> (NADRA) website as one example that has recently started using WordPress for its online portal. NADRA issues identity cards with CNIC numbers in Pakistan, similar to social security numbers in the US.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/nadra-website.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/nadra-website.png?resize=1025%2C720&ssl=1\" alt=\"\" class=\"aligncenter size-full wp-image-64303\" /></a></p>\n<p>&#8220;The NADRA site is far from perfect but is much better than other government sites,&#8221; Aawais said. &#8220;People have already started to notice that. There&#8217;s a pretty large developer community in Pakistan that&#8217;s connected to WordPress in one way or another, but on the consumer end &#8211; not so much.&#8221;</p>\n<p>Awais said many Pakistani media sites are powered by WordPress but adoption is slower when it comes to e-commerce. WordPress penetration in the enterprise sector is nearly non-existent.</p>\n<p>&#8220;I think the 100% Urdu variant of WordPress will definitely help in the expansion for the local consumer-base,&#8221; Awais said. &#8220;Web developers will find it easier to pitch WordPress as the go-to CMS for government, local, and higher education web properties as compared to other proprietary, closed-source Urdu CMS software. That alone can have a huge impact as far as the growth of the local WordPress community is concerned.&#8221;</p>\n<p>The concept of contributing back to open source software is still relatively new in Pakistan but Awais and his fellow translators and developers are working to change the general perception in their tech culture.</p>\n<p>&#8220;I would like to request Foundation to pay more attention to regions like ours, where software developers, computer science students, and entrepreneurs seldom understand the concept of open source software,&#8221; Awais said. &#8220;The concept of giving back and making it work to pay the bills is lost on simple and misunderstood questions of &#8216;Can people make money via Open Source?&#8217; and &#8216;What do you get by giving back and helping out for free?&#8217;</p>\n<p>&#8220;Believe me, these are tough questions to be answered when there are no huge WordPress supported companies picking up the tabs for those who are trying to give back,&#8221; Awais said. &#8220;Support for open source is a rare commodity here. I hope that changes in the next five years or so.&#8221;</p>\n<p>During the <a href=\"https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle\" target=\"_blank\">2016 State of the Word</a>, Matt Mullenweg said one of <a href=\"https://twitter.com/WordCampUS/status/805158678353608704\" target=\"_blank\">the Foundation&#8217;s new focuses</a> will be running educational workshops in developing nations. When asked about how this initiative will work during the Q&amp;A session, Mullenweg said they are still figuring it out but envision an open source curriculum with locally run classes and support.</p>\n<p>More than 100 translators participated in bringing the Urdu translation to 100% for WordPress. With the software now accessible to 100 million Urdu speakers, the region seems like a good candidate for an educational investment to bring more developers up to speed with using WordPress for commerce and government sites.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Dec 2016 20:56:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:64:\"HeroPress: Full Circle: Life Lessons of a Perennial Entrepreneur\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=1517\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://heropress.com/essays/full-circle-life-lessons-perennial-entrepreneur/\";s: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:10454:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/12/120716-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Take the time to learn the fundamentals of HTML, CSS, JS and PHP. You\'ll be glad you did.\" /><p>I didn’t go to college until I was in my 40’s. When I graduated high school I went to work for a family business.</p>\n<p>There has been one common thread throughout my adult career, my love for technology.</p>\n<p>I was 24 when I bought my first computer, it was PC running MS-DOS.</p>\n<p>Five years later, the company I was working for bought a computer program to manage their rental properties. I was responsible for using it and data entry. The program was written by a local software developer. He became a mentor and when problems arose with the code, he walked me through on the phone how to edit and compile the source code. (Yes, he left a copy of the source code on the computer &#8211; this was way before remote support was possible.) It was dBase II. Fast forward a few years later and he hired me as a part-time contractor to help him customize the codebase for his clients. It seemed I had a knack for writing code and troubleshooting bugs.</p>\n<p>Eventually, I would go on to purchase the source code from him and launch my own property management software company. I ran it for eight years, while I rewrote the entire codebase. My business grew. I learned a lot about sales, running a business and managing employees. Most importantly, I learned how to listen to clients and by doing so, I was able to create the products they needed to run their businesses.</p>\n<p>Then, Windows came onto the scene. My software was not Windows compatible. It was running on FoxPro, a Dbase III competitor for MS-DOS. My business plateaued and I was faced with another rewrite of the codebase to stay competitive. To top it off, I’d lost my only support person at the same time. These are the challenges most small business owners face at some point. I was experiencing burnout and needed a change. Long story short, I eventually sold the software line to a competitor who was looking to expand their user base and incorporates some features that were in demand that my product had. It was win-win for both of us and to this day &#8211; I&#8217;m still happy about that transaction.</p>\n<p>I went on to work at a boutique consulting services firm in Houston, Texas as an Account Manager to large Fortune 500 clients, mostly in the energy sector. It was an amazing experience and I learned a lot about working in the enterprise space. This was very different from working with the small property management companies I had previously serviced. It was a great four years. The last year boomed as many clients scrambled to complete their <a href=\"https://en.wikipedia.org/wiki/Year_2000_problem\">Y2K upgrades</a>.</p>\n<p>In the spring of 2000, everything changed. The company had been acquired, and the dot-com bubble had burst. All the Y2K work was done and the world did not end. I decided to take some time off.</p>\n<p>In the fall of 2000, I enrolled at a local community college. I spent the next two years and half years completing my core curriculum and then transferred to Texas A&amp;M in 2003 to complete a Bachelor of Science degree in Horticulture.</p>\n<p><strong>Why Horticulture?</strong> I’ve always loved gardening and jumped at the opportunity to learn everything I could about it.</p>\n<p><strong>Life Lesson:</strong> In hindsight &#8211; I wish I would have completed a degree in Computer Science. It was a bit of my own arrogance, that since I had run a software company and worked at a consulting firm, I knew all I needed to know. Truth was, I didn’t and would have benefited greatly from that experience.</p>\n<h3>Trying to make a hobby into a business.</h3>\n<p>In 2003, I decided to open an online store to sell home and garden gifts. I built a website using the Yahoo Store platform, and for the next 5 years watched it grow.</p>\n<p>My first introduction to WordPress came when I wanted to start a blog for the store. I like the idea of a self-hosted solution and loved getting back into programming.</p>\n<p>I went from running the business from my home to a small warehouse. It was 2007 and the housing market was booming. I jumped at the opportunity to lease a much larger warehouse with a retail storefront.</p>\n<p>There were important life lessons in it. One that made a strong impression on me was best described by the character Justin Matisse in the movie Hope Floats:</p>\n<blockquote><p>&#8220;You&#8217;re talkin&#8217; &#8217;bout the American Dream. You find something that you love, and then you twist it, and you torture it, try and find a way to make money at it. You spend a lifetime doing that. At the end, you can&#8217;t find a trace of what you started out lovin&#8217;. &#8220;</p></blockquote>\n<p>That’s how I felt sometimes when running my store. What I loved about the home and garden space and trying to make money at it were sometimes at odds with each other. I loved designing the website, adding functionality and mastering the art of improving the SEO of the site.</p>\n<p>I was about to learn a very painful and valuable lesson. I was financing the growth with debt. I got caught up in the growth curve and was sure that things would just keep getting better, allowing me to pay down the debt. Indeed servicing the debt was not a problem, as sales continued to grow.</p>\n<p>Then came 2008 and the Great Recession. For the next three years, I watched sales decline, my credit lines pulled and my business contract. That made servicing the debt, really hard. I was stuck in a lease that I could not afford. Many of the vendors I bought products from went out of business. Everyone was hurting. <strong>I was not financially prepared for it.</strong></p>\n<p>In the end, a chain of events led to a huge financial mess &#8211; one that to this day, I am still recovering from. In 2011, I liquidated the inventory, sold my online store to a third-party and moved on.</p>\n<h3>Transitioning to WordPress</h3>\n<p>I wasn’t sure what I wanted to do at that point. I was depressed and dealing with the financial fallout of losing my business.</p>\n<p>I wrote content for a garden center and slowly began working on websites for others. I chose to use the Genesis Framework and began customizing their themes for clients. I liked it because it leveraged the power of hooks and filters in a way that made sense to me &#8211; and the Genesis community is amazing.</p>\n<p>I worked in real estate for a while to help pay the bills, but it just wasn’t right for me.</p>\n<p>During this transition period, I used the time to improve my web development skills. I began working with WordPress every day, learning everything I could. I took online courses in HTML, CSS and PHP.</p>\n<p>Today, I’m running my own business again, building websites and helping clients promote their digital brand. I learned a lot about SEO running my eCommerce business, how to market products, write copy and promote my brand. Now I’m helping clients do that.</p>\n<p>With decades of business experience along with some hard life lessons, here’s what I’ve learned so far:</p>\n<ol>\n<li>Don’t assume things will continue in the same direction. Business is cyclical, so like a squirrel &#8211; stash away some nuts for the winter.</li>\n<li>Stay out of debt.</li>\n<li>Know when to hold &#8217;em and when to fold &#8217;em. Sometimes hindsight helps make this clearer, but trust your gut and follow your instincts.</li>\n<li>Be helpful to others. Take time to share what you’ve learned, make friends and enjoy the ride.</li>\n<li>Learn from every engagement, and take steps to improve how you communicate.</li>\n<li>Be a Life-Long Learner. Dedicate time to experiment, think and try new things.</li>\n</ol>\n<p>Finally, if you’re considering a career in web design and development in WordPress, take the time to learn the fundamentals of HTML, CSS, JS and PHP. You’ll be glad you did.</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: Full Circle: Life Lessons of a Perennial Entrepreneur\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Full%20Circle%3A%20Life%20Lessons%20of%20a%20Perennial%20Entrepreneur&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Ffull-circle-life-lessons-perennial-entrepreneur%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Full Circle: Life Lessons of a Perennial Entrepreneur\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Ffull-circle-life-lessons-perennial-entrepreneur%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%2Ffull-circle-life-lessons-perennial-entrepreneur%2F&title=Full+Circle%3A+Life+Lessons+of+a+Perennial+Entrepreneur\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Full Circle: Life Lessons of a Perennial Entrepreneur\"></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/full-circle-life-lessons-perennial-entrepreneur/&media=https://heropress.com/wp-content/uploads/2016/12/120716-150x150.jpg&description=Full Circle: Life Lessons of a Perennial Entrepreneur\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Full Circle: Life Lessons of a Perennial Entrepreneur\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/full-circle-life-lessons-perennial-entrepreneur/\" title=\"Full Circle: Life Lessons of a Perennial Entrepreneur\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/full-circle-life-lessons-perennial-entrepreneur/\">Full Circle: Life Lessons of a Perennial Entrepreneur</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, 07 Dec 2016 12:30: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:19:\"Jackie D&#8217;Elia\";s: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:87:\"WPTavern: Pantheon’s $100K WordCamp US Sponsorship Revoked the Night Before the Event\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=64248\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wptavern.com/pantheons-100k-wordcamp-us-sponsorship-revoked-the-night-before-the-event\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8493:\"<p>Nearly 2,000 people descended on Philadelphia, PA to attend WordCamp US last week. On the night before WordCamp US took place, <a href=\"https://pantheon.io/\">Pantheon&#8217;s</a> sponsorship was revoked and advertising materials, including the company&#8217;s booth, were hidden in a storage room inside the venue. The move generated a <a href=\"https://twitter.com/danielbachhuber/status/804721149900890112\">lot of controversy</a> on social media and at the event. It cost Pantheon $100K to sponsor WordCamp US, but the company received a refund.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Our booth disappeared but the team\'s still here! Look for us in yellow! <a href=\"https://twitter.com/hashtag/WCUS?src=hash\">#WCUS</a> <a href=\"https://t.co/lnF5aI36oy\">pic.twitter.com/lnF5aI36oy</a></p>\n<p>&mdash; Pantheon (@getpantheon) <a href=\"https://twitter.com/getpantheon/status/804715506674626560\">December 2, 2016</a></p></blockquote>\n<p></p>\n<p>Prior to WordCamp US Matt Stodolnic, Pantheon&#8217;s Vice President of Marketing, contacted the <a href=\"http://www.sheratonphiladelphiadowntown.com/\">Sheraton Downtown Philadelphia</a> and inquired about advertising opportunities. The Sheraton <a href=\"http://www.sheratonphiladelphiadowntown.com/philadelphia-meetings\">hosts a number of meetings</a> and has a couple of different advertising packages available. Stodolnic purchased advertising space on the hotel&#8217;s elevators. The advertising material was simple and didn&#8217;t make unprovable claims, such as the world&#8217;s best or fastest host. This is in line with the <a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer/planning-details/fundraising/wordcamp-sponsorship/#wordcamp-sponsorship-rules-for-2016\">sponsorship rules</a>.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/PantheonElevatorAdvertising.png?ssl=1\"><img class=\"size-full wp-image-64262\" src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/PantheonElevatorAdvertising.png?resize=629%2C806&ssl=1\" alt=\"Pantheon\'s Elevator Advertising\" /></a>Pantheon&#8217;s Elevator Advertising\n<p>On December 1st late at night, Stodolnic received an email from WCUS organizers requesting that the advertising material be removed. Stodolnic pushed back as the sponsorship agreement does not specifically prohibit advertising in the hotel. At one point during the exchange of emails, the WCUS organizing team threatened to take the banners down themselves. Stodolnic responded with anger as the purchase had already been made but he quickly apologized.</p>\n<p>The issue was eventually escalated to Matt Mullenweg, co-creator of the WordPress open source software project, who revoked the company&#8217;s sponsorship of the event for violating the code of conduct. Later that night, WCUS organizers deconstructed Pantheon&#8217;s booth and moved it to a storage room along with 600 T-shirts printed by the company.</p>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/PantheonsBoothBefore.png?ssl=1\"><img class=\"size-full wp-image-64259\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/PantheonsBoothBefore.png?resize=981%2C734&ssl=1\" alt=\"Pantheon\'s Booth at WCUS Before Being Taken Down\" /></a>Pantheon&#8217;s Booth at WCUS Before Being Taken Down\n<p>Day one of WordCamp US went off without a hitch but it was slightly overshadowed by the sudden removal of Pantheon. A few Pantheon employees published unfavorable messages on Twitter about the situation. Those tweets have since been deleted. At the conclusion of day two, Cami Kaos, one of the lead organizers of WordCamp US, published a post on the <a href=\"https://2016.us.wordcamp.org/\">event&#8217;s blog</a> highlighting what happened.</p>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/SponsorUpdatePost.png?ssl=1\"><img class=\"size-full wp-image-64261\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/SponsorUpdatePost.png?resize=1004%2C739&ssl=1\" alt=\"Archived Image of The Post Published on the WCUS Blog Explaining The Situation\" /></a>Archived Image of The Post Published on the WCUS Blog Explaining The Situation\n<p>The post doesn&#8217;t specifically name Pantheon and says the sponsor in question violated the event&#8217;s <a href=\"https://2016.us.wordcamp.org/code-of-conduct/\">code of conduct</a>. I spoke to a number of Pantheon employees who read the post and couldn&#8217;t identify the violation in question. Within hours of being published, the post was removed from the site without an explanation.</p>\n<h2>Cooler Heads Prevail</h2>\n<p>During day two of WCUS, Stodolnic and Pantheon Co-founder Josh Koenig, spoke to Mullenweg face-to-face in a closed-door meeting at the venue. What was said is unknown but when I asked Mullenweg what the result of the meeting was, he said, &#8220;I think we&#8217;re in a much better place.&#8221; He also didn&#8217;t comment when asked how Pantheon violated the code of conduct.</p>\n<p>After the meeting, Stodolnic told me that both sides agreed that communication could have been handled better and that cooler heads prevailed. Mullenweg wouldn&#8217;t comment when asked whether Pantheon was banned from sponsoring WordCamps in 2017.</p>\n<p>We now know that the official hotel for WordCamp US is an extension of the venue allowing organizers to enforce the code of conduct and sponsorship and principles agreements. It&#8217;s likely that due to this incident, the sponsorship agreement will be amended to specifically prohibit advertising in the official hotel at next year&#8217;s event.</p>\n<p>Pantheon is a six-year old company making inroads in the managed WordPress hosting space. Not being able to sponsor WordCamps in 2017, <a href=\"https://central.wordcamp.org/news/2016/03/28/pantheon-joins-the-wordpress-global-community-sponsorship-program-in-2016/\">as they did in 2016,</a> could derail their momentum in building brand awareness.</p>\n<h2>Is It Worth It to Sponsor WordCamps?</h2>\n<p>Many of the sponsors I spoke to at WordCamp US described what Pantheon did as genius and were disappointed that they didn&#8217;t think of it first. This opens the door to a wider conversation. Is it financially worth it to sponsor WordCamps and are there enough opportunities to see a return on investment?</p>\n<p>Earlier this year, Tony Perez, <span class=\"st\">CEO of Sucuri, started a <a href=\"https://twitter.com/perezbox/status/749283708209799168\">passionate discussion</a> on Twitter around the value of sponsoring WordCamps. As the costs of sponsoring and the number of WordCamps increases, businesses will need to be more selective of which camps they sponsor.<br />\n</span></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I think <a href=\"https://twitter.com/hashtag/wordcamp?src=hash\">#wordcamp</a> sponsorships and today\'s businesses will be coming to a cross roads in the the not so distant future.. <a href=\"https://twitter.com/hashtag/wordpress?src=hash\">#wordpress</a></p>\n<p>&mdash; Tony Perez (@perezbox) <a href=\"https://twitter.com/perezbox/status/749283708209799168\">July 2, 2016</a></p></blockquote>\n<p></p>\n<p>One of the <a href=\"https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle\">major announcements at WordCamp US</a> is that WordCamps will now run finances through a <a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer/first-steps/budget-and-finances/running-the-money-through-wpcs/\">Public Benefit Corporation</a>. Previously, finances were run through the <a href=\"http://wordpressfoundation.org/\">WordPress Foundation</a>, a 501(c) non-profit entity which <a href=\"https://make.wordpress.org/community/2016/03/02/transitioning-to-wordpress-community-support/\">severely limited</a> what sponsors were able to do at events due to IRS regulations. When the switch occurred earlier this year, the <a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer-handbook/planning-details/fundraising/wordcamp-sponsorship/#wordcamp-sponsorship-rules-for-2016\">sponsor rules were updated</a> to be less restrictive.</p>\n<p>As WordCamps grow in size, especially WordCamp US, perhaps its time to rethink the benefits that are offered to sponsors to increase the sponsorship&#8217;s value. What sponsorship opportunities would you like to see considered or added for WordCamps?</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Dec 2016 03:00:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:99:\"WPTavern: WordPress 4.7 Introduces Twenty Seventeen Default Theme and WP REST API Content Endpoints\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=64226\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wordpress-4-7-introduces-twenty-seventeen-default-theme-and-wp-rest-api-content-endpoints\";s: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:7624:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/sarah-vaughan.jpg?ssl=1\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/sarah-vaughan.jpg?resize=1025%2C645&ssl=1\" alt=\"photo credit: Wikimedia Commons\" class=\"size-full wp-image-64229\" /></a>photo credit: <a href=\"https://commons.wikimedia.org/wiki/File:Sarah_Vaughan_-_William_P._Gottlieb_-_No._1.jpg\">Wikimedia Commons</a>\n<p>WordPress 4.7 &#8220;Vaughan&#8221; was <a href=\"https://wordpress.org/news/2016/12/vaughan/\" target=\"_blank\">released</a> today, named in honor of American jazz vocalist Sarah &#8220;Sassy&#8221; Vaughan. This release makes significant improvements to the new theme setup experience, inspiring the tagline: &#8220;Your site, your way.&#8221;</p>\n<p><a href=\"https://wptavern.com/new-wordpress-default-theme-twenty-seventeen-merged-into-4-7\" target=\"_blank\">Twenty Seventeen is making its debut in 4.7</a> as the first default theme designed for business websites. It beautifully showcases new features for theme developers and demonstrates many improvements to the setup process. Twenty Seventeen offers four customizable panels on the front page for displaying existing content, custom logo upload, fullscreen featured images, and brand new core support for video headers.</p>\n<div class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]--><br />\n<a href=\"https://make.wordpress.org/core/files/2016/10/panels-ui-small.mp4\">https://make.wordpress.org/core/files/2016/10/panels-ui-small.mp4</a></div>\n<h3>Starter Content and Edit Shortcuts</h3>\n<p>WordPress 4.7 gives theme developers the ability to provide <a href=\"https://make.wordpress.org/core/2016/11/30/starter-content-for-themes-in-4-7/\" target=\"_blank\">starter content</a>, such as a business info widget or a sample social icons menu. The content serves as a placeholder but doesn&#8217;t appear on the live site until the user has customized and published it.</p>\n<p>New <a href=\"https://wptavern.com/visible-edit-shortcuts-in-wordpress-4-7-makes-customizing-sites-easier\" target=\"_blank\">visible edit shortcuts</a> display a pencil icon on areas of a theme that can be customized. Clicking the icons will automatically open the correct panel for the setting, which saves users time that might otherwise have been spent hunting around for the right setting to adjust. Theme authors will need to add theme support as well as support for selective refresh in order to take advantage of this new feature.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/CustomizerShortcutButtons.png?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/CustomizerShortcutButtons.png?resize=1025%2C544&ssl=1\" alt=\"Visible Edit Shortcut Buttons\" class=\"size-full wp-image-63883\" /></a>Visible Edit Shortcut Buttons\n<p>The new starter content and edit shortcuts features, especially when combined, give theme authors the ability to make customization easier and faster for their users. Themes with dozens of customizer options that may have previously seemed complicated to set up may now be more approachable.</p>\n<h3>Improved Menu Building and Custom CSS with Live Previews</h3>\n<p>WordPress 4.7 <a href=\"https://wptavern.com/new-wordpress-feature-proposal-adds-content-authorship-to-menus-in-the-customizer\" target=\"_blank\">adds content authorship to menus in the Customizer</a>. Users can now create new pages while setting up menus, without having to navigate back to the admin. This makes for a smoother workflow when setting up a brand new site.</p>\n<p><a href=\"https://wptavern.com/a-preview-of-the-custom-css-editor-added-to-the-customizer-in-wordpress-4-7\" target=\"_blank\">Custom CSS with live previews</a> is also new in this release. Users can now tweak the appearance of themes and plugins and see the results instantly. Those who have been using Jetpack&#8217;s Custom CSS module should have a seamless migration. The new feature is fairly basic but extensible so <a href=\"https://make.wordpress.org/core/2016/11/26/extending-the-custom-css-editor/\" target=\"_blank\">plugin developers can add additional functionality</a> on top of it.</p>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/WP47CustomizerCSSEditor.png?ssl=1\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/WP47CustomizerCSSEditor.png?resize=1025%2C394&ssl=1\" alt=\"CSS Editor in The WordPress 4.7 Customizer\" class=\"size-full wp-image-63483\" /></a>CSS Editor in The WordPress 4.7 Customizer\n<p>WordPress 4.7 is packed full of many other user-facing improvements that make managing and editing content easier:</p>\n<ul>\n<li>PDF thumbnail previews for better document management</li>\n<li>User admin languages</li>\n<li>Media library is now searchable by file name</li>\n<li>Improved Custom Background Properties UI (<a href=\"https://core.trac.wordpress.org/ticket/22058\" target=\"_blank\">#22058</a>)</li>\n<li><a href=\"https://make.wordpress.org/core/2016/10/28/editor-changes-in-4-7/\" target=\"_blank\">Editor changes</a>: easier access to most-used buttons, improved discovery for keyboard shortcuts in tooltips and dropdowns</li>\n<li>Customizer sliding panels UI is now faster, smoother, and more accessible</li>\n<li>oEmbed support for Facebook posts/activities/photo/videos/media/questions/notes</li>\n</ul>\n<h3>WP REST API Content Endpoints Added to 4.7</h3>\n<p>One of the most exciting improvements to WordPress for developers is the addition of the <a href=\"https://wptavern.com/wp-rest-api-officially-approved-for-merge-into-wordpress-4-7\" target=\"_blank\">WP REST API content endpoints</a> for posts, comments, terms, users, meta, and settings. This API opens up new ways of accessing and presenting WordPress content in themes, plugins, and applications &#8211; both inside and outside of the traditional WordPress interface. The WP REST API now has an <a href=\"https://developer.wordpress.org/rest-api/\" target=\"_blank\">official reference for documentation</a> on WordPress.org.</p>\n<p>A few highlights of additional improvements for developers include the following:</p>\n<ul>\n<li><a href=\"https://wptavern.com/wordpress-4-7-brings-custom-page-template-functionality-to-all-post-types\" target=\"_blank\">Post Type Templates</a> &#8211; custom page template functionality is now available to all post types</li>\n<li><a href=\"https://wptavern.com/wordpress-4-7-will-allow-developers-to-register-custom-bulk-actions-in-admin-list-tables\" target=\"_blank\">Custom bulk actions</a> &#8211; developers can register custom bulk actions for admin list tables</li>\n<li><a href=\"https://make.wordpress.org/core/2016/10/26/registering-your-settings-in-wordpress-4-7/\" target=\"_blank\">Expanded Settings Registration API</a> via register_setting()</li>\n<li><a href=\"https://make.wordpress.org/core/2016/09/08/wp_hook-next-generation-actions-and-filters/\" target=\"_blank\">WP_Hook overhaul</a></li>\n</ul>\n<p>WordPress lead developer Helen Hou-Sandí led the 4.7 release with deputies Jeff Paul and Aaron Jorbin. A record-breaking 482 contributors had props on 4.7 and 205 of them were first-time contributors. More than 100 of those volunteers contributed to the Twenty Seventeen theme. Community translators made it possible for WordPress 4.7 to be available in 52 languages at release time and they also captioned the release video included below in 44 languages. Check out the <a href=\"https://codex.wordpress.org/Version_4.7\" target=\"_blank\">4.7 codex page</a> for a full rundown of all the new features and improvements in this release.</p>\n<p></p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Dec 2016 21:25:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:51:\"Post Status: WordPress 4.7, “Vaughan”, 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:31:\"https://poststatus.com/?p=30979\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://poststatus.com/wordpress-4-7-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:10113:\"<p>WordPress 4.7, “Vaughan”, <a href=\"https://wordpress.org/news/2016/12/vaughan/\">has been released</a>. It’s named, as always, after a famous jazz musician, and this release is named after <a href=\"https://en.wikipedia.org/wiki/Sarah_Vaughan\">Sarah “Sassy” Vaughan</a>, an American jazz singer.</p>\n<p>The Release Lead for WordPress 4.7 was <a href=\"https://helen.blog/\">Helen Hou-Sandí</a> &#8212; who is also a WordPress Lead Developer, and the Director of Platform Experience at 10up. The Deputy Release Leads were <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a>, a Team Lead at XWP, and <a href=\"https://daily.jorb.in/\">Aaron Jorbin</a>, the Director of Engineering at Some Spider. There were more than 475 total contributors to this release, and more than 200 were first time contributors!</p>\n<p>As always, there&#8217;s a <a href=\"http://wordpress.tv/2016/12/06/introducing-wordpress-4-7-vaughan/\">release video</a> that showcases the release highlights. This year, it was produced by Rami Abraham.</p>\n<div id=\"v-AHz0Ca46-1\" class=\"video-player\"><div><img alt=\"Introducing WordPress 4.7\" src=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_scruberthumbnail_0.jpg\" width=\"1024\" height=\"576\" /></div><p>Introducing WordPress 4.7</p></div>\n<p>WordPress 4.7 includes so many changes and new features worth highlighting, I will note a few of what I consider the most important and noteworthy, but it is not all-encompassing. This has been the most productive release in a very long time.</p>\n<h3>WordPress REST API Content Endpoints</h3>\n<p>WordPress is now more extensible than ever before, thanks to the WordPress REST API and the Content Endpoints that have shipped with 4.7. The Content Endpoints are stage two of the REST API rollout, after the infrastructure was included <a href=\"https://poststatus.com/wordpress-4-4/\">in WordPress 4.4</a>.</p>\n<p>The Content Endpoints make it so developers can interact with all major content objects of WordPress: posts (including default and custom post types), terms, users, and comments.</p>\n<p>If you&#8217;ve ever wanted to completely bypass the WordPress templating engine, now you can. You can use WordPress as a content store, and create a custom writing interface, or so many other things, thanks to this API that standardizes interfacing with WordPress.</p>\n<p>The implications for external applications are enormous. Third parties can now reliably anticipate how to work with any WordPress site.</p>\n<p>The WordPress REST API has reached a huge milestone, and <a href=\"https://make.wordpress.org/core/2016/10/19/wordpress-rest-api-success-metrics/\">success metrics</a> have been created to track how things are going with it. But the core team already knows there is much left to do.</p>\n<p>With the <a href=\"https://poststatus.com/matt-mullenweg-state-word-2016/\">new development cycle</a> Matt Mullenweg announced at WordCamp US just last week, the REST API will be one of three parts of WordPress that will have a major release dedicated to enhacing it. The goal is to expand the endpoints to include all site management features of WordPress, so that someone (or WordPress itself) could completely rebuild the WordPress administration experience from scratch, using the WordPress REST API.</p>\n<p>I sincerely believe the REST API is a gamechanger for WordPress. Now, it&#8217;s your turn. Build stuff. Show the world what you&#8217;ve made! There will be official WordPress REST API showcase efforts underway soon to capture what folks are building.</p>\n<p>This project would absolutely not have happened without the following people: Ryan McCue and Rachel Baker for leading the effort, Daniel Bachhuber and Joe Hoyle for their constant work and guidance, K. Adam White for a huge 4.7 effort in project management and wrangling, and Helen Hou-Sandí for making the call to include the API in the release.</p>\n<p>Ready to get started with the WordPress REST API? The new <a href=\"https://developer.wordpress.org/rest-api/\">REST API Handbook</a> will be the home for documentation going forward.</p>\n<h3>Twenty Seventeen</h3>\n<p>Twenty Seventeen is the latest default theme for WordPress, and I believe the best since at least Twenty Twelve. The new default theme has a great multi-section front page feature that offers a great solution for small businesses to highlight their work in a single page format, with large featured images throughout.</p>\n<p><img class=\"aligncenter wp-image-26479 size-large\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/09/twenty-seventeen-promo-752x313.png\" alt=\"twenty-seventeen-promo\" width=\"752\" height=\"313\" /></p>\n<p>Twenty Seventeen was designed by Mel Choyce.</p>\n<h3>Adjusted editor layout</h3>\n<p>Many folks would consider it a minor change, but any change to the WordPress editor is a big one to me. As Andrew Ozz <a href=\"https://make.wordpress.org/core/2016/10/28/editor-changes-in-4-7/\">highlights in the Make Core post</a>, some of the buttons in the default editing toolbar have been moved around, based on statistics of usage.</p>\n<p><img class=\"aligncenter size-large wp-image-30984\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/Screen-Shot-2016-12-06-at-1.24.48-PM-752x447.png\" alt=\"editor-toolbar-rearrangement\" width=\"752\" height=\"447\" /></p>\n<p>Most notably, the headings drop down has been moved to the top row, and strikethrough and horizontal rule buttons have moved down. This is a good step in the right direction in supporting a better and easier to use editor.</p>\n<h3>New Customizer features</h3>\n<p>The WordPress Customizer is another of the three feature focus areas moving forward in WordPress development. And there&#8217;s a lot of new stuff in the Customizer with WordPress 4.7 that you should know about.</p>\n<h4>Video Headers</h4>\n<p>The new default theme supports <a href=\"https://make.wordpress.org/core/2016/11/26/video-headers-in-4-7/\">video headers</a>, a new feature in WordPress, managed within the customizer.</p>\n<h4>Visible Edit Shortcuts</h4>\n<p>The new visible edit shortcuts allow for someone using the customizer to see an icon next to the part of the page that is eligible to be edited in the customizer. It&#8217;s perhaps a small UX addition, but will be very helpful for folks customizing their websites.</p>\n<p><img class=\"aligncenter size-large wp-image-30982\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/Screen-Shot-2016-12-06-at-1.01.09-PM-752x405.png\" alt=\"customize-icon\" width=\"752\" height=\"405\" /></p>\n<h4>Create a Page Within a Menu</h4>\n<p>Finally, you can create pages from within the Menu Customizer. One of the most common site setup steps is to build your menu. But if you haven&#8217;t already created the pages you want to put there, you have to go do that and come back.</p>\n<p>Now users can create a page draft while in the Menu Customizer so that they don&#8217;t have to take unnecessary steps or understand the order WordPress expects. Small wins like this are invaluable for the new user experience.</p>\n<h4>Custom CSS</h4>\n<p>Creating custom CSS straight from the editor has long been a popular Jetpack feature, and it was ported to WordPress core.</p>\n<p><img class=\"aligncenter size-large wp-image-30981\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/12/Screen-Shot-2016-12-06-at-12.59.04-PM-752x438.png\" alt=\"wordpress-edit-css\" width=\"752\" height=\"438\" /></p>\n<p>This isn&#8217;t exactly what I&#8217;d call a best practice, but it&#8217;s a common one. I&#8217;ve used custom CSS myself many times, especially for small sites where I just wanted to get something small done quickly. This feature brings a common request to core, and helps someone customize their sites quicker and without a third party plugin.</p>\n<h4>Starter content for themes</h4>\n<p>I&#8217;m really excited about the new starter content that WordPress themes can now include. This allows for smarter demos, so that the user better sees what the theme is designed for.</p>\n<p>Helen has a whole post <a href=\"https://make.wordpress.org/core/2016/11/30/starter-content-for-themes-in-4-7/\">describing exactly how it works</a>, but this is another feature that takes something that was not great in WordPress (especially for free themes in the WordPress directory) and drastically improves it.</p>\n<p>I really look forward to seeing this in action, and look forward to see how adoption of this feature impacts both free and commercial WordPress theme ecosystems.</p>\n<h3>Post type templates</h3>\n<p>Pages have long support custom templates for WordPress themes to define, and now this feature has been <a href=\"https://make.wordpress.org/core/2016/11/03/post-type-templates-in-4-7/\">extended to all post types</a>, with opt-in support.</p>\n<p>Now it&#8217;s simple for theme authors to create a variety of templates so that content creators can pick and choose from a layout they want to utilize, just like they&#8217;ve always done for pages.</p>\n<h3>Check out the full field guide</h3>\n<p>WordPress 4.7 packs a lot of punch, and I highly recommend looking through the <a href=\"https://make.wordpress.org/core/2016/12/05/wordpress-4-7-field-guide/\">full field guide</a> on the various changes. I have not covered many of the developer focused features in this post, because Aaron has curated the Make Core posts that do a better job of it.</p>\n<p>Also check out the <a href=\"https://codex.wordpress.org/Version_4.7\">Codex page for WordPress 4.7</a> for more information on features and links to specific tickets.</p>\n<hr />\n<p>WordPress 4.7 is a monumental achievement and is the result of the efforts of hundreds.</p>\n<p>Congratulations to Release Lead Helen Hou-Sandí, the core team, and all contributors. While the scheduled and strict-date releases worked really well and kept WordPress coming out on time every four months or so, I&#8217;m excited to see how the new setup mixes things up for WordPress.</p>\n<p>This was a heck of a way to go out with the previous method.</p>\n<p>Go <a href=\"https://wordpress.org/download/\">download WordPress 4.7</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:\"Tue, 06 Dec 2016 19:28: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: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: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:37:\"Dev Blog: WordPress 4.7 “Vaughan”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4596\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://wordpress.org/news/2016/12/vaughan/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:40344:\"<p>Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah &#8220;Sassy&#8221; Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.</p>\n<div id=\"v-AHz0Ca46-1\" class=\"video-player\"><div><img alt=\"Introducing WordPress 4.7\" src=\"https://i1.wp.com/videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_scruberthumbnail_0.jpg?resize=632%2C354&ssl=1\" /></div><p>Introducing WordPress 4.7</p></div>\n<hr />\n<h2>Presenting Twenty Seventeen</h2>\n<p>A brand new default theme brings your site to life with immersive featured images and video headers.</p>\n<p><img class=\"alignnone wp-image-4618 size-large\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=632%2C356&ssl=1\" /></p>\n<p>Twenty Seventeen focuses on business sites and features a customizable front page with multiple sections. Personalize it with widgets, navigation, social menus, a logo, custom colors, and more. Our default theme for 2017 works great in many languages, on any device, and for a wide range of users.</p>\n<hr />\n<h2>Your Site, Your Way</h2>\n<p>WordPress 4.7 adds new features to the customizer to help take you through the initial setup of a theme, with non-destructive live previews of all your changes in one uninterrupted workflow.</p>\n<h3>Theme Starter Content</h3>\n<div class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<a href=\"https://wordpress.org/news/files/2016/12/starter-content.mp4\">https://wordpress.org/news/files/2016/12/starter-content.mp4</a></div>\n<p>To help give you a solid base to build from, individual themes can provide starter content that appears when you go to customize your brand new site. This can range from placing a business information widget in the best location to providing a sample menu with social icon links to a static front page complete with beautiful images. Don’t worry &#8211; nothing new will appear on the live site until you’re ready to save and publish your initial theme setup.</p>\n<div>\n<h3>Edit Shortcuts</h3>\n<div class=\"wp-video\"><a href=\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4\">https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4</a></div>\n<p>Visible icons appear to show you which parts of your site can be customized while live previewing. Click on a shortcut and get straight to editing. Paired with starter content, getting started with customizing your site is faster than ever.</p>\n</div>\n<div>\n<h3>Video Headers</h3>\n<div class=\"wp-video\"><a href=\"https://wordpress.org/news/files/2016/12/video-headers.mp4\">https://wordpress.org/news/files/2016/12/video-headers.mp4</a></div>\n<p>Sometimes a big atmospheric video as a moving header image is just what you need to showcase your wares; go ahead and try it out with Twenty Seventeen. Need some video inspiration? Try searching for sites with video headers available for download and use.</p>\n</div>\n<div></div>\n<div>\n<h3>Smoother Menu Building</h3>\n<p><img class=\"wp-image-4606 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?resize=300%2C158&ssl=1\" /></p>\n<p>Many menus for sites contain links to the pages of your site, but what happens when you don’t have any pages yet? Now you can add new pages while building menus instead of leaving the customizer and abandoning your changes. Once you’ve published your customizations, you’ll have new pages ready for you to fill with content.</p>\n</div>\n<div>\n<h3>Custom CSS</h3>\n<p><img class=\"wp-image-4607 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?resize=300%2C158&ssl=1\" /></p>\n<p>Sometimes you just need a few visual tweaks to make your site perfect. WordPress 4.7 allows you to add custom CSS and instantly see how your changes affect your site. The live preview allows you to work quickly without page refreshes slowing you down.</p>\n</div>\n<div></div>\n<hr />\n<div>\n<h3>PDF Thumbnail Previews</h3>\n<p><img class=\"wp-image-4609 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?resize=300%2C158&ssl=1\" /></p>\n<p>Managing your document collection is easier with WordPress 4.7. Uploading PDFs will generate thumbnail images so you can more easily distinguish between all your documents.</p>\n</div>\n<div>\n<h3>Dashboard in your language</h3>\n<p><img class=\"wp-image-4608 size-medium alignright\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?resize=300%2C158&ssl=1\" /></p>\n<p>Just because your site is in one language doesn’t mean that everybody helping manage it prefers that language for their admin. Add more languages to your site and a user language option will show up in your user’s profiles.</p>\n</div>\n<div></div>\n<hr />\n<h2>Introducing REST API Content Endpoints</h2>\n<p>WordPress 4.7 comes with REST API endpoints for posts, comments, terms, users, meta, and settings.</p>\n<p><img class=\"size-large wp-image-4600 alignnone\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=632%2C205&ssl=1\" alt=\"\" /></p>\n<p>Content endpoints provide machine-readable external access to your WordPress site with a clear, standards-driven interface, paving the way for new and innovative methods of interacting with sites through plugins, themes, apps, and beyond. Ready to get started with development? <a href=\"https://developer.wordpress.org/rest-api/reference/\">Check out the REST API reference.</a></p>\n<hr />\n<h2>Even More Developer Happiness <img src=\"https://s.w.org/images/core/emoji/2.2.1/72x72/1f60a.png\" alt=\"?\" class=\"wp-smiley\" /></h2>\n<h3><a href=\"https://make.wordpress.org/core/2016/11/03/post-type-templates-in-4-7/\">Post Type Templates</a></h3>\n<p>By opening up the page template functionality to all post types, theme developers have even more flexibility with the WordPress template hierarchy.</p>\n<h3>More Theme API Goodies</h3>\n<p>WordPress 4.7 includes <a href=\"https://make.wordpress.org/core/2016/09/09/new-functions-hooks-and-behaviour-for-theme-developers-in-wordpress-4-7/\">new functions, hooks, and behavior</a> for theme developers.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/10/04/custom-bulk-actions/\">Custom Bulk Actions</a></h3>\n<p>List tables, now with more than bulk edit and delete.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/09/08/wp_hook-next-generation-actions-and-filters/\"><code>WP_Hook</code></a></h3>\n<p>The code that lies beneath actions and filters has been overhauled and modernized, fixing bugs along the way.</p>\n<h3>Settings Registration API</h3>\n<p>register_setting() <a href=\"https://make.wordpress.org/core/2016/10/26/registering-your-settings-in-wordpress-4-7/\">has been enhanced</a> to include type, description, and REST API visibility.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/10/12/customize-changesets-technical-design-decisions/\">Customize Changesets</a></h3>\n<p>Customize changesets make changes in the customizer persistent, like autosave drafts. They also make exciting new features like starter content possible.</p>\n<hr />\n<h2>The Squad</h2>\n<p>This release was led by <a href=\"https://helen.blog\">Helen Hou-Sandí</a>, backed up by <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a> and <a href=\"http://aaron.jorb.in/\">Aaron Jorbin</a> as Release Deputies, and with the help of these fine individuals. There are 482 contributors with props in this release—the most ever—with 205 of them contributing for the first time. Pull up some sassy Sarah Vaughan on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/abrightclearweb\">abrightclearweb</a>, <a href=\"https://profiles.wordpress.org/ibachal\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/achbed\">achbed</a>, <a href=\"https://profiles.wordpress.org/acmethemes\">Acme Themes</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adammacias\">adammacias</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/ahmadawais\">ahmadawais</a>, <a href=\"https://profiles.wordpress.org/airesvsg\">airesvsg</a>, <a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Bj&#246;rklund</a>, <a href=\"https://profiles.wordpress.org/akshayvinchurkar\">AkshayVinchurkar</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/xavortm\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/ironpaperweight\">Alex Hon</a>, <a href=\"https://profiles.wordpress.org/alex27\">alex27</a>, <a href=\"https://profiles.wordpress.org/allancole\">allancole</a>, <a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andrewp-2\">Andreas Panag</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/kelderic\">Andy Mercer</a>, <a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/aniketpant\">Aniket Pant</a>, <a href=\"https://profiles.wordpress.org/anilbasnet\">Anil Basnet</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ahortin\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/antisilent\">antisilent</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/zuige\">Antti Kuosmanen</a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">apokalyptik</a>, <a href=\"https://profiles.wordpress.org/artoliukkonen\">artoliukkonen</a>, <a href=\"https://profiles.wordpress.org/ideag\">Arunas Liuiza</a>, <a href=\"https://profiles.wordpress.org/attitude\">attitude</a>, <a href=\"https://profiles.wordpress.org/backermann\">backermann</a>, <a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/binarymoon\">BinaryMoon</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boblinthorst\">boblinthorst</a>, <a href=\"https://profiles.wordpress.org/boboudreau\">boboudreau</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/brainstormforce\">Brainstorm Force</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brianhogg\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>, <a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"https://profiles.wordpress.org/chaos-engine\">Chaos Engine</a>, <a href=\"https://profiles.wordpress.org/cheeserolls\">cheeserolls</a>, <a href=\"https://profiles.wordpress.org/chesio\">chesio</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/choongsavvii\">choong</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chredd\">chredd</a>, <a href=\"https://profiles.wordpress.org/chrisjean\">Chris Jean</a>, <a href=\"https://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>, <a href=\"https://profiles.wordpress.org/chris_d2d\">Chris Smith</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriswiegman\">Chris Wiegman</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"https://profiles.wordpress.org/needle\">Christian Wach</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/clarionwpdeveloper\">Clarion Technologies</a>, <a href=\"https://profiles.wordpress.org/claudiosmweb\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiolabarbera\">ClaudioLaBarbera</a>, <a href=\"https://profiles.wordpress.org/codemovementpk\">codemovement.pk</a>, <a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>, <a href=\"https://profiles.wordpress.org/codfish\">codfish</a>, <a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>, <a href=\"https://profiles.wordpress.org/curdin\">curdin</a>, <a href=\"https://profiles.wordpress.org/cgrymala\">Curtiss Grymala</a>, <a href=\"https://profiles.wordpress.org/cwpnolen\">cwpnolen</a>, <a href=\"https://profiles.wordpress.org/cdog\">Cătălin Dogaru</a>, <a href=\"https://profiles.wordpress.org/danhgilmore\">danhgilmore</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber </a>, <a href=\"https://profiles.wordpress.org/danielkanchev\">Daniel Kanchev</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/danielpietrasik\">danielpietrasik</a>, <a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>, <a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>, <a href=\"https://profiles.wordpress.org/goto10\">Dave Romsey (goto10)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/turtlepod\">David Chandra Purnama</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dglingren\">David Lingren</a>, <a href=\"https://profiles.wordpress.org/davidmosterd\">David Mosterd</a>, <a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/davidbhayes\">davidbhayes</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/deeptiboddapati\">deeptiboddapati</a>, <a href=\"https://profiles.wordpress.org/delphinus\">delphinus</a>, <a href=\"https://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/pcfreak30\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/derrickkoo\">Derrick Koo</a>, <a href=\"https://profiles.wordpress.org/dimchik\">dimchik</a>, <a href=\"https://profiles.wordpress.org/dineshc\">dineshc</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipeshkakadiya</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dotancohen\">Dotan Cohen</a>, <a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/doughamlin\">doughamlin</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/duncanjbrown\">duncanjbrown</a>, <a href=\"https://profiles.wordpress.org/dungengronovius\">dungengronovius</a>, <a href=\"https://profiles.wordpress.org/dylanauty\">DylanAuty</a>, <a href=\"https://profiles.wordpress.org/hurtige\">Eddie Hurtig</a>, <a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>, <a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elyobo\">elyobo</a>, <a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>, <a href=\"https://profiles.wordpress.org/enshrined\">enshrined</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/pushred\">Eric Lanehart</a>, <a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fencer04\">Fencer04</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/foliovision\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/fomenkoandrey\">fomenkoandrey</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fjarrett\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/frankiet\">frankiet</a>, <a href=\"https://profiles.wordpress.org/akeif\">Fred</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/fuscata\">fuscata</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geekysoft\">Geeky Software</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/goranseric\">goranseric</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/grantderepas\">Grant Derepas</a>, <a href=\"https://profiles.wordpress.org/greatislander\">greatislander</a>, <a href=\"https://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/hiddenpearls\">hiddenpearls</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>, <a href=\"https://profiles.wordpress.org/iamjolly\">iamjolly</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianedington\">ian.edington</a>, <a href=\"https://profiles.wordpress.org/idealien\">idealien</a>, <a href=\"https://profiles.wordpress.org/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/imnok\">Imnok</a>, <a href=\"https://profiles.wordpress.org/implenton\">implenton</a>, <a href=\"https://profiles.wordpress.org/ionutst\">Ionut Stanciu</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/krstarica\">Ivan</a>, <a href=\"https://profiles.wordpress.org/ivdimova\">ivdimova</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakept\">Jacob Peattie</a>, <a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesacero\">jamesacero</a>, <a href=\"https://profiles.wordpress.org/japh\">Japh</a>, <a href=\"https://profiles.wordpress.org/jaredcobb\">Jared Cobb</a>, <a href=\"https://profiles.wordpress.org/jayarjo\">jayarjo</a>, <a href=\"https://profiles.wordpress.org/jdolan\">jdolan</a>, <a href=\"https://profiles.wordpress.org/jdoubleu\">jdoubleu</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jimt\">jimt</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jmusal\">jmusal</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelcj91\">Joel James</a>, <a href=\"https://profiles.wordpress.org/johanmynhardt\">johanmynhardt</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/zyphonic\">John Dittmar</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"https://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/kenshino\">Jon (Kenshino)</a>, <a href=\"https://profiles.wordpress.org/jonathanbardo\">Jonathan Bardo</a>, <a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>, <a href=\"https://profiles.wordpress.org/daggerhart\">Jonathan Daggerhart</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnyauk\">jonnyauk</a>, <a href=\"https://profiles.wordpress.org/jordesign\">jordesign</a>, <a href=\"https://profiles.wordpress.org/jorritschippers\">JorritSchippers</a>, <a href=\"https://profiles.wordpress.org/joefusco\">Joseph Fusco</a>, <a href=\"https://profiles.wordpress.org/jjeaton\">Josh Eaton</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshcummingsdesign\">joshcummingsdesign</a>, <a href=\"https://profiles.wordpress.org/joshkadis\">joshkadis</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jrgould\">JRGould</a>, <a href=\"https://profiles.wordpress.org/juanfra\">Juanfra Aldasoro</a>, <a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/nukaga\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/justinbusa\">Justin Busa</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jshreve\">Justin Shreve</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kacperszurek\">kacperszurek</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kalenjohnson\">KalenJohnson</a>, <a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/kellbot\">kellbot</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/wraithkenny\">Ken Newman</a>, <a href=\"https://profiles.wordpress.org/khag7\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver\">kkoppenhaver</a>, <a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/koenschipper\">koenschipper</a>, <a href=\"https://profiles.wordpress.org/kokarn\">kokarn</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kouratoras\">Konstantinos Kouratoras</a>, <a href=\"https://profiles.wordpress.org/kuchenundkakao\">kuchenundkakao</a>, <a href=\"https://profiles.wordpress.org/kuldipem\">kuldipem</a>, <a href=\"https://profiles.wordpress.org/laurelfulford\">Laurel Fulford</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/leobaiano\">Leo Baiano</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">LittleBigThings</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">lukepettway</a>, <a href=\"https://profiles.wordpress.org/lyubomir_popov\">lyubomir_popov</a>, <a href=\"https://profiles.wordpress.org/mageshp\">mageshp</a>, <a href=\"https://profiles.wordpress.org/mahesh901122\">Mahesh Waghmare</a>, <a href=\"https://profiles.wordpress.org/mangeshp\">Mangesh Parte</a>, <a href=\"https://profiles.wordpress.org/manishsongirkar36\">Manish Songirkar</a>, <a href=\"https://profiles.wordpress.org/mantismamita\">mantismamita</a>, <a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/mariovalney\">Mario Valney</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J. (Clorith)</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">Mark Root-Wiley</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/markshep\">markshep</a>, <a href=\"https://profiles.wordpress.org/matrixik\">matrixik</a>, <a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"https://profiles.wordpress.org/jaworskimatt\">Matt Jaworski</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattking5000\">mattking5000</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayuko Moriyama</a>, <a href=\"https://profiles.wordpress.org/mbelchev\">mbelchev</a>, <a href=\"https://profiles.wordpress.org/mckernanin\">mckernanin</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mhowell\">mhowell</a>, <a href=\"https://profiles.wordpress.org/michaelarestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/mauteri\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeviele\">Mike Viele</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/modemlooper\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/deremohan\">Mohan Dere</a>, <a href=\"https://profiles.wordpress.org/monikarao\">monikarao</a>, <a href=\"https://profiles.wordpress.org/morettigeorgiev\">morettigeorgiev</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrbobbybryant\">mrbobbybryant</a>, <a href=\"https://profiles.wordpress.org/natewr\">NateWr</a>, <a href=\"https://profiles.wordpress.org/nathanrice\">nathanrice</a>, <a href=\"https://profiles.wordpress.org/nazgul\">Nazgul</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </a>, <a href=\"https://profiles.wordpress.org/nikeo\">nikeo</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/nnaimov\">nnaimov</a>, <a href=\"https://profiles.wordpress.org/noplanman\">noplanman</a>, <a href=\"https://profiles.wordpress.org/nullvariable\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/odie2\">odie2</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/orvils\">orvils</a>, <a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>, <a href=\"https://profiles.wordpress.org/ottok\">Otto Kek&#228;l&#228;inen</a>, <a href=\"https://profiles.wordpress.org/ovann86\">ovann86</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patilvikasj\">patilvikasj</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/pdufour\">pdufour</a>, <a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/phh\">phh</a>, <a href=\"https://profiles.wordpress.org/php\">php</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/pippinsplugins\">pippinsplugins</a>, <a href=\"https://profiles.wordpress.org/pjgalbraith\">pjgalbraith</a>, <a href=\"https://profiles.wordpress.org/pkevan\">pkevan</a>, <a href=\"https://profiles.wordpress.org/pratikchaskar\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pressionate\">Pressionate</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/procodewp\">procodewp</a>, <a href=\"https://profiles.wordpress.org/quasel\">quasel</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/superpoincare\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramiabraham\">ramiabraham</a>, <a href=\"https://profiles.wordpress.org/ranh\">ranh</a>, <a href=\"https://profiles.wordpress.org/redsand\">Red Sand Media Group</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/rpayne7264\">Robert D Payne</a>, <a href=\"https://profiles.wordpress.org/rnoakes3rd\">Robert Noakes</a>, <a href=\"https://profiles.wordpress.org/d4z_c0nf\">Rocco Aliberti</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/rommelxcastro\">Rommel Castro</a>, <a href=\"https://profiles.wordpress.org/fronaldaraujo\">Ronald Ara&#250;jo</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/guavaworks\">Roy Sivan</a>, <a href=\"https://profiles.wordpress.org/ryankienstra\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/ryanplas\">Ryan Plas</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/sandesh055\">Sandesh</a>, <a href=\"https://profiles.wordpress.org/pollyplummer\">Sarah Gooding</a>, <a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/schlessera\">schlessera</a>, <a href=\"https://profiles.wordpress.org/schrapel\">schrapel</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scrappyhuborg\">scrappy@hub.org</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/seancjones\">seancjones</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sgr33n\">Sergio De Falco</a>, <a href=\"https://profiles.wordpress.org/shayanys\">shayanys</a>, <a href=\"https://profiles.wordpress.org/shprink\">shprink</a>, <a href=\"https://profiles.wordpress.org/simonlampen\">simonlampen</a>, <a href=\"https://profiles.wordpress.org/skippy\">skippy</a>, <a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>, <a href=\"https://profiles.wordpress.org/smyoon315\">smyoon315</a>, <a href=\"https://profiles.wordpress.org/snacking\">snacking</a>, <a href=\"https://profiles.wordpress.org/soean\">Soeren Wrede</a>, <a href=\"https://profiles.wordpress.org/solal\">solal</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/sharkomatic\">Steph</a>, <a href=\"https://profiles.wordpress.org/sswells\">Steph Wells</a>, <a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stevenlinx\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/stubgo\">stubgo</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/patilswapnilv\">Swapnil V. Patil</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki\">Takahashi Fumiki</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tapsboy\">tapsboy</a>, <a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/team\">team</a>, <a href=\"https://profiles.wordpress.org/tg29359\">tg29359</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/the\">the</a>, <a href=\"https://profiles.wordpress.org/themeshaper\">themeshaper</a>, <a href=\"https://profiles.wordpress.org/thenbrent\">thenbrent</a>, <a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/tierra\">tierra</a>, <a href=\"https://profiles.wordpress.org/tnash\">Tim Nash</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford\">timmydcrawford</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tkama\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tnegri\">tnegri</a>, <a href=\"https://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a href=\"https://profiles.wordpress.org/traversal\">traversal</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</a>, <a href=\"https://profiles.wordpress.org/trishasalas\">Trisha Salas</a>, <a href=\"https://profiles.wordpress.org/tristangemus\">tristangemus</a>, <a href=\"https://profiles.wordpress.org/truongwp\">Truong Giang</a>, <a href=\"https://profiles.wordpress.org/tsl143\">tsl143</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>, <a href=\"https://profiles.wordpress.org/valeriutihai\">Valeriu Tihai</a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">voldemortensen</a>, <a href=\"https://profiles.wordpress.org/vrundakansara-1\">Vrunda Kansara</a>, <a href=\"https://profiles.wordpress.org/webbgaraget\">webbgaraget</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design &#124; Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/websupporter\">websupporter</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>, <a href=\"https://profiles.wordpress.org/wolly\">Wolly aka Paolo Valenti</a>, <a href=\"https://profiles.wordpress.org/yale01\">yale01</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yogasukma\">Yoga Sukma</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">youknowriad</a>, <a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>, <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, <a href=\"https://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>, <a href=\"https://profiles.wordpress.org/zhildzik\">zhildzik</a>, and <a href=\"https://profiles.wordpress.org/zsusag\">zsusag</a>.\n<p>&nbsp;<br />\nSpecial thanks go to <a href=\"https://ramiabraham.com/\">Rami Abraham</a> for producing the release video and the many fine haiku we saw in the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">beta</a> and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-release-candidate/\">RC</a> announcement posts.</p>\n<p>Finally, thanks to all the community translators who worked on WordPress 4.7. Their efforts bring WordPress 4.7 fully translated to 52 languages at release time with more on the way. Additionally, the WordPress 4.7 release video has been captioned into 44 languages.</p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress &#8211; we hope you enjoy!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Dec 2016 19:27:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:135:\"WPTavern: State of the Word 2016: Mullenweg Pushes Calypso as Future of WordPress’ Interface, Proposes Major Changes to Release Cycle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=64185\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:141:\"https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle\";s: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:14793:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/sotw-2016.jpg?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/sotw-2016.jpg?resize=1025%2C487&ssl=1\" alt=\"photo credit: WordCamp US organizing team\" class=\"size-full wp-image-64217\" /></a>photo credit: <a href=\"https://twitter.com/WordCampUS/status/805156416935882752\">WordCamp US organizing team</a>\n<p>Philadelphia welcomed 1,923 attendees to WordCamp US this weekend with an additional 2,028 enthusiasts watching via live stream. Matt Mullenweg delivered his 11th annual State of the Word address to a rapt audience ready to celebrate WordPress&#8217; progress over the past year and hear the project leader&#8217;s vision for 2017.</p>\n<p>He began by thanking sponsors and volunteers who made the event possible by covering the bulk of the $516 actual cost per person. Mullenweg said sponsors cover roughly 85-95% of the cost of WordCamps worldwide. In 2016, the events sold a total 36,000 tickets, with costs subsidized by more than 1,000 sponsors.</p>\n<p>Mullenweg said meetups are the leading indicator for WordCamps and these events have had the fastest growth the community has seen in five or six years. More than 62,566 people attended a local meetup in 58 countries and roughly one third of those were new members.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">It’s been a great year for WordCamps and meetups &#8211; 115 total WordCamps hosted in 41 different countries. <a href=\"https://twitter.com/hashtag/wcus?src=hash\">#wcus</a> <a href=\"https://t.co/yVGkT0j52C\">pic.twitter.com/yVGkT0j52C</a></p>\n<p>&mdash; WordCamp US (@WordCampUS) <a href=\"https://twitter.com/WordCampUS/status/805156784763715584\">December 3, 2016</a></p></blockquote>\n<p></p>\n<h3>WordPress Foundation to Create WordPress Community Support Subsidiary</h3>\n<p>In order to better accommodate the extraordinary growth of the global community, the WordPress Foundation will be restructuring its management of WordCamps. In 2016 the Foundation took in an estimated $4.3 million, up from $2.8 million in 2015, with 99.9% of those funds related to WordCamps. Mullenweg announced that the 501c nonprofit will move WordCamps to its own company, WordPress Community Support, forming a PBC (Public Benefit Corporation) that is fully owned by the Foundation.</p>\n<p>He explained that if certain things happened at WordCamps it could endanger the overall Foundation, so WordCamps will now be managed under their own entity where the events will have a little more flexibility in how they do things. The Foundation plans to support some like-minded nonprofits that are aligned with the overall education mission of the organization, including <a href=\"http://www.hackthehood.org/\" target=\"_blank\">Hack the Hood</a>, <a href=\"https://archive.org/index.php\" target=\"_blank\">Internet Archive</a>, and <a href=\"http://www.blackgirlscode.com/\" target=\"_blank\">Black Girls Code</a>. In 2017 the Foundation will also begin promoting hackathons to help nonprofits and NGO&#8217;s.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">The Foundation will focus on supporting like-minded non-profits, education/workshops, and hackathons that benefit non-profits/NGOs. <a href=\"https://twitter.com/hashtag/wcus?src=hash\">#wcus</a> <a href=\"https://t.co/6VfdP82KuM\">pic.twitter.com/6VfdP82KuM</a></p>\n<p>&mdash; WordCamp US (@WordCampUS) <a href=\"https://twitter.com/WordCampUS/status/805158678353608704\">December 3, 2016</a></p></blockquote>\n<p></p>\n<h3>Internationalization is Driving an Increase in Plugin Usage</h3>\n<p>Mullenweg shared a few stats about the plugin directory, which will soon be launching a new design with revamped search functionality. This year has seen a 20% increase in active plugin usage and a 34% increase in plugin downloads totaling 1.48 billion, which Mullenweg attributed to a spike in internationalization efforts over the past year. The number of translation contributors has grown from 5,000 in April 2015 to 17,000 as of November 2016.</p>\n<p>This year there were 1,598 plugins with language packs (up from 314 last year) and 1224 themes with language packs (up from 641 last year). Mullenweg noted that 2/3 of the world speaks one of 12 languages with native fluency and that WordPress covers all of these and many more. In fact, the 4.6 release shipped with support for 50 available languages. WordPress&#8217; top 10 plugins are now 82% complete in the top 12 languages.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">The top 10 plugins are 82% complete in the top 12 languages. <a href=\"https://twitter.com/hashtag/wcus?src=hash\">#wcus</a> <a href=\"https://t.co/LnpEGv0p7o\">pic.twitter.com/LnpEGv0p7o</a></p>\n<p>&mdash; WordCamp US (@WordCampUS) <a href=\"https://twitter.com/WordCampUS/status/805161007349985280\">December 3, 2016</a></p></blockquote>\n<p></p>\n<h3>Mullenweg Continues to Push Calypso as the Future of the WordPress Interface</h3>\n<p>During the <a href=\"https://wptavern.com/state-of-the-word-2015-javascript-and-api-driven-interfaces-are-the-future-of-wordpress\" target=\"_blank\">2015 State of the Word</a>, Mullenweg gave attendees a homework assignment to &#8220;learn JavaScript deeply&#8221; and <a href=\"https://youtu.be/TX6dXRL-jPU?t=59m14s\" target=\"_blank\">promised to submit a JavaScript patch before 4.7</a> came out. He submitted his first pull request to Calypso yesterday, Automattic&#8217;s from-scratch rewrite of WP admin using Node and React.</p>\n<p>WordPress.com users have widely adopted the new interface for publishing. Mullenweg shared statistics showing that 68% of posts went through Calypso since its launch, 17% via mobile, and 15% through the traditional wp-admin. Mobile app and mobile browser usage are also up. &#8220;We now need to start thinking about mobile devices as the primary way people are going to interact with WordPress in the future,&#8221; Mullenweg said.</p>\n<p>From the time it launched, Mullenweg has said that Calypso, or something like it, would be the future of the WordPress interface. He reiterated this in his 2016 address and has committed some of Automattic&#8217;s JavaScript developers from the Calypso team to contribute full-time to core.</p>\n<p>If Calypso has a chance at becoming a promising replacement for the WordPress admin, its creators will need to broaden its interoperability with the WordPress plugin ecosystem. Mullenweg announced that Calypso is now plugin aware and is open to plugins with over 1M active sites.</p>\n<p>The next step on Calypso&#8217;s roadmap is to bring in support for Automattic&#8217;s plugins &#8211; WooCommerce, Akismet, Jetpack, and VaultPress. Mullenweg said the big focus for 2017 is to make plugins Calypso-aware, starting with a handful of the most popular ones before opening it up to all plugins.</p>\n<p>&#8220;The hope is that Calypso, or something like it, is actually what becomes the interface that drives WordPress,&#8221; Mullenweg said. Since no one is currently building anything like Calypso and targeting core, it looks like the technology behind WordPress.com will be driving the evolution of WordPress in 2017.</p>\n<p>If Mullenweg&#8217;s goal is to make Calypso the primary publishing engine for core WordPress, one of the major challenges will be getting plugin developers on board with building compatibility for what is currently an Automattic product. What are the implications of contributing to greater Calypso adoption? If core brings in the Calypso interface in the future, would Automattic push to include its Reader and other WordPress.com functionality, as it has in the mobile apps? These are questions developers will need to weigh when considering whether to pursue a more application-type experience via the Calypso interface.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">What\'s next for Calypso? We\'ll start bringing <a href=\"https://twitter.com/automattic\">@Automattic</a>\'s plugins in. <a href=\"https://twitter.com/hashtag/wcus?src=hash\">#wcus</a> <a href=\"https://t.co/RL8ZduRczM\">pic.twitter.com/RL8ZduRczM</a></p>\n<p>&mdash; WordCamp US (@WordCampUS) <a href=\"https://twitter.com/WordCampUS/status/805165388006887424\">December 3, 2016</a></p></blockquote>\n<p></p>\n<h3>WordPress Recommends Hosts Offering PHP 7+ and HTTPS by Default</h3>\n<p>WordPress core continues to update its recommendations and requirements with the help of hosts who are adopting the latest technologies. The <a href=\"https://wordpress.org/about/requirements/\" target=\"_blank\">official recommendation for WordPress hosting</a> is now PHP 7 or higher. After WordPress.com switched to be 100% on PHP 7, Mullenweg said the network&#8217;s performance doubled and CPU load fell in half. Just 4% of self-hosted sites are on PHP 7, but the new recommendation should help move more hosts towards getting their customers updated.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://t.co/VrQffeOtG0\">https://t.co/VrQffeOtG0</a> has been 100% switched over to PHP7, bringing significant performance improvements. <a href=\"https://twitter.com/hashtag/wcus?src=hash\">#wcus</a> <a href=\"https://t.co/MChiS9QBJh\">pic.twitter.com/MChiS9QBJh</a></p>\n<p>&mdash; WordCamp US (@WordCampUS) <a href=\"https://twitter.com/WordCampUS/status/805164029371158528\">December 3, 2016</a></p></blockquote>\n<p></p>\n<p>Beginning in 2017, WordPress will have progressive enhancement for certain features that are only available for encrypted sites. Mullenweg announced that WordPress.org is now tracking HTTPS adoption. So far 11.45% of active WordPress websites are on HTTPS and <a href=\"https://wptavern.com/wordpress-will-only-recommend-hosting-companies-offering-ssl-by-default-in-2017\" target=\"_blank\">the project will no longer recommend hosts that do not offer it by default</a>. &#8220;We want to bring more of the web to be secure, which is especially important in the post-Snowden era,&#8221; he said.</p>\n<h3>Trying New Things: Major Changes Coming to WordPress&#8217; Core Release Cycle</h3>\n<p>WordPress 4.7 release lead Helen Hou-Sandí joined Mullenweg on stage to highlight a few of the features and improvements that will be coming in the official release on Tuesday. The release is arguably one of the most exciting and successful updates for WordPress in some time, but Mullenweg has a new strategy for core development in 2017.</p>\n<p>&#8220;We&#8217;re at a junction for WordPress where what got us here wont get us there,&#8221; Mullenweg said, after highlighting how the software&#8217;s market share has grown from 13.1% to 27.2% in the past five years.</p>\n<p>Mullenweg proposed a new structure for WordPress releases where design and user testing will lead the way. &#8220;I&#8217;m putting back on the &#8216;product lead&#8217; hat for 2017,&#8221; he said. The upcoming year will have no set release schedule. Mullenweg is upending WordPress&#8217; predictable release cycle in favor of tackling some larger items on the to-do list. He said the focus will be on performance and fixes to existing functionality in three main focus areas: WP REST API, the Editor, and the Customizer.</p>\n<p>Mullenweg said he is particularly interested in getting first-party usage of the REST API in the admin, in hopes of having it evolve to something the project can use for the next decade. If it doesn&#8217;t, he said core will consider bringing it back into a plugin specifically for developers.</p>\n<p>Mullenweg said he feels the editor does not represent the core of WordPress publishing, a sentiment that many users agree with. He hopes to steer it toward a more block-based approach that unifies widgets and includes an interface for shortcodes.</p>\n<p>Mullenweg&#8217;s vision for the Customizer is to see all aspects of WordPress become more instant and provide the same interface and UI affordances as the editor. He announced that Ephox, the company behind TinyMCE, has agreed to work with the project to improve the core editing experience.</p>\n<p>Shifting from a time-based release cycle to one that is more project-based is a major departure from WordPress&#8217; previous release philosophy of &#8220;Deadlines are not arbitrary.&#8221; The project&#8217;s <a href=\"https://wordpress.org/about/philosophy/\" target=\"_blank\">philosophy page</a> identifies the practice of delaying releases for one more feature as a &#8220;rabbit hole&#8221; that has been tested and found to be unpleasant. The new approach to core development makes no guarantee that WordPress will have any releases in 2017.</p>\n<p>If the experiment is not a success, the project&#8217;s days of frequent and fast iteration may be over for awhile. Mullenweg is willing to risk it in hopes of being able to provide more product-based leadership that will distinguish WordPress from its proprietary competitors.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Words of wisdom from <a href=\"https://twitter.com/kristatippett\">@kristatippett</a>: \"We only learn to walk when we risk falling down&#8211;\" <a href=\"https://twitter.com/hashtag/wcus?src=hash\">#wcus</a> <a href=\"https://t.co/6t5sD6Xjbm\">pic.twitter.com/6t5sD6Xjbm</a></p>\n<p>&mdash; WordCamp US (@WordCampUS) <a href=\"https://twitter.com/WordCampUS/status/805170327726780416\">December 3, 2016</a></p></blockquote>\n<p></p>\n<p>&#8220;I think we&#8217;re trying to counter stagnation,&#8221; Mullenweg said when asked about the new approach to releases in the Q&amp;A segment. &#8220;Even though we&#8217;ve had lots of releases, certain parts of WordPress have stagnated and haven&#8217;t made the leaps that they could.&#8221;  He suggested that being part of a feature plugin team will give developers a way to be involved in more active releases and continue to build momentum for eventual inclusion of their projects in core.</p>\n<p>Mullenweg plans to identify a tech lead and a design lead and will be working with them as the overall product lead. He envisions that when one area of WordPress gets to the point where the software can ship significant user-facing improvements, a release will be born.</p>\n<p>&#8220;We&#8217;re at the point now where the steps WordPress needs to take are more significant to get the other 73% of the web it doesn&#8217;t have yet,&#8221; Mullenweg said.</p>\n<p>In a return to WordPress&#8217; poetic roots, he concluded by reading a poem called <a href=\"https://www.poets.org/poetsorg/poem/praise-song-day\" target=\"_blank\">Praise Song</a> for the Day by Elizabeth Alexander.</p>\n<p>The video of the State of the Word address will soon be available on <a href=\"https://www.youtube.com/channel/UCpJf6LGZ0a4n9Lj4aVt9spg\" target=\"_blank\">WordPress&#8217; new YouTube channel</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Dec 2016 18:50:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:51:\"Post Status: Matt Mullenweg State of the Word, 2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=30865\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://poststatus.com/matt-mullenweg-state-word-2016/\";s: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:16796:\"<p>Matt Mullenweg just completed the 2016 State of the Word presentation at WordCamp US 2016.</p>\n<p>This year, Matt focused on a variety of important topics, including the state of user experience in WordPress today, goals for future interface improvements, a WordPress growth council, internationalization gains, the further proliferation of secure websites, and important changes to the WordPress development process.</p>\n<h3>WordCamp US in Philadelphia</h3>\n<p>Matt began his talk by thanking the city of Philadelphia for being a great host of the first two WordCamp US events, as well as the sponsors, organizers, and volunteers that helped make WordCamp US one of the most successful and smoothest run WordCamps ever.</p>\n<p>He also said the per person cost for WordCamp US is over $500 per person, and that only the sponsors make that happen. And next year, WordCamp US is making its way to Nashville.</p>\n<h3>WordCamps and meetups in 2016</h3>\n<p>There were 116 WordCamps in 2016, and over 36,000 attendees, 2,056 speakers, 1,036 sponsors, and 750 organizers.</p>\n<p>There were 3,193 meetup events in 58 countries. These were attended by more than 62,000 people, or nearly double WordCamps.</p>\n<p>Matt says it&#8217;s the fastest growth there has been for these events in around five or six years. WordCamp Europe actually had more people than WordCamp US this year, which Matt took as a personal challenge for Nashville.</p>\n<p><a href=\"http://wordpress.tv/\">WordPress.tv</a> published 26% more talks this year than the previous year, and now there is an official <a href=\"https://www.youtube.com/wordpress\">WordPress channel on YouTube</a>, so more and more videos will begin to be available wherever people want to watch them.</p>\n<h3>WordCamp public benefit corporation and the WordPress Foundation</h3>\n<p>More than a year ago, work began to separate WordCamps from the <a href=\"http://wordpressfoundation.org/\">WordPress Foundation</a>, in order to make WordPress event organizing more flexible and to better protect the WordPress trademarks that the foundation holds.</p>\n<p>One of the things the foundation is going to start doing is support like minded non-profits, and in 2017 will be sponsoring three: Hack the Hood, the Internet Archive, and Black Girls Code.</p>\n<p>Also, the foundation will start to promote hackathons for non-profits and NGOs.</p>\n<h3>WordPress&#8217;s extended family</h3>\n<p>Matt gave a shoutout to WordPress&#8217;s &#8220;cousins&#8221; like BuddyPress and bbPress, highlighting a lot of features that have gone into the software in the last year.</p>\n<h4>BuddyPress and bbPress</h4>\n<p>WordPress.org itself uses BuddyPress and bbPress. For ages, it&#8217;s used outdated versions of bbPress, and in the past year launched a new support form that uses modern bbPress and WordPress profiles use bbPress. Matt says projects like these will get new support and engagement over the next year.</p>\n<h4>HackerOne</h4>\n<p>HackerOne is a security website that allows software organizations to offer bounties to hackers for responsibly disclosing security bugs.</p>\n<h4>GlotPress</h4>\n<p>GlotPress has had a big transformation in the last year, as it is no longer standalone software on top of BackPress, but rather a plugin for WordPress. If you&#8217;ve never been to <a href=\"https://translate.wordpress.org/\">translate.WordPress.org</a>, you&#8217;ve seen GlotPress in action, and it&#8217;s pretty amazing.</p>\n<h4>WordPress.org</h4>\n<p><a href=\"https://wordpress.org\">WordPress.org</a> is a central hub for the WordPress community. Matt highlighted some of the work that&#8217;s been going on this past year around languages, support forums, and more. He also says that new work will be going into P2/O2, which are used for the <a href=\"https://make.wordpress.org\">Make WordPress</a> blogs.</p>\n<p>And he gave attention to the new WordPress plugin repository, which finally uses WordPress itself, and has a whole new design. You can see the new design in action on the new <a href=\"https://wordpress.org/plugins-wp/\">demo site</a>, which should role out to the main Plugins directory soon.</p>\n<h3>WordPress in all languages</h3>\n<p>WordPress 4.6 was available in 50 languages the day it was released. And the top 10 plugins are 82% translated in the top 12 languages used in WordPress.</p>\n<p>Language packs have been a huge help in helping translate plugins as a community project on Translate.WordPress.org, rather than having to ship translations inside the plugin itself.</p>\n<p>1,598 plugins are now using language packs, and 1,224 themes use them. This is huge for the future of WordPress working great in every language.</p>\n<p>Also, in WordPress 4.7, we&#8217;ll see per-user language choices.</p>\n<h3>Learning JavaScript Deeply</h3>\n<p>Last year&#8217;s homework for the community was to learn JavaScript deeply. He says that WordPress is 28% JavaScript now, which hasn&#8217;t changed, but he says we&#8217;ve still made a lot of progress.</p>\n<p>Matt gave himself a personal challenge to learn JavaScript, and he said that 364 days into this challenge, he submitted his first patch to Calypso (Automattic&#8217;s WordPress administration interface). He said, learning JavaScript and becoming as native with JavaScript as with PHP is going to be really important &#8212; especially as the REST API gets included in WordPress 4.7.</p>\n<h3>WordPress Growth Council</h3>\n<p>Matt recently posted about a WordPress Growth Council to help WordPress grow and maintain marketshare.</p>\n<p>He says that what got WordPress to where it is today, won&#8217;t get WordPress to where it can be tomorrow. He blogged about this <a href=\"https://ma.tt/2016/12/wp-growth-council/\">new growth council</a>, which folks can apply for, which will help guide product direction in WordPress going forward.</p>\n<p>Matt actually said in Post Status Slack recently that if WordPress doesn&#8217;t make changes to the interface and otherwise, he&#8217;d expect WordPress marketshare would begin to decline by 2018.</p>\n<h3>HTTPS &amp; PHP7</h3>\n<p>11.45% of WordPress websites are now served via HTTPS. Matt talked last year about how LetsEncrypt and PHP7 were going to be a big deal, but they&#8217;ve turned out to be, &#8220;huge.&#8221; And WordPress will now start applying progressive enhancement techniques for WordPress websites.</p>\n<p>WordPress.com is now fully on PHP7, which he says was an enormous accomplishment. He&#8217;s also announced that <a href=\"https://wordpress.org/about/requirements/\">WordPress.org will now recommend</a> PHP7 by default.</p>\n<h3>Calypso</h3>\n<p>Matt gave some updates on <a href=\"https://developer.wordpress.com/calypso/\">Calypso&#8217;s</a> adoption since it was released last year. He says that 68% of posts on WordPress.com are now written in Calypso. 17% of posts are written via a mobile device, and only 15% of users are using the WordPress admin. For reference, Calypso is the default method of publishing on WordPress.com now, so that includes the desktop website, desktop app, and mobile app.</p>\n<p>Matt says that building Calypso is like, &#8220;building a plane while it&#8217;s flying.&#8221; And while it&#8217;s hard, he says it&#8217;s worth it, but it&#8217;s like rebuilding WordPress &#8212; which took 13 years to do &#8212; in only two years.</p>\n<p>The future of Calypso includes making it &#8220;plugin aware&#8221;, so that prominent plugins (most Automattic plugins included) would be recognized and manageable via Calypso.</p>\n<p>In fact, Calypso is plugin aware today, as the merge has just happened. So now plugins can include custom code to be manageable via Calypso. This is an interesting move to me, especially since Calypso &#8212; while open source &#8212; isn&#8217;t an official WordPress project, but rather an Automattic-owned interface.</p>\n<p>Matt says that someday he&#8217;s like to see Calypso, &#8220;or something like it,&#8221; eventually to become the WordPress interface.</p>\n<h3>Core releases in 2016</h3>\n<p>WordPress 4.5-4.7 will have been released by the end of 2016. Matt says, &#8220;this is very much a year about doing things differently.&#8221; And in that spirit, he&#8217;s pre-announcing the jazz musician in the release. I&#8217;m sure Jeffro will be pleased <img src=\"https://s.w.org/images/core/emoji/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" /> WordPress 4.7 will be named &#8220;Vaughan&#8221;, after jazz musician Sarah &#8220;Sassy&#8221; Vaughan.</p>\n<p>Helen Hou-Sandi came to the stage to discuss WordPress 4.7 in more detail.</p>\n<h3>WordPress 4.7</h3>\n<p>WordPress 4.7 will include a variety of features, and will be released on Tuesday, December 6th.</p>\n<h4>New default theme</h4>\n<p>WordPress includes a new default theme that with a multi-section home page that&#8217;s a brand new WordPress feature. And generally Twenty Seventeen has a lot more broad base appeal for businesses and non-blogging applications than many past themes.</p>\n<h4>Theme setup process</h4>\n<p>Helen really wanted to focus on user interactions in WordPress 4.7. She used the example of her &#8220;tweet storm&#8221; about what it&#8217;s like to change a theme, which took dozens of steps and included a lot of unclear processes.</p>\n<p>Themes in 4.7 can define content that ships with the theme, such as a nav menu setup, sample page content, a password protected page, and other content that would be utilized in the theme. This will be a massive improvement in the initial theme setup experience that I love to see in 4.7.</p>\n<h4>Better menu handling</h4>\n<p>WordPress 4.7 includes better menu building that will also assist the new user experience. Now when you are building a menu in the customizer, you can add a page right from the menu screen, so that if you haven&#8217;t yet written your &#8220;about&#8221; page or whatever else, you&#8217;ll be able to create that draft straight from the menu screen, so the user doesn&#8217;t have to know exactly which flow is necessary to setup their site.</p>\n<h4>&#8220;Sleeper hits&#8221;</h4>\n<p>Helen highlights sleeper features, like thumbnail previews for PDFs and user dashboard languages so a user can use a different language than is set by the site administrator.</p>\n<h4>The WordPress REST API</h4>\n<p>To big applause, Helen noted the inclusion of the WordPress REST API Content Endpoints in 4.7. She says that she&#8217;s excited to take the momentum and excitement around the API and turn it into more real-world projects where people test and put it to practice.</p>\n<h4>Deputy leads</h4>\n<p>Jeff Paul and Aaron Jorbin were the deputy release leads for 4.7, and more than 475 contributors submitted code to 4.7. Over 200 of those contributors are first time contributors.</p>\n<h4>Sneak preview video</h4>\n<p>To end the preview of WordPress 4.7, Helen shared a sneak preview of the WordPress 4.7 video, created by friend Rami Abraham, that highlights &#8220;Carly&#8221;, who is a small business owner building her business website. The video shows a couple more great sleeper hits, like customizer preview icons to help editing, and video headers.</p>\n<h4>That&#8217;s WordPress 4.7</h4>\n<p>WordPress 4.7, I believe, is going to be one of the best releases we&#8217;ve seen in a long, long time. It&#8217;s jam packed, and while I&#8217;m sure we&#8217;ll have plenty of follow-on work, there&#8217;s been a hugely ambitious effort with tons of awesome contributors. None of it would&#8217;ve happened without Helen.</p>\n<h4>WordPress REST API and examples</h4>\n<p>After the video, Matt came back on stage.</p>\n<p>Matt highlighted some of the REST API examples, including the new <a href=\"https://www.guggenheim.org/\">Guggenheim Museum</a> website and <a href=\"http://www.vocativ.com/\">Vocativ</a>, which both use the new API, and are powered by Content Endpoints.</p>\n<h3>A look at the past and future</h3>\n<p>Matt spent a few minutes reflecting over this past, and busy, year; but also spent time discussing the past few years and what&#8217;s in store in the future.</p>\n<p>Matt recognized the &#8220;predictable&#8221; release cycle that we moved to around WordPress 3.8, and how that&#8217;s been a huge benefit for the platform in general.</p>\n<p>In the past five years, we&#8217;ve seen WordPress go from 13.1% to 27.2%, and this kind of marketshare for a CMS is &#8220;unprecedented.&#8221;</p>\n<p>He says, &#8220;What can we try next?&#8221; In other words, he wants to do things differently going forward: &#8220;What got us here, won&#8217;t get us there.&#8221; In order to do this, he&#8217;s proposing a new structure for core development.</p>\n<p>Matt said he wants to see a simpler, faster UX, while simultaneously making it more powerful. This has been my number one goal for WordPress the last few years, so I&#8217;m thrilled to see him highlight it. In the coming releases, he, &#8220;wants to see design leading the way.&#8221;</p>\n<p>In 2017, Matt says he&#8217;s going to be a heavily involved project lead again.</p>\n<h3>No set major releases in 2017</h3>\n<p>Matt made a huge announcement by saying that there will be no set releases in 2017. WordPress Core will continue to move forward, managing maintenance and other items, but will shift to three main focuses for features that will dictate the next several major releases:</p>\n<h4>1) The WordPress REST API</h4>\n<p>He says we need shift from thinking about the input, to measuring the output. He wants the conversation of success metrics to get beyond the &#8220;thousands&#8221; when, &#8220;WordPress is in the tens of millions.&#8221;</p>\n<p>Matt sees powering the WordPress admin with the REST API as a core focus for 2017. In addition, this effort will include shipping authentication tools in WordPress core, so that external applications can connect to WordPress websites. He says if we can&#8217;t move forward with this goal, then we need to consider making the API a plugin again.</p>\n<h4>2) The Editor</h4>\n<p>Matt wants to see a lot of work on the WordPress editing experience. Matt says he showed &#8220;block-baced editor&#8221; (some may remember this as &#8220;content blocks&#8221;) in a State of the Word slide a few years ago, and calls the WordPress editor his &#8220;white whale&#8221;.</p>\n<p>He says we need to be candid about our shortcomings with WordPress so that we can more effectively move forward. Andrew Ozz and Ella Iseulde Van Dorpe have been massively influential on the editor improvements we&#8217;ve seen over the past few years, and their contributions will be huge for moving this goal forward.</p>\n<h4>3) The Customizer</h4>\n<p>&#8220;The customizer is not yet fast enough, and flexible enough, to meet our current needs.&#8221; He&#8217;s excited to see all the new work going into the customizer, but knows there&#8217;s a lot of work to do to take the customizer to the next step.</p>\n<h3>How to get these goals accomplished</h3>\n<p>He says that new major versions of WordPress will not be released until these features are ready. He says that as each project is completed, there will be a major release to go around it.</p>\n<p>I&#8217;m fascinated by this new approach. It&#8217;s like taking the current feature project framework and taking it multiple levels up. It&#8217;s definitely a way to shake things up, and that may be great, considering so many people in the WordPress space enjoy complaining about the slow process that is WordPress feature development.</p>\n<p>Matt, as project lead, says he&#8217;ll personally be taking these on as the lead. And work will begin immediately to make it happen.</p>\n<p>So, I don&#8217;t know if the next release will be called WordPress 4.8, or when it will be, but I&#8217;d be shocked if it&#8217;s four months like past releases. But I guess we&#8217;ll see a lot of minor releases for all the other aspects of core development.</p>\n<p>Matt says he thinks we&#8217;ll fall while we learn to walk in this new way, and that&#8217;s okay.</p>\n<hr />\n<p>I have to admit, these are some pretty surprising announcements. I&#8217;m excited to dig more into the particulars over the coming weeks, but I do think this serves as a worthwhile and important jolt into WordPress core development. That&#8217;s not to say I think WordPress development has been bad, I think it&#8217;s been great.</p>\n<p>Matt finished by reading a poem by Elizabeth Alexander, titled, &#8220;<a href=\"https://www.poetryfoundation.org/poems-and-poets/poems/detail/52141\">Praise Song For The Day</a>&#8221; that marked a fitting end to the talk.</p>\n<p>I think the key takeaway should be like he said: &#8220;what got us here, won&#8217;t get us there.&#8221; Let&#8217;s see how this goes.</p>\n<p><em>Photo credit: Brian Richards for Post Status.</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:\"Sat, 03 Dec 2016 22:20:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:26:\"Matt: WordCamp Live Stream\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=46945\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://ma.tt/2016/12/wordcamp-live-stream/\";s: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:298:\"<p>Later today (3:45pm ET) I&#8217;ll deliver my annual State of the Word speech, which I&#8217;m very excited about. If you&#8217;d like to watch remotely, this year live stream tickets are <strong>free</strong> and <a href=\"https://2016.us.wordcamp.org/live-stream/\">you can tune in here</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:\"Sat, 03 Dec 2016 11:54: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: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:72:\"WPTavern: DigitalCube Launches Shifter, Serverless Hosting for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=64157\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/digitalcube-launches-shifter-serverless-hosting-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3811:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/shifter-logo.png?ssl=1\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/shifter-logo.png?resize=1025%2C419&ssl=1\" alt=\"shifter-logo\" class=\"aligncenter size-full wp-image-64169\" /></a></p>\n<p><a href=\"https://en.digitalcube.jp/\" target=\"_blank\">DigitalCube</a> launched <a href=\"https://getshifter.io/\" target=\"_blank\">Shifter</a> at WordCamp US today, the first serverless hosting product for WordPress. The Japanese development company specializes in WordPress and AWS integrations. Shifter was built by the same team behind the company&#8217;s <a href=\"https://amimoto-ami.com/\" target=\"_blank\">Amimoto</a> cloud hosting platform.</p>\n<p>Shifter converts WordPress sites into a series of static HTML files and serves them up via a global CDN (AWS) for high performance hosting, eliminating the burden of software maintenance and server updates. The product targets websites that have a low frequency of updates, such as business or portfolio sites, as well as maintenance and support providers.</p>\n<p>Shifter allows site owners to turn WordPress on or off in its administration center. The service is a hybrid of a WordPress static site generator and a hosting solution. Shifter hosts the static files it creates and allows users to connect their domains. It leaves the standard WordPress management and administration workflow intact and compiles a new version of the static files anytime users update content inside WordPress. The service starts at $30/month and offers support for unlimited sites.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/shifter-dashboard.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/shifter-dashboard.png?resize=1025%2C652&ssl=1\" alt=\"Shifter dashboard\" class=\"size-full wp-image-64166\" /></a>Shifter dashboard\n<p>As the first commercial product to provide serverless WordPress hosting, Shifter offers a unique way to tackle the security concerns that plague WordPress and its plugins and themes. Because the software is used by more than 27% of all websites, it has become a big target for hackers and spammers alike. Shifter&#8217;s creators see WordPress as a prime candidate for serverless architecture.</p>\n<p>DigitalCube team members met the Philadelphia-based <a href=\"http://j2made.com/\" target=\"_blank\">J2 Design</a> company at last year&#8217;s WordCamp US and partnered with them to improve their branding, copy writing, and approach.</p>\n<p>&#8220;At that time, we were having problems in design, branding, and communication,&#8221; product liaison Shinichi Nishikawa said. &#8220;The name &#8216;Amimoto&#8217; was originally a Japanese word and was difficult for people to pronounce or remember. We saw their work and asked them if we could form a partnership.&#8221;</p>\n<p>Together the Amimoto and J2 Design teams took the project from concept to launch in about three months. They built Shifter with AWS, Docker, and the Serverless Framework. The development team behind the project also supports and manages sites such as The Japan Times, AOL Japan, and Mazda. They frequently contribute to open source projects, including WordPress, Serverless Framework, and WP-CLI.</p>\n<p>Shifter has exited beta and the company has <a href=\"https://www.kickstarter.com/projects/225627578/shifter-serverless-hosting-for-wordpress\" target=\"_blank\">launched a Kickstarter campaign</a> with a $10,000 goal to fund future development on the project&#8217;s <a href=\"https://getshifter.io/blog/development-roadmap/\" target=\"_blank\">roadmap</a>, including domain mapping, a way to visualize usage of bandwidth and storage, multi-factor authentication, advanced scheduling, and WP-CLI support.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 03 Dec 2016 03:44:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:23:\"Matt: WP Growth Council\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=46933\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://ma.tt/2016/12/wp-growth-council/\";s: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:1594:\"<p>In the WordPress world, when we look back an 2016 I think we&#8217;ll remember it as the year that we awoke to the importance of marketing. WordPress has always grown organically through word of mouth and its passionate community, but the hundreds of millions being spent advertising against WP has started to have an impact, especially for folks only lightly familiar with us.</p>\n<p>I&#8217;ve started to hear about a number of folks across many WordPress companies and industries working on this from different angles, some approaching it from an enterprise point of view and some from a consumer point of view. There&#8217;s an opportunity for learning from each other, almost like a mastermind group. As the survey says:</p>\n<blockquote><p>Never have there been more threats to the open web and WordPress. Over three hundred million dollars has been spent in 2016 advertising proprietary systems, and even more is happening in investment. No one company in the WP world is large enough to fight this, nor should anyone need to do it on their own. We&#8217;d like to bring together organizations that would like to contribute to growing WordPress. It will be a small group, and if you or your organization are interested in being a part please fill out the survey below.</p>\n<p>By working together we can amplify our efforts to bring open source to a wider audience, and fulfill WordPress&#8217; mission to truly democratize publishing.</p></blockquote>\n<p>If this sounds interesting to you, <a href=\"http://mcm.polldaddy.com/s/wordpress-growth-council\">apply using this survey</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, 02 Dec 2016 16:22: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: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: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:89:\"WPTavern: WordPress Will Only Recommend Hosting Companies Offering SSL by Default in 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=64081\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wptavern.com/wordpress-will-only-recommend-hosting-companies-offering-ssl-by-default-in-2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3276:\"<p>In October, <a href=\"https://twitter.com/letsencrypt/status/788449815986262016\">Let&#8217;s Encrypt</a> was managing more than 10 million active SSL certificates. That <a href=\"https://twitter.com/letsencrypt/status/802972766525865984\">number doubled to 20 million</a> in November as large  providers continue to partner with the organization to manage their customers&#8217; certificates.</p>\n<p>In 2014, Google announced that HTTPS <a href=\"https://security.googleblog.com/2014/08/https-as-ranking-signal_6.html\">is a ranking factor</a>. Earlier this year, the Google Chrome security team <a href=\"https://wptavern.com/chrome-to-add-security-warning-to-http-sites-beginning-2017\">announced</a> that Chrome 56 will mark HTTP sites that transmit passwords or credit cards as insecure.</p>\n<p><img class=\"aligncenter wp-image-60902 size-full\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/09/chrome-http-warning.png?resize=640%2C251&ssl=1\" alt=\"chrome-http-warning\" /></p>\n<p>In 2017, managed WordPress hosting companies will have one more reason to enable SSL by default for new accounts. In a <a href=\"https://wordpress.org/news/2016/12/moving-toward-ssl/\">post on the WordPress.org blog</a>, Matt Mullenweg, co-founder of the open source WordPress project, explains what the project is going to do to encourage HTTPS by default across the web.</p>\n<p>&#8220;Early in 2017, we will only promote hosting partners that provide a SSL certificate by default in their accounts,&#8221; Mullenweg said.</p>\n<p>&#8220;Later we will begin to assess which features, such as API authentication, would benefit the most from SSL and make them only enabled when SSL is there.&#8221;</p>\n<p>Unrelated to SSL, Mullenweg also commented on the significant performance improvements in PHP7 and will consider whether hosting partners use PHP7 by default for new accounts in 2017.</p>\n<p>These moves are a continued effort by Mullenweg to secure and encrypt as much of the web as possible. Earlier this year, WordPress.com <a href=\"https://en.blog.wordpress.com/2016/04/08/https-everywhere-encryption-for-all-wordpress-com-sites/\">encrypted all of its sites</a> using Let&#8217;s Encrypt.</p>\n<p><a href=\"https://letsencrypt.org/\">Let&#8217;s Encrypt</a> is an initiative which aims to encrypt 100% of the web by making trusted certificates available to everyone at no cost. It&#8217;s a 501(c)(3) nonprofit and recently launched a <a href=\"https://letsencrypt.org/2016/11/01/launching-our-crowdfunding-campaign.html\">crowdfunding campaign</a> to cover the cost of one month of operations totaling $200K.</p>\n<p>Josh Aas, ISRG Executive Director, explains the reasons behind the crowdfunding campaign, &#8220;First, there is a gap between the funds we’ve raised and what we need for next year,&#8221; Aas said.</p>\n<p>&#8220;Second, we believe individual supporters from our community can come to represent a significant diversification of our annual revenue sources, in addition to corporate sponsorship and grants.&#8221;</p>\n<p>To learn more about the campaign and to contribute, visit <a href=\"https://letsencrypt.org/2016/11/01/launching-our-crowdfunding-campaign.html\">Let&#8217;s Encrypt&#8217;s Indiegogo</a> page.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Dec 2016 21:10: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:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Dev Blog: Moving Toward SSL\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4588\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2016/12/moving-toward-ssl/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1626:\"<p>We’re at a turning point: 2017 is going to be the year that we’re going to see features in WordPress which require hosts to have HTTPS available. Just as JavaScript is a near necessity for smoother user experiences and more modern PHP versions are critical for performance, SSL just makes sense as the next hurdle our users are going to face.</p>\n<p>SSL basically means the link between your browser and the server is encrypted. SSL used to be difficult to implement, and often expensive or slow. Modern browsers, and the incredible success of projects like <a href=\"https://letsencrypt.org/\">Let&#8217;s Encrypt</a> have made getting a certificate to secure your site fast, free, and something we think every host should support by default, especially in a post-Snowden era. Google also weighs <a href=\"https://security.googleblog.com/2014/08/https-as-ranking-signal_6.html\">SSL as a search engine ranking factor</a> and will begin <a href=\"http://motherboard.vice.com/read/google-will-soon-shame-all-websites-that-are-unencrypted-chrome-https\">flagging unencrypted sites in Chrome</a>.</p>\n<p>First, early in 2017, we will only promote hosting partners that provide a SSL certificate by default in their accounts. Later we will begin to assess which features, such as API authentication, would benefit the most from SSL and make them only enabled when SSL is there.</p>\n<p>Separately, I also think the performance improvements in PHP7 are particularly impressive, and major kudos to everyone who worked on that. We will consider whether hosts use PHP7 by default for new accounts next year as well.</p>\n<p>&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Dec 2016 17:20:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:71:\"WPTavern: Flywheel Acquires WordPress Local Development Tool Pressmatic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=64057\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/flywheel-acquires-wordpress-local-development-tool-pressmatic\";s: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:3671:\"<p>Flywheel has acquired Pressmatic, a local WordPress development application for OS X. The application was created by <a href=\"https://twitter.com/claygriffiths\" target=\"_blank\">Clay Griffiths</a>, who will be joining Flywheel to support the product as part of the acquisition.</p>\n<p><a href=\"https://pressmatic.io/\" target=\"_blank\">Pressmatic</a> launched in July 2016 with a $129 price tag but Flywheel is opening it up for free for all users. The company is rebranding the product as &#8220;Local by Flywheel&#8221; and plans to create a Windows application, add off-site backups for local sites, and sell premium support.</p>\n<p>“From the start, the application encompassed so many of Flywheel’s core values: speed, simplicity, and allowing designers and developers the freedom to do what they love,&#8221; Flywheel CEO and co-founder Dusty Davidson said. &#8220;It’s a perfect fit.”</p>\n<p>Griffiths told the Tavern that he is excited for the opportunities that Flywheel can provide for Local going forward. &#8220;I originally built Pressmatic because I saw the gap that existed for a truly great local WordPress development experience, and now with the resources and team at Flywheel we&#8217;re set to really build something great,&#8221; Griffiths said. &#8220;I certainly could have continued to go at it alone, but after meeting the team it became clear that the right answer was to partner up and really go big.&#8221;</p>\n<h3>Griffiths Plans to Continue Headway Themes Support and Development in his Spare Time</h3>\n<p>The acquisition comes just months after Griffiths, who is also the co-founder of Headway Themes, was embroiled in the controversy surrounding the company&#8217;s lack of communication and decline in support. Many potential customers were turned off to Pressmatic as the result of Griffith&#8217;s lack of support for Headway Themes&#8217; customers and its mistreatment of employees. They company publicly confirmed its financial troubles and <a href=\"https://wptavern.com/headway-themes-confirms-financial-difficulties-issues-apology-to-customers\" target=\"_blank\">apologized to customers</a> after <a href=\"https://wptavern.com/former-headway-themes-employee-goes-public-staff-has-not-been-paid-and-customers-are-not-receiving-support\" target=\"_blank\">a former employee went public</a> about not having been paid and customers not receiving support.</p>\n<p>When asked how the Pressmattic acquisition affects Headway Themes customers, Griffiths confirmed that he will continue to be involved with support and development of Headway.</p>\n<p>&#8220;This acquisition and employment will provide myself and my family much more stability than we&#8217;ve had in a long time, and will allow me to better focus on Headway in my spare time,&#8221; Griffiths said. &#8220;This includes rolling out the upcoming 4.1 release, and working hard to make sure the support and other outstanding issues are resolved for all our customers.&#8221;</p>\n<p>Pressmatic is used by hundreds of WordPress developers and is Flywheel&#8217;s first acquisition. The application was built on top of <a href=\"http://electron.atom.io/\" target=\"_blank\">Electron</a>, an app framework that enables developers to build cross-platform desktop apps with JavaScript, HTML, and CSS. It allows users to run apache or nginx, switch between PHP versions for any site, create multisite installations (including subdomain setups), and create remote tunnels to share local development. Mac users can download the new Local by Flywheel application at <a href=\"http://local.getflywheel.com\" target=\"_blank\">local.getflywheel.com</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Dec 2016 15:03:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:46:\"HeroPress: WordPressing The Hard Way In Malawi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=1502\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://heropress.com/essays/wordpressing-hard-way-malawi/\";s: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:12291:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/113016-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress has allowed me to find income I otherwise would not have any way in hopes of earning.\" /><p>I am a self-taught graphic designer/ motion designer turned web designer and aspiring web developer from Malawi, Africa. I am a digital tinkerer who has fallen in love with and currently gone steady with WordPress. Still, the journey is rough.</p>\n<p>A little about my home country before you hear my story…</p>\n<h3>Malawi</h3>\n<p><a href=\"https://www.google.com/search?q=malawi\"><img class=\"alignright wp-image-1507\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/googleit.gif\" alt=\"Gif of guy reading book, another guy slapping it away, saying Google It\" width=\"295\" height=\"166\" /></a>Malawi, is at the time of my writing, the poorest country in the world. A tiny land locked country with a population of 17 million, AND still largely rural (about 75%) and struggling to develop.</p>\n<blockquote><p>The average entry level monthly pay for skilled jobs is about $110.</p></blockquote>\n<p>You are really fortunate if you are employed, young, working in the creative industry and earning somewhere near $300 a month. I doubt if anybody <em>actually</em> <strong>employed</strong> by someone in the design, creative and web services industry earns this much.</p>\n<p>That being said, I have been a freelance graphic designer since about 2011, doing gigs from my dorm room in college and my bedroom at home. Earnings from my freelance gigs increased my interest in entrepreneurship and I soon started entertaining the thought of starting my own creative agency or media powerhouse.</p>\n<h3>HOW I FIRST CAME INTO CONTACT WITH WORDPRESS</h3>\n<p>I first came into contact with WordPress in 2014 when a friend of mine from University were planning to start a local tech blog. Before WordPress, all I had was basic and outdated HTML knowledge I learned from high school and some knowledge in Adobe Dreamweaver.</p>\n<p>In 2014 very few websites in Malawi actually ran on WordPress as far as I remember. Most of the websites made in Malawi looked pretty archaic. With what to me was my partners expertise with WordPress Our blog looked like it came from the future. My partner knew where to get the themes (I did not know how he did it then, and still understood very little about WordPress).</p>\n<p>In a little while, ecstatic from the praise and positive feedback from the blog we decided to pursue the idea of opening our own content and media publishing outfit.</p>\n<p>Because our blog looked spectacular we got a few web redesign jobs thanks to the exposure the blog brought. We were ecstatic.</p>\n<p>Unfortunately, we both had very little administrative and business skills we could not maintain the business and we ended up going our separate ways.</p>\n<p>Fast forward post college, out of my first real job that I got in the TV industry ( terrible pay, overworked, and not being paid for about 5 months!) and failing to get more rewarding gigs as my creative agency start up side was cash strapped.</p>\n<p><img class=\"alignright wp-image-1509\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/rowan.gif\" alt=\"Rowan Atkinson looking shocked\" width=\"355\" height=\"200\" />I finally took it upon myself to learn the ins and outs of WordPress. I learned how to install WordPress on a server and did some research on customising Themes. That knowledge alone and presto: I got my first web design clients and started making earning nearly as much as I did at my first job, sometimes a little more, when I get fortunate  some times I even earn three times as much as I used to in a month.</p>\n<blockquote><p>It only took a very short while for me to realise that free WordPress themes can only go so far, especially with my limited code skills.</p></blockquote>\n<p>For most WordPress designers in Malawi, all we did was get nulled themes and customise them. This is the way most WordPress designers in developing countries survive. This is also why I would like to build my own themes from scratch, to avoid the situation where I have to use pirated themes that are not only unsafe for clients but unethical. In addition, I know learning to code will also set me apart from my competition.</p>\n<p>Which leads me to the next bit….</p>\n<h3>HOW THE LACK OF AN ONLINE PAYMENT SOLUTIONS AFFECTS DESIGNERS/DEVELOPERS IN COUNTRIES LIKE MINE</h3>\n<p>My country apparently has PayPal “available”, but the truth is you cannot get yourself a credit card to be able to join creative markets, and do online courses in order to improve your WP skills. The banks here only issue out credit cards to people who travel overseas or apparently have millions in their bank account.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/city.png\"><img class=\"aligncenter wp-image-1510 size-large\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/city-1024x576.png\" alt=\"City Street in Malawi\" width=\"960\" height=\"540\" /></a></p>\n<p>Even so, most of the bank personnel themselves know very little about credit cards and let alone online payment solutions. It is often very frustrating to talk to bank personnel concerning this. Wire transfer and Western Union is still the most popular way to make transactions for goods and services. So many services that we would like to access: plugins, features, etc related to the WP community are far from our reach. The learning and growth often stops the moment you see the “$” sign on websites offering WP solutions and themes.</p>\n<h3>THE CHALLENGES OF BEING SELF TAUGHT IN THE DEVELOPING WORLD</h3>\n<p>As I mentioned earlier, I do not have any programming background, I have always been more of a creative and artsy kind of person. Sure I have an eye for design but in order to grow, I need to learn to code PHP, and PHP hard and it is not easy to do so as premium online courses are inaccessible.</p>\n<p>When you are in a position like mine, you are already deep in freelancing and getting a job is currently not the best option because the pay is terrible for people in your industry, and you have to keep on earning, plus make time to learn code. Getting to actually code well is a chore as you have to mind all the other obligations.</p>\n<p>Between the time to make pitches to clients, finish up graphic design projects, deal with our current load shedding program (we only have about 5 hours of power a day on average now! ) is something I am barely managing.</p>\n<p>Teaching myself code, HTML, CSS,  JavaScript, and PHP for WordPress is something I am determined to do and always in the process of. I try my best to make time to learn. I reckon this would have been easier if I studied a programming course in college but well, here I am.</p>\n<h3>WHAT THE WORDPRESS COMMUNITY LOOKS LIKE TO ME</h3>\n<p>I will be honest, I have only gotten in touch with the actual WordPress community only very recently. Of course I search for solutions from blogs about WordPress but never actually talked to or asked anyone from the community for a solution. The most personal interaction I have ever had with anyone from the WordPress community is when I talked to <a href=\"https://twitter.com/topher1kenobe\">Topher</a> when I applied to write a post for HeroPress.</p>\n<p>I often just isolated myself from any attempt to interact at all because of the glass ceiling. There are these feelings you get; these things you tell yourself when you know you can never truly harness the power of WordPress because of your lack of a way to pay for stuff online: You could never be half as good as anyone in developed countries, you will never ever get premium support, you can never be eligible for premium support. I reckon these feelings are worse for people teaching them self how to code like me.</p>\n<p>So when I came across a tweet from <a href=\"https://twitter.com/heropress\">@HeroPress</a> about a post that talked about how WordPress marginalises some, it piqued my interest. It was a post from a WordPress developer in India, and it detailed how people from developing countries could never paid the same way someone from the developed countries would for the same skills or services. I totally relate and knew right away I need to sign up to tell my story.</p>\n<blockquote><p>WordPress designers and wanna-be developers like me (who cannot access online pay systems) often feel side lined.</p></blockquote>\n<p>When it comes to classes, we stop at the freebies portion, often than not our Google Searches look like this</p>\n<p>“Free image slider plugins for WordPress” “Free WordPress tutorials”</p>\n<p>I wish more developers, or people with more global privilege would consider alternate ways for users who cannot pay for courses, themes, or plugins would make. We may not seem to be present, but we are there. I would love to see more WordPress tutors and developers open up ways to accommodate aspiring learners like me who cannot access plugins, courses and themes, to be able to give back and to participate at another level.</p>\n<p>Many wannabe developers who come from situations similar to mine often shy away from participating with the WordPress community or getting deeper with WordPress because in the ways I have mentioned above, the WordPress community feels like it belongs to those only privileged enough on the internet.</p>\n<p>WordPress has allowed me to find income I otherwise would not have any way in hopes of earning. Sure it is lower by global standards, but it makes a huge difference where I live. This is about to be my second year with WordPress, and coming across members of the community with varying backgrounds through HeroPress’ stories tells me there is hope for WordPress users like me.</p>\n<blockquote><p>I believe through sharing stories like these not only will WordPress products/services be more accessible but aspiring self-taught developers like me will also find more courage in reaching out to connect with others out there.</p></blockquote>\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: WordPressing The Hard Way In Malawi\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPressing%20The%20Hard%20Way%20In%20Malawi&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpressing-hard-way-malawi%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPressing The Hard Way In Malawi\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpressing-hard-way-malawi%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%2Fwordpressing-hard-way-malawi%2F&title=WordPressing+The+Hard+Way+In+Malawi\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPressing The Hard Way In Malawi\"></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/wordpressing-hard-way-malawi/&media=https://heropress.com/wp-content/uploads/2016/11/113016-150x150.jpg&description=WordPressing The Hard Way In Malawi\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPressing The Hard Way In Malawi\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpressing-hard-way-malawi/\" title=\"WordPressing The Hard Way In Malawi\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpressing-hard-way-malawi/\">WordPressing The Hard Way In Malawi</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, 30 Nov 2016 12: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:15:\"Robert Cheleuka\";s: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:73:\"WPTavern: Elizabeth Shilling Awarded the Kim Parsell Memorial Scholarship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=64044\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/elizabeth-shilling-awarded-the-kim-parsell-memorial-scholarship\";s: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:1621:\"<p>The WordPress Foundation <a href=\"https://2016.us.wordcamp.org/2016/11/24/announcing-the-kim-parsell-memorial-scholarship-winner-elizabeth-shilling/\">has announced</a> that <a href=\"http://www.orcawebperformance.com/\">Elizabeth Shilling</a>, one of three co-founders of the <a href=\"https://womenwhowp.org/\">Women Who WP </a>meetup group, is the second recipient of the <a href=\"https://make.wordpress.org/community/2015/01/15/remembering-kim-parsell/\">Kim Parsell Memorial Scholarship</a>.</p>\n<p>The scholarship was created in 2015 to remember Kim Parsell and provide an opportunity for a woman who may not have the financial means to attend the largest WordCamp in the US.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/bridget-elizabeth.jpeg?ssl=1\"><img class=\"size-full wp-image-64047\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/bridget-elizabeth.jpeg?resize=1025%2C769&ssl=1\" alt=\"Bridget Willard on the left with Elizabeth Shilling on the right\" /></a>Bridget Willard on the left with Elizabeth Shilling on the right\n<p>Shilling is a former biology teacher, business owner, plugin developer, and feminist leader. According to the <a href=\"https://2016.us.wordcamp.org/2016/11/24/announcing-the-kim-parsell-memorial-scholarship-winner-elizabeth-shilling/\">announcement</a>, Shilling was chosen for her dedication to open source and being a champion for women in leadership. The scholarship covers the cost of a WordCamp ticket, flight, and lodging. If you see Shilling at WordCamp US this weekend, be sure to congratulate her.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Nov 2016 22:48:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:77:\"WPTavern: PDF Image Previews Among the Improvements to Media in WordPress 4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=64026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wptavern.com/pdf-image-previews-among-the-improvements-to-media-in-wordpress-4-7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1840:\"<p>Among the many enhancements in WordPress 4.7 are improvements to the media component. Previous to 4.7, users who uploaded files to the media library and changed the title could not search for them by file name. Four years since the <a href=\"https://core.trac.wordpress.org/ticket/22744\">ticket was created</a>, users will be able to search for media by filename.</p>\n<p>PDFs are <a href=\"https://make.wordpress.org/core/2016/11/15/enhanced-pdf-support-4-7/\">easier to preview</a> as the media library will create an image preview of the first page. This image is used throughout the library and media attachment screens.</p>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/PDFpreviews.png?ssl=1\"><img class=\"size-full wp-image-64027\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/PDFpreviews.png?resize=864%2C317&ssl=1\" alt=\"PDF Preview Images in the WordPress Media Library\" /></a>PDF Preview Images in the WordPress Media Library\n<p>In order to generate the previews, the webhosting server needs to support Imagick, ImageMagick, and Ghostscript. If support is not detected, WordPress will fall back and save the attachment without adding a preview image.</p>\n<p>WordPress 4.7 also removes the <a href=\"https://wptavern.com/wordpress-4-7-improves-accessibility-by-removing-alternative-text-fallbacks\">caption text and the image title fallbacks</a> to generate alternative text. Developers are encouraged to read the <a href=\"https://make.wordpress.org/core/2016/11/15/enhanced-pdf-support-4-7/\">detailed notes</a> surrounding PDF previews to ensure compatibility with WordPress 4.7. There&#8217;s also a handful of other changes to media that users and developers can <a href=\"https://make.wordpress.org/core/2016/11/22/media-changes-in-4-7/\">read here</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Nov 2016 01:41:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:41:\"Dev Blog: WordPress 4.7 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4579\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2016/11/wordpress-4-7-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4302:\"<p>The release candidate for WordPress 4.7 is now available.</p>\n<p>RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.7 on <strong>Tuesday, December 6</strong>, but we need <em>your</em> help to get there. If you haven’t tested 4.7 yet, now is the time! To test WordPress 4.7, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.7-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>WordPress 4.7 is a jam-packed release, with a number of features focused on getting a theme set up for the first time. Highlights include a <a href=\"http://2017.wordpress.net/\">new default theme</a>, video headers, custom CSS, customizer edit shortcuts, PDF thumbnail previews, user admin languages, REST API content endpoints, post type templates, and more.</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39353&stop_rev=39263&limit=200&verbose=on&sfp_email=&sfph_mail=\">quite a few refinements</a> since releasing Beta 4 a week ago, including usability and accessibility enhancements for video headers, media and page template support in starter content, and polishing of how custom CSS can be migrated to and extended by plugins and themes. The REST API endpoints saw a number of bugfixes and notably now have anonymous comment off by default.</p>\n<p>Not sure where to start with testing? Try setting up a fresh site on a new installation with Twenty Seventeen (hint: head into customizing your site before touching any pages or widgets) and taking notes on what you enjoyed and what got you stuck. For more details about what&#8217;s new in version 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.7 and update your plugin’s <em>Tested up to</em> version in the readme to 4.7. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we work hard to avoid breaking things. An in-depth field guide to developer-focused changes is coming soon on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> And if you haven&#8217;t yet done so, now is a great time to <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey\">take the Annual WordPress Survey</a> and send it on to your friends.</p>\n<p>Happy testing! And now for another <a href=\"https://profiles.wordpress.org/ramiabraham\">Rami Abraham</a> haiku break.</p>\n<p><em>Select your language</em><br />\n<em>Then let your users choose theirs</em><br />\n<em><code>get_user_locale()</code></em></p>\n<p><em>Theme authors rejoice</em><br />\n<em>Any option may employ</em><br />\n<em>Selective refresh</em></p>\n<p><em>Custom header video</em><br />\n<em>Make sure to <code>add_theme_support</code></em><br />\n<em>Bling above the fold</em></p>\n<p><em>A new template dawns</em><br />\n<em>A hierarchy member</em><br />\n<em>Post-type templates live</em></p>\n<p><em>PDF updates</em><br />\n<em>Pack a parade of polish</em><br />\n<em>Prettier previews</em></p>\n<p><em>Template Post Type: New</em><br />\n<em>Template Post Type: And Useful</em><br />\n<em>Template Post Type: Thing</em></p>\n<p><em>Let lists live lively</em><br />\n<em>Laud <code>wp_list_sort()</code></em><br />\n<em>Less laconic lists</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Nov 2016 04:26:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:45:\"WPTavern: Why Are You Thankful for WordPress?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=64012\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/why-are-you-thankful-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3841:\"<p>Tomorrow is Thanksgiving in the US. It&#8217;s a time of reflection and an opportunity to express gratitude for the good things in life. In <a href=\"http://kitchensinkwp.com/podcast-e143-thankgiving-wordpress-2016/\">episode 143</a> of the KitchensinkWP podcast, host Adam Silver asked his two sons why they&#8217;re grateful for WordPress.</p>\n<p>&#8220;I am thankful for WordPress because it gives you a job for the household that we live in and it makes you happy which also makes me happy and smile,&#8221; Parker said. &#8220;I am thankful for WordPress because it makes you happy and it makes me happy and it provides a roof over our heads,&#8221; Carson said.</p>\n<p>Inspired by the episode, <a href=\"https://twitter.com/josheby\">Josh Eby</a> created the <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> hashtag on Twitter. Here are a few reasons why people are thankful for WordPress.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">My <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> List:<br />* Life I enjoy because of WP<br />* Lifelong, <a href=\"https://twitter.com/hashtag/Iceberg?src=hash\">#Iceberg</a> friendships<br />* Passionate <a href=\"https://twitter.com/ithemes\">@ithemes</a> team<br />* Customers who support us</p>\n<p>&mdash; Cory Miller (@corymiller303) <a href=\"https://twitter.com/corymiller303/status/801458665790304256\">November 23, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">My <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> list: the awesome community, resources, WordCamps, building websites w/ WP, the people, oh and did I mention the people? ❤️</p>\n<p>&mdash; Justine Pretorious (@jpretorious) <a href=\"https://twitter.com/jpretorious/status/801334701306875905\">November 23, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I’m <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> and particularly for <a href=\"https://twitter.com/hashtag/GenesisWP?src=hash\">#GenesisWP</a> because it’s afforded me opportunities I didn’t have before and awesome friendships.</p>\n<p>&mdash; Susan Ramsey (@onehappystudio) <a href=\"https://twitter.com/onehappystudio/status/801226653435396096\">November 23, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I am <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> &#8211; People. Connections. A New Career. Teaching. Learning. Ah-ha Moments. WordCamps. Friends. Support. Good Times.</p>\n<p>&mdash; BobWP (@bobWP) <a href=\"https://twitter.com/bobWP/status/801202449180524544\">November 22, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I am <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> because it gave me opportunity to leave the 9to5 job and start something of my own <a href=\"https://twitter.com/hashtag/myownbusiness?src=hash\">#myownbusiness</a> <a href=\"https://twitter.com/wfanzine\">@wfanzine</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash\">#WordPress</a></p>\n<p>&mdash; Sanjeev Mishra (@sonziv) <a href=\"https://twitter.com/sonziv/status/801164921861902336\">November 22, 2016</a></p></blockquote>\n<p></p>\n<p>I&#8217;m thankful for WordPress because of the opportunities it has provided me and I&#8217;ve met some amazing people because of it. If you&#8217;re thankful for WordPress please let us know why in the comments. From all of us at the Tavern, have a safe and enjoyable Thanksgiving.</p>\n<blockquote><p>Gratitude is a currency that we can mint for ourselves, and spend without fear of bankruptcy &#8211; Fred De Witt Van Amburgh</p></blockquote>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Nov 2016 00:05: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:\"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:30:\"HeroPress: Building Confidence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=1457\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://heropress.com/essays/building-confidence/\";s: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:5817:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/112316-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The WordPress community give me confidence to talk to people & in front of people.\" /><p>I can clearly divide my life in two parts before and after marriage. Before I got married, I was staying in Chapra, a small city in Bihar. I had graduated in Botany, we only had electricity for 5-6 hours a day and no easy access to internet or computers.</p>\n<p>After my marriage, I came to Pune, a bigger city compared to Chapra and things changed for me. I was exposed to exciting world of technology, thanks to my husband who was then working at a startup. I had lot of free time so I decided to learn as much as I could just to see what I can do and started by learning MS Office, then Photoshop a bit and in the process I also learned HTML, CSS. I tried but couldn’t get much hang of JavaScript.</p>\n<p>Once I got confident that I can write decent HTML, I switched to learning CMS and first one I tried was Joomla, and for me it was very hard to understand, I had more question then I could find answers to. So on suggestion of my husband I switched to WordPress. I was able to quickly figure things out with WordPress and set up a blog for myself.</p>\n<p>In 2010, I joined WPoets as QA. In those days I had some free time.</p>\n<blockquote><p>To improve my skills I started looking into old reviews of the themes that were approved on WordPress themes repository.</p></blockquote>\n<p>This helped me understand theme file structures and various criteria to check themes for, I used skills acquired to ensure themes built by WPoets were also following these guidelines.</p>\n<p>Sometime in 2011, once I was confident that I have understood the process I joined the ‘Theme Review Team’ and started officially reviewing themes in the repository. This was a proud moment for me.  During my journey as theme reviewer I was helped and guided by Emil Uzelac, Chip Bennett &amp; Edward Caissie.</p>\n<p>In 2013, very first WordCamp was organised in Pune and I got a chance to talk about theme review process, this was my first ever public talk, and not being very good with English I choose to speak in Hindi. It was well received and many people wanted to know how they can get their themes approved. Again in 2015, I talked about what makes themes good in <a href=\"https://2015.pune.wordcamp.org/\">WordCamp Pune</a>. Thanks to WordCamps, I got to meet <a href=\"https://heropress.com/essays/making-family/\">Topher</a>, <a href=\"https://heropress.com/essays/breaking-the-silence/\">Mahangu</a> &amp; <a href=\"https://heropress.com/essays/finding-hope-darkness/\">Raghvendra</a>.</p>\n<p>Now a days, as I get less time between work and kids, instead of doing theme reviews I answer questions on WordPress.org support forum.</p>\n<blockquote><p>I&#8217;m an introvert and came from a small city so I&#8217;m always hesitant to talk to new people but the WordPress community give me confidence to talk with new people and in front of people.</p></blockquote>\n<p>This is a big achievement for me and my family feels proud of it.</p>\n<p>In WP community every one ready to support and help to move forward because of this nature I love to this community. I want to emphasize the support that I have received from WordPress community in general and members of theme review team in specific who helped me gain the knowledge necessary to do my work better. I also want to thank all the organisers of Pune WordPress Knowledge Exchange meetup group, and specially <a href=\"https://heropress.com/essays/ill-keep-looking-for-a-cms-unless-i-find-wordpress/\">Saurabh Shukla</a> who helped in improving my presentation skills for WordCamp Pune.</p>\n<p>All these happened because of WordPress community and via HeroPress platform I would like to thank everyone who makes this community rock.</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: Building Confidence\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Building%20Confidence&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-confidence%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Building Confidence\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-confidence%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%2Fbuilding-confidence%2F&title=Building+Confidence\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Building Confidence\"></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/building-confidence/&media=https://heropress.com/wp-content/uploads/2016/11/112316-150x150.jpg&description=Building Confidence\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Building Confidence\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/building-confidence/\" title=\"Building Confidence\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/building-confidence/\">Building Confidence</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, 23 Nov 2016 12:00: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:11:\"Nisha Singh\";s: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:87:\"WPTavern: Automattic Clarifies .blog Landrush Process After Bait and Switch Allegations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=63947\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/automattic-clarifies-blog-landrush-process-after-bait-and-switch-allegations\";s: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:6001:\"<p>Earlier this year, Knock Knock Whois There LLC, an Automattic subsidiary in partnership with Primer Nivel, <a href=\"https://wptavern.com/automattic-to-oversee-the-sale-and-registration-of-top-level-blog-domains\">won an auction</a> for around $19 million dollars to offer top-level .blog domains. On August 18th, an email was sent to users who signed up to <a href=\"https://dotblog.wordpress.com/\">Dotblog.WordPress.com</a> notifying them that they could apply and secure a .blog domain name before November 21st.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/ApplyForBlogDomain.png?ssl=1\"><img class=\"size-full wp-image-63953\" src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/ApplyForBlogDomain.png?resize=480%2C781&ssl=1\" alt=\"Applying For a Domain Name\" /></a>Applying For a Domain Name\n<p><a href=\"http://chrisschidle.com\">Chris Schidle</a> took advantage of the opportunity and secured chris.blog for $30 per year with a $220 application fee. People who apply for a domain only receive it if no one else applies for it. If there are multiple applications, the domain goes through an auction process between November 14-17.</p>\n<p>As the auction dates drew nearer and Schidle didn&#8217;t receive any information concerning the auction, he contacted support. Support confirmed that his application was not successful and he received a refund on November 15th. After asking support about the auction process, Schidle was informed that chris.blog ended up on a list of reserved domains that were not available for registration.</p>\n<p>In a blog post entitled &#8220;<a href=\"http://chrisschidle.com/the-dot-blog-bait-and-switch/\">The .blog Bait and Switch&#8221;</a>, Schidle expressed disappointment in Automattic&#8217;s lack of communication. &#8220;Perhaps it&#8217;s not fair to call this bait and switch,&#8221; Schidle said.</p>\n<p>&#8220;Really it was bait and refund, and certainly the situation would be far worse had they chosen to not make the application fee refundable. But still, I thought I had a chance at securing the domain. That was the logical conclusion given the terms they outlined via a successful application or winning an auction.&#8221;</p>\n<p>Other applicants <a href=\"https://twitter.com/cschidle/status/799287789430849536\">shared similar experiences</a> on Twitter.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/cschidle\">@cschidle</a> i feel your pain. they also took my $250 for my app for <a href=\"https://t.co/8H0dBZfKny\">https://t.co/8H0dBZfKny</a> &#8211; surprisingly poor handling for a comm\'s company</p>\n<p>&mdash; Chris Yim (@cyim) <a href=\"https://twitter.com/cyim/status/799343938024968193\">November 17, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/cschidle\">@cschidle</a> I\'ve got stood up in the same manner for <a href=\"https://t.co/wqDOQWyF2X\">https://t.co/wqDOQWyF2X</a> Full-refund and no invitation to auction</p>\n<p>&mdash; Octavian Cioaca (@octasimo) <a href=\"https://twitter.com/octasimo/status/799295000240648192\">November 17, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/cschidle\">@cschidle</a> Same thing happened to me with <a href=\"https://t.co/1bRlWkdtmy\">https://t.co/1bRlWkdtmy</a>. Not cool.</p>\n<p>&mdash; Mark Barrera (@mark_barrera) <a href=\"https://twitter.com/mark_barrera/status/799366369733210114\">November 17, 2016</a></p></blockquote>\n<p></p>\n<p>In response to Schidel&#8217;s post, Paolo Belcastro <a href=\"https://my.blog/2016/11/17/about-reserved-domains/\">published an explanation</a> of the process behind activating some domains in the Founder’s Program while reserving others. Belcastro says that as a registrar, they&#8217;re able to activate up to 100 domain names. Some of the domains were given to <a href=\"https://my.blog/founders/\">third-parties</a> and 25 generic domains were given to WordPress.com to be shared for free with millions of users.</p>\n<p>The registrar reserved all one, two, and three-character domains from being registered. They also allowed Automattic employees to reserve a single domain each, some of which were first names.</p>\n<p>On behalf of .blog, Belcastro apologized to those who filed applications in August and later discovered the domains were not available.</p>\n<blockquote><p>Many registrars started taking pre-registrations for the Landrush period as early as last August. We do realize that some users were disappointed when they discovered that the domain names they had applied for were in fact attributed as part of the Founder’s program, or reserved, and wouldn’t be possible to register or auction at the end of Landrush.</p>\n<p>We would like to apologize to these users, but as the lists of Founder domains and Reserved ones weren’t final until just before Landrush, we couldn’t communicate them to registrars in advance (there is nothing registrars hate more than ever-changing lists of reserved domains).</p>\n<p>In addition, domains were removed as well as added to the lists, and we didn’t want to take the risk for registrars to refuse applications in September for domains that would be released in October.</p></blockquote>\n<p>To mitigate the uncertainty surrounding domain availability, fees were set up in a way so that only successful registrations would be charged. This provided a way to give full refunds to those with failed applications.</p>\n<p>Schidle appreciates the company&#8217;s apology, &#8220;It&#8217;s unfortunate that their reserved domain list wasn&#8217;t finalized prior to accepting applications, and that affected applicants like myself weren&#8217;t notified sooner (auctions were scheduled to begin on November 14th),&#8221; he said. &#8220;But I think they realize their mistake in handling that communication and their apology is appreciated.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 19 Nov 2016 00:03: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: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:86:\"WPTavern: WordPress Passes 27% Market Share, Banks on Customizer for Continued 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=63735\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordpress-passes-27-market-share-banks-on-customizer-for-continued-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:18467:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/paint-brushes.jpg?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/paint-brushes.jpg?resize=960%2C510&ssl=1\" alt=\"photo credit: Luis Llerena\" class=\"size-full wp-image-63978\" /></a>photo credit: <a href=\"https://stocksnap.io/photo/265GAALCWG\">Luis Llerena</a>\n<p>WordPress now powers <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\" target=\"_blank\">27.1% of all websites on the internet</a>, up from 25% last year. While it may seem that WordPress is neatly adding 2% of the internet every year, its percentage increase fluctuates from year to year and the climb is getting more arduous with more weight to haul.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/wordpress-market-share.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/wordpress-market-share.png?resize=1025%2C256&ssl=1\" alt=\"credit: w3techs.com\" class=\"size-full wp-image-63933\" /></a>credit: <a href=\"https://w3techs.com/technologies/history_overview/content_management/all/y\">w3techs.com</a>\n<p>In January 2015, Mullenweg said the next goal for WordPress was <a href=\"https://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share\" target=\"_blank\">to achieve 50% market share</a> (the majority of websites) and he identified Jetpack as a key factor in preventing WordPress&#8217; decline, a controversial statement delivered at Pressnomics. At that time Automattic was secretly working on <a href=\"https://wptavern.com/early-reviews-show-applications-like-calypso-are-the-future-of-wordpress\" target=\"_blank\">Calypso</a>, WordPress.com&#8217;s JavaScript-powered interface, but did not unveil the project until November 2015.</p>\n<p>It&#8217;s difficult to say what effect Calypso has had on WordPress&#8217; market share, as the w3tech&#8217;s 27% stat covers mostly self-hosted sites. Following up with him a year later, Mullenweg estimates that less than 10% of those sites are hosted on WordPress.com.</p>\n<p>&#8220;It does look like about a quarter of it is using Jetpack, though, and that has grown since Calypso was released,&#8221; he said. &#8220;Remember &#8211; Calypso is for Jetpack sites as well as WP.com.&#8221;</p>\n<p>In a recent <a href=\"https://wptavern.com/wpweekly-episode-240-interview-with-matt-mullenweg-2016\" target=\"_blank\">interview on WPWeekly</a>, Mullenweg said he is also optimistic that the WooCommerce acquisition and <a href=\"https://wptavern.com/automattic-to-oversee-the-sale-and-registration-of-top-level-blog-domains\" target=\"_blank\">Automattic&#8217;s sale and management of the .blog domain</a> extension will contribute &#8220;another 5-10% each to that market share.&#8221; In fact, there is a team inside Automattic called Team 51 that works on strategies for getting the market share to 51%.</p>\n<p>&#8220;For getting to 51% and beyond &#8211; it&#8217;s more than just blogs and more than just websites,&#8221; Mullenweg said. &#8220;We need to do stores well, we need to do wikis well, we need to do real estate sites well, we need to do restaurants well &#8211; all these things that may be outside what you normally think of as a core WP experience.&#8221;</p>\n<p>In order to provide the best content-creation experience on the market, in any niche, WordPress has some major work to do. The software is in imminent danger of being eclipsed by newer competitors if its core features don&#8217;t improve, especially when it comes to customizing a new site. Jetpack cannot single-handedly solve WordPress&#8217; onboarding problem.</p>\n<h3>WordPress&#8217; Weakest Link Is Also Its Greatest Opportunity</h3>\n<p>In the past Mullenweg has identified customization as the weakest link in WordPress but also one of its most important areas for improvement, saying, &#8220;The Customizer is everything.&#8221; During the <a href=\"https://wptavern.com/state-of-the-word-2015-javascript-and-api-driven-interfaces-are-the-future-of-wordpress\" target=\"_blank\">2015 State of the Word</a> address he said, &#8220;Customization is the single biggest opportunity for improving the WordPress experience.&#8221; I asked him if he thinks the necessary improvements to make the software more competitive need to come from core itself or if commercial products could introduce game changers for the Customizer, the editor, and other problem areas of WordPress.</p>\n<p>&#8220;I think to have an impact on WordPress&#8217; growth improvements to customization have to happen in core or Calypso/Jetpack, otherwise there isn&#8217;t enough reach,&#8221; Mullenweg said. &#8220;It doesn&#8217;t matter how great a commercial product is &#8211; being behind a paywall will mean it won&#8217;t reach enough people to make a dent in WP&#8217;s growth curve.&#8221; He outlined how he sees the Customizer as a critical component of WordPress&#8217; future:</p>\n<blockquote><p>I think the needed improvements will only come from a customizer and theme system which is flexible, intuitive, and instantaneous, which might also need to break backwards compatibility, and a post editor which leverages the same language, patterns, interface, and concepts. We need to use and adopt a React / Redux approach to the javascript, like Calypso, and rename or make irrelevant concepts like Menus which are just plain confusing to people.</p></blockquote>\n<p>Customizer improvements have been a focus throughout 2016 and the feature&#8217;s small team of contributors have made major strides towards improving the underlying architecture to build upon.</p>\n<p>&#8220;It&#8217;s <em>customization</em> that is the key need here, not necessarily the existing &#8216;Customizer&#8217; interface that we have today,&#8221; <a href=\"https://make.wordpress.org/core/components/customize/\" target=\"_blank\">Customize</a> component maintainer Weston Ruter said. &#8220;The key need WordPress has is to be able to live preview more functionality in WordPress, as Helen tweeted here:&#8221;</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">What if instead of opposing \"shoving more stuff into the customizer\" we supported \"adding live previews to WordPress functionality\"?</p>\n<p>&mdash; Helen 侯-Sandí (@helenhousandi) <a href=\"https://twitter.com/helenhousandi/status/778255682462183424\">September 20, 2016</a></p></blockquote>\n<p></p>\n<p><a href=\"https://wptavern.com/customizer-responsive-preview-and-selective-refresh-to-be-merged-into-wordpress-4-5\" target=\"_blank\">Selective refresh</a> was added earlier this year in 4.5, giving WordPress the ability to preview elements without full page reloads. This is one way the Customize API addresses that &#8220;instantaneous&#8221; aspect Mullenweg outlined above.</p>\n<p>&#8220;The <a href=\"https://make.xwp.co/2016/04/29/customize-posts-v0-5-released/\" target=\"_blank\">Customize Posts</a> plugin is an effort to rebuild the post editor from the ground up with live preview for all changes to post data and postmeta at the foundation,&#8221; Ruter said. &#8220;It&#8217;s a JavaScript-first approach to the post editing experience. No more waiting for a full page reload to save a draft. No more clicking a preview button to load the post in a new window. All of the changes are saved as drafts and previewed live. It&#8217;s reusing the TinyMCE editor component.&#8221;</p>\n<p>WordPress may be looking at <a href=\"https://wptavern.com/customize-posts-plugin-and-selective-refresh-are-paving-the-way-for-front-end-editing-powered-by-the-customizer\" target=\"_blank\">front-end editing powered by the Customizer</a> in the not-too-distant future. Ruter and contributors are also working towards using the Customize API to power the next generation of widgets in core, which would use JS for UI and open the door for widgets to be managed via the REST API.</p>\n<p>&#8220;Changesets, coming in 4.7, is the most far-reaching architectural improvement to the customizer since its inception,&#8221; Ruter said. &#8220;Changesets allow for live preview functionality to be de-coupled from the current Customizer interface. This architecture allows for live preview to be developed in other contexts, namely on the frontend and in REST API-driven apps and headless sites.&#8221; Ruter anticipates the REST API endpoints for managing changesets to come in 4.8.</p>\n<p>The <a href=\"https://github.com/xwp/wp-js-widgets\" target=\"_blank\">WP JS Widgets</a> project shifts widgets away from their heavy reliance on PHP and creates a JavaScript foundation in the Customizer that allows for any library to be used to build widget controls.</p>\n<p>&#8220;A control can actually be implemented using any JS technology stack,&#8221; Ruter said. &#8220;In the JS Widgets plugin I have a demonstration of widget controls in the customizer being built using the customizer Element, Backbone.js, and also React.&#8221; The plugin currently implements <a href=\"https://github.com/xwp/wp-js-widgets/tree/master/php/widgets\" target=\"_blank\">three core widgets</a> and contributors are working on more.</p>\n<p>&#8220;It&#8217;s somewhat of a &#8216;Widgets 3.0&#8217; in core, focused on what they would look like in the Customizer first,&#8221; Ruter said, &#8220;where the widget instance data is stored in a setting, and the control listens to changes to that setting and updates its UI to reflect the changes in the underlying instance data.&#8221;</p>\n<p>Although this particular project is being built to be JavaScript-library agnostic, Ruter said he thinks there would be value in exploring the use of React/Redux in a “Customizer 2.0” interface:</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">It would be great to experiment with re-implementing the Customizer UI (pane, panels, sections, controls) in React. <a href=\"https://twitter.com/hashtag/wcus?src=hash\">#wcus</a></p>\n<p>&mdash; Weston Ruter ⚡ (@westonruter) <a href=\"https://twitter.com/westonruter/status/672830761872064513\">December 4, 2015</a></p></blockquote>\n<p></p>\n<h3>Taking the Customizer Beyond First Impressions</h3>\n<p>Ruter said he would have a difficult time proposing to build a client site that depended on the WordPress admin for site management and content authorship.</p>\n<p>&#8220;A lot of the work we&#8217;ve done at XWP for the past few years has been building on the Customizer to provide the editorial experiences that I think are lacking in the WP admin,&#8221; Ruter said. &#8220;We invest heavily in the customizer because we see it as the best foundation that WordPress has to offer to provide the experiences we want to deliver to our clients.&#8221;</p>\n<p>If the Customizer is so critical to WordPress&#8217; success, it&#8217;s curious that the contributor team remains relatively small and few companies are investing in the feature specifically. <a href=\"https://xwp.co/\" target=\"_blank\">XWP</a> invests heavily in Customizer development and a great deal of that is prototype work in the form of feature plugins such as Customize Snapshots, Customize Posts, and several <a href=\"https://github.com/xwp?q=wp-customize\" target=\"_blank\">other plugin projects</a>.</p>\n<p>&#8220;I don&#8217;t know for sure why more developers across the WordPress community aren&#8217;t doing more with the customizer,&#8221; said Ruter, who is CTO at XWP. &#8220;It may be in part a perception problem, where it has seemingly been stuck with a negative reputation. Or it could be a technology problem, where the Customizer is vastly different from other areas of WordPress being a JavaScript single-page application.&#8221;</p>\n<p>When the Customizer was first introduced it included support for &#8216;option&#8217; and &#8216;theme_mod,&#8217; followed by widgets and navigation menus a bit down the road. The WordPress community didn&#8217;t have a full understanding of the scope and capabilities of the Customizer for addressing some of the project&#8217;s chief concerns, including content authorship with live previews. Users simply saw a constrained UI they didn&#8217;t like using to customize themes. Most users had no concept of the Customizer providing the architectural underpinnings of other aspects of WordPress.</p>\n<p>&#8220;Part of the problem is a lack of contributors,&#8221; Ruter said. &#8220;But even more than that, the biggest problem is one of having a shared vision. When the WP community throws hate on customizer improvements with each new release, it&#8217;s somewhat demotivating.</p>\n<p>&#8220;If the community realized the vision behind and appreciated a full admin experience that had live preview and staging of changes, then that would make a huge difference,&#8221; Ruter said. He and contributors find it challenging to articulate the scope and they are considerably short-handed.</p>\n<p>&#8220;It could be a problem with getting ramped up,&#8221; he said. &#8220;But that&#8217;s been the mandate for the WP community as a whole &#8211; to learn JavaScript deeply. I say, why not learn JavaScript deeply by building on the customizer?&#8221;</p>\n<h3>GoDaddy Plans to Invest in Core Customizer Improvements</h3>\n<p>GoDaddy is a surprising company to emerge over the past couple of years as another key player on WordPress&#8217; road to 50% market share. WordPress product and service companies, along with hosts, are keenly interested in seeing the software continue its market dominance.</p>\n<p>&#8220;It&#8217;s very important to GoDaddy that WP market share increases,&#8221; Gabe Mays, head of WordPress products at GoDaddy, said. &#8220;We&#8217;re deeply invested in the success of the WordPress community, not only because many of our customers use it, but also because of what it represents.&#8221;</p>\n<p>Mays reports that approximately 1/3 of all GoDaddy sites and half of all new sites are running on WordPress. With millions of customers using the software, the company took the initiative to create a new <a href=\"https://wptavern.com/godaddy-launches-new-onboarding-experience-for-wordpress-customers\" target=\"_blank\">onboarding experience specifically for WordPress customers</a>. I asked Mays if GoDaddy is concerned about competitors like Wix and Weebly cutting into the WordPress market share.</p>\n<p>&#8220;I don&#8217;t know if &#8216;worry&#8217; is the right word, because 1) we know the problem and 2) we&#8217;re capable of addressing it,&#8221; Mays said. &#8220;As a community we either care enough to fix it or we don&#8217;t. There are negative consequences associated with the latter that pose an existential threat to the community.&#8221;</p>\n<p>Mays has been involved with the WordPress community for the past 10 years and is working with GoDaddy to improve the new user experience.</p>\n<p>&#8220;Part of the issue we’re experiencing now is that WordPress benefitted from such strong product market fit and, subsequently, such high growth that there weren’t the typical feedback mechanisms forcing us to make things like the UX better,&#8221; Mays said. &#8220;On the other hand, our competitors fought hard and iterated for every basis point of market share they have. We’re like that natural athlete that got to the top with natural talent, but now need to master the basics, get our form right, etc. to stay on top as the game changes.&#8221;</p>\n<p>GoDaddy&#8217;s new onboarding experience is a stab at improving this UX and Mays said the company has significant WordPress core improvements in the works to provide a better first-use experience.</p>\n<p>&#8220;I’m happy to say we’ll also be contributing these improvements back to core,&#8221; he said. &#8220;We&#8217;re happy to have had Aaron Campbell join us as our first core contributor earlier this year and we&#8217;re working on more ways to accelerate our core contribution efforts.&#8221;</p>\n<p>Mays said GoDaddy is planning to submit core contributions to the Customizer and related core components in the near future but would not disclose any specifics at this time.</p>\n<p>&#8220;Hosts benefit immensely from WordPress and as hosts we can collectively do a lot more to move WordPress forward,&#8221; Mays said. &#8220;We want to lead by example here and have big plans for this in 2017.&#8221;</p>\n<p>WordPress product and service companies are also deeply invested in the software&#8217;s success and eager to see its market share grow. Cory Miller, CEO of <a href=\"https://ithemes.com/\" target=\"_blank\">iThemes</a>, one of WordPress&#8217; earliest theme companies, said growth is one potential sign of WordPress&#8217; health.</p>\n<p>“As WordPress has grown, so have we with it,&#8221; Miller said. &#8220;The opposite of growth is scary — it’s stagnation or decline. Many have predicted that in WordPress for a long time, but it continues to grow and push new limits, like the defiant teenager it is.”</p>\n<p>Miller said one of his concerns with competitors in the space is that they have started to cut into the lower  or lowest end of the market, &#8220;the do-it-yourselfers that many of us count as a key part of our customer base.&#8221;</p>\n<p>&#8220;WordPress is fantastic, and so are all the innovative tools and services around it, from themes, plugins to hosting,&#8221; Miller said. &#8220;But I&#8217;m increasingly seeing the reason why many, on perhaps the bottom end of the market, say, &#8216;I don’t want to mess with updates, or worrying about security, or pulling 15 separate tools together to do what I need. I just want a simple website, I want everything in one bundle, mostly done for me, and so I’ll just go with SquareSpace or Weebly.\'&#8221;</p>\n<p>Although WordPress provides so much more in terms of community and extensibility when compared to Wix, Weebly, and Squarespace, getting started is the hardest part for new users. This is where tools like Jetpack and GoDaddy&#8217;s onboarding experience are useful for giving users what they need to succeed with WordPress.</p>\n<p>Even with a strong background in HTML and CSS, customizing a WordPress site can be challenging. Your site will never feel like your home on the web if you struggle to customize it to suit your preferences. The good news is that the WordPress project lead, contributors, hosts, and product companies are working together to improve customization in different, complementary ways in order to ensure the future of the project in an increasingly competitive market.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Nov 2016 22:48:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: 2nd Global WordPress Translation Day Brings 780 Translators Together Across 133 Locales\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=63915\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://wptavern.com/2nd-global-wordpress-translation-day-brings-780-translators-together-across-133-locales\";s: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:6921:\"<p>The second <a href=\"https://wptranslationday.org/\" target=\"_blank\">Global WordPress Translation Day</a> was held November 12 and the <a href=\"https://make.wordpress.org/polyglots/2016/11/16/notes-from-the-polyglots-chats-on-november-16th/\" target=\"_blank\">stats</a> released this week show the event was an even greater success than the first one. In April, <a href=\"https://wptavern.com/global-wordpress-translation-day-draws-448-participants-from-105-countries\" target=\"_blank\">WP Translation Day connected 448 participants</a> through both online and in-person translation events. The second event brought 780 translators together, a 74% increase in participation. Attendance at the local events increased from 39 in April to 67 in November.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Looking at <a href=\"https://twitter.com/hashtag/WPTranslationDay?src=hash\">#WPTranslationDay</a> stats I can’t be more grateful to <a href=\"https://twitter.com/humanmadeltd\">@humanmadeltd</a> for supporting my time for the <a href=\"https://twitter.com/hashtag/WordPress?src=hash\">#WordPress</a> Polyglots. So lucky❤️ <a href=\"https://t.co/NwSjYOyUBX\">pic.twitter.com/NwSjYOyUBX</a></p>\n<p>&mdash; Petya Raykovska (@petyeah) <a href=\"https://twitter.com/petyeah/status/798890778692988929\">November 16, 2016</a></p></blockquote>\n<p></p>\n<p>&#8220;We really wanted to build on top of what was already there, reach more people, and bring more important topics front and center,&#8221; said Petya Raykovska, one of the members of the Polyglots Leadership Team. Participants had the opportunity to discuss the upcoming internationalization features in WordPress with core developers, including a session by Pascal Birchler and a panel led by John Blackbourn. Translators also discussed gender neutral languages in the WordPress UI, prompted by a discussion around gender neutral German.</p>\n<p>Raykovska said one of the goals of the second event was to &#8220;bring more people on screen so everyone can feel like they&#8217;re a part of a truly global event.&#8221; Local participation for the live streaming meetups increased from April.</p>\n<p>&#8220;The activities in India have kept their strong growth rate &#8211; we had eight events last time, this time they were 14, with Mumbai even having two events,&#8221; Raykovska said. &#8220;For the first time we had events in Russia and in South Africa.&#8221;</p>\n<p>Raykovska said she&#8217;s hoping the Polyglots Leadership Team will soon begin developing events in African regions, following patterns of success in Asia and Europe.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Thank you <a href=\"https://twitter.com/ResellerClub\">@ResellerClub</a> for hosting us today for <a href=\"https://twitter.com/hashtag/WPTranslationday?src=hash\">#WPTranslationday</a> <a href=\"https://t.co/vfr9l0D50V\">pic.twitter.com/vfr9l0D50V</a></p>\n<p>&mdash; WordCamp Mumbai (@WCMumbai) <a href=\"https://twitter.com/WCMumbai/status/797397743467659264\">November 12, 2016</a></p></blockquote>\n<p></p>\n<h3>Global WordPress Translation Day Expands Into South Africa</h3>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/cape-town-wptranslation-day.jpg?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/cape-town-wptranslation-day.jpg?resize=1025%2C548&ssl=1\" alt=\"Cape Town WP Translation Day - credit: Jon Bossenger\" class=\"size-full wp-image-63927\" /></a>Cape Town WP Translation Day &#8211; credit: <a href=\"https://wpcapetown.co.za/2016/11/14/wordpress-global-translation-day-recap/\">Jon Bossenger</a>\n<p>South Africa has 11 languages and Raykovska said the event gave a big boost to the translation community there, with Xhosa being translated for WordPress for the first time. Xhosa is spoken by 7.6 million people, which is approximately 18% of the South African population.</p>\n<p>&#8220;Africa has a huge potential and a lot of wonderful, enthusiastic people,&#8221; she said. &#8220;There will be more WordCamps there in 2017 and hopefully more activity on the translation side.&#8221;</p>\n<p>Jon Bossenger and Hugh Lashbrooke, who co-organized the Cape Town event, had attendees translating WordPress into Xhosa, Sotho, and Setswana.</p>\n<p>&#8220;By the end of the day we had two translation files for these languages that we’ll be looking to submit requests to be added as locales for WordPress,&#8221; Bossenger said in his recap <a href=\"https://wpcapetown.co.za/2016/11/14/wordpress-global-translation-day-recap/\" target=\"_blank\">post</a>. &#8220;We’re almost halfway towards adding all 11 official languages, just in one day.&#8221;</p>\n<p>Trisha Cornelius, co-organizer the WP Johannesburg Meetup, organized the in-person translation event in Johannesburg where the team made major progress and assisted the Cape Town team in getting their languages started.</p>\n<p>&#8220;We managed to get Xhosa approved in time for us to translate some strings for our translation day event,&#8221; Cornelius said. &#8220;We translated into Afrikaans (which is at over 95% so we are pushing to get to 100%) and South African English as well. People who were at the Cape Town event have volunteered to become translators for Tswana and an attendee at our event has volunteered to become GTE for Zulu.&#8221;</p>\n<p>Cornelius said the excitement of live streaming and connecting with Cape Town and others around the world could have easily made for an event that spanned longer than three hours.</p>\n<p>&#8220;The biggest success was in showing people how easy translation is,&#8221; Cornelius said. She hopes the translations will make WordPress easier for more people in South Africa and help more people get onto the web.</p>\n<p>&#8220;South Africa has an interesting case in that we have a clear racial split between being multi-lingual and not,&#8221; Cornelius said. &#8220;The majority of our population speaks English/Afrikaans as a second language and I would love to see WordPress available in all 11 of our official languages so that WP users can choose to use WP in their mother tongue.&#8221;</p>\n<p>Cornelius said language accessibility in South Africa is less of a challenge than actual access to computers with the Internet, but they are making progress in Johannesburg to make the internet more widely available.</p>\n<p>&#8220;Especially with the prevalence of smart phones, I think having WordPress in more indigenous languages will mean that we are able to hear more of each others voices which we desperately need,&#8221; Cornelius said.</p>\n<p>Overall, the WordPress Translation Day participants translated a total of 60,426 strings, up from 40,350 in April. This includes popular plugins and themes in addition to WordPress core. A video replay of the event can be found on <a href=\"https://www.crowdcast.io/e/gwtd2\" target=\"_blank\">Crowdcast.io</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Nov 2016 23:20: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: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:29:\"Ping-O-Matic: Bloglines Added\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://pingomatic.wordpress.com/2006/04/30/bloglines-added/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://blog.pingomatic.com/2006/04/30/bloglines-added/\";s: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:839:\"<p>A few days ago we added Bloglines to our list of RPC ping receivers, worked out a few issues with them, and now <a href=\"http://www.bloglines.com/about/news#103\">they&#039;ve announced their pinging service</a>.</p>\n<p>I&#039;ll be adding them to the web form soon. :)&nbsp;</p><br /><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/pingomatic.wordpress.com/11/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/pingomatic.wordpress.com/11/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/pingomatic.wordpress.com/11/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/pingomatic.wordpress.com/11/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.pingomatic.com&blog=68432&post=11&subd=pingomatic&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Nov 2016 21:45: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: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: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:77:\"WPTavern: WPWeekly Episode 254 – WP eCommerce, WordCamp US 2017, and Upvato\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=63903&preview=true&preview_id=63903\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/wpweekly-episode-254-wp-ecommerce-wordcamp-us-2017-and-upvato\";s: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:2450:\"<p>In this short episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I discuss a handful of news stories making headlines. We discuss a recent security update to the WP eCommerce plugin, Upvato disappearing only to reappear in the near future, and Nashville, TN hosting WordCamp US in 2017 and 2018. Last but not least is Marcus&#8217; plugin picks of the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wp-ecommerce-3-11-4-patches-sql-injection-vulnerability\">WP eCommerce 3.11.4 Patches SQL Injection Vulnerability</a><br />\n<a href=\"https://wptavern.com/upvato-backup-service-confirms-files-are-lost-plans-to-relaunch-on-new-provider\">Upvato Backup Service Confirms Files Are Lost, Plans to Relaunch on New Provider</a><br />\n<a href=\"https://wptavern.com/nashville-to-host-wordcamp-us-2017-2018\">Nashville to Host WordCamp US 2017-2018</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/show-featured-image-size-in-admin-topbar\">Show Featured Image Size in Admin TopBar</a> displays the image size for the featured image in the admin top bar. This makes it convenient to know how large features images need to be without looking it up.</p>\n<p><a href=\"https://wordpress.org/plugins/wp-mqtt/\">WP-MQTT</a> connects WordPress to the Internet of Things. This plugin can automatically send MQTT messages to compatible devices when something happens on your site. MQTT is a machine-to-machine (M2M) / Internet of Things connectivity protocol. It was designed as an extremely lightweight publish/subscribe messaging transport.</p>\n<p><a href=\"https://wordpress.org/plugins/hello-trumpy/\">Hello Trumpy</a> is a plugin aimed at making WordPress great again!</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, November 23rd 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #254:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Nov 2016 09:20:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:80:\"WPTavern: Visible Edit Shortcuts in WordPress 4.7 Makes Customizing Sites Easier\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=63881\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/visible-edit-shortcuts-in-wordpress-4-7-makes-customizing-sites-easier\";s: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:3913:\"<p>Earlier this year, Automattic added visual icons to the WordPress.com customizer after user testing showed users tried clicking on the parts of the page they wanted to edit, rather than searching through the menus in the customizer. In an effort to see if the <a href=\"https://core.trac.wordpress.org/ticket/27403\">same could be done</a> for the self-hosted version of WordPress, <a href=\"https://core.trac.wordpress.org/ticket/27403#comment:16\">Payton Swick open sourced</a> Automattic&#8217;s work into a plugin and <a href=\"https://github.com/Automattic/customize-direct-manipulation\">placed it on GitHub</a>.</p>\n<p>The plugin added persistent icons to show users which parts of a site can be customized when the customizer preview pane is open. After months of collaboration between Automatticians and the Customize component maintainers, the icons were merged into WordPress 4.7 and are officially called visible edit shortcuts. The icons visually inform users which elements can be edited in a theme.</p>\n<p>The icons appear when the customizer is open and directs users to settings that control an element. For example, clicking the icon next to the site tagline in the image below opens the Site Identity section of the customizer and makes the Tagline field active. Visible shortcuts are an extension of the Shift-click to edit keyboard shortcut that was added in WordPress 3.9.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/CustomizerShortcutButtons.png?ssl=1\"><img class=\"size-full wp-image-63883\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/CustomizerShortcutButtons.png?resize=1025%2C544&ssl=1\" alt=\"Visible Edit Shortcut Buttons\" /></a>Visible Edit Shortcut Buttons\n<p>The icon approach was largely inspired by WordPress.com which has a similar feature in its customizer. Nick Halsey, Customize component maintainer, <a href=\"https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/\">describes in detail</a> the history of the feature and what theme authors need to do to support it.</p>\n<p>Unlike many of the theme specific updates in the past where developers can add support by using add_theme_support, supporting visible edit shortcuts is more comprehensive. Theme authors will need to add support for <a href=\"https://make.wordpress.org/core/2016/02/16/selective-refresh-in-the-customizer/\">selective refresh</a>, <a href=\"https://make.wordpress.org/core/2016/03/22/implementing-selective-refresh-support-for-widgets/\">selective refresh for widgets</a>, and <a href=\"https://make.wordpress.org/core/2015/07/29/fast-previewing-changes-to-menus-in-the-customizer/\">selective refresh for menus</a>.</p>\n<p>&#8220;Edit shortcuts will be enabled by default for all themes, but are contingent on themes supporting selective refresh,&#8221; Halsey said. Additionally, a small amount of CSS may be required to properly position the icons.</p>\n<p>Adding visual elements that connect parts of a theme to the customizer should take some of the guesswork out of editing themes. Instead of spending time browsing through various customizer panels to edit a part of a site, users can click a button and the right customizer panel will open automatically with the settings you need. This can be especially useful for themes that have a lot of customizer sections.</p>\n<p>I tested visible edit shortcuts using the Twenty Seventeen theme in WordPress 4.7 beta 4 and didn&#8217;t encounter any issues. The team is strongly encouraging users to test with as many themes as possible. If you use a theme where the shortcut icons are not displayed, please contact the theme author, request that they add support, and refer them to <a href=\"https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/\">the make core blog post which explains how to do so</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Nov 2016 08:54: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: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:49:\"WPTavern: Nashville to Host WordCamp US 2017-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:29:\"https://wptavern.com/?p=63871\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wptavern.com/nashville-to-host-wordcamp-us-2017-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:5593:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/nashville.jpg?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/nashville.jpg?resize=1015%2C524&ssl=1\" alt=\"photo credit: Viv Lynch Westward - (license)\" class=\"size-full wp-image-63884\" /></a>photo credit: Viv Lynch <a href=\"http://www.flickr.com/photos/68894626@N00/30070498810\">Westward</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-nc-nd/2.0/\">(license)</a>\n<p><a href=\"https://2016.us.wordcamp.org/\" target=\"_blank\">WordCamp US</a> attendees are counting down the days until the event kicks off in Philadelphia in two weeks but preparations for 2017 and 2018 are already underway. Yesterday Matt Mullenweg <a href=\"https://wordpress.org/news/2016/11/wordcamp-us-2017-2018-in-nashville/\" target=\"_blank\">announced</a> that Nashville has won the bid to host WordCamp US for the next two years. According to Randy Hicks, one of the organizers, the new <a href=\"http://www.nashvillemusiccitycenter.com/\" target=\"_blank\">Music City Center</a> venue, which was finished in 2013, has been reserved from Thursday, November 30, 2017, to Sunday, December 3 but the camp will take place Friday &#8211; Sunday. The venue has confirmed the ability to host 3,000 &#8211; 5,000 attendees.</p>\n<p>&#8220;We have a brand new venue that is pretty amazing but Nashville is very centrally located to handful of other cities that all have their own WordCamps,&#8221; Hicks said. &#8220;I think there are about seven camps within 4-5 hours. The WP community around Nashville is rather strong.&#8221;</p>\n<p>Over the past few years the local WordPress community has grown and WordCamp Nashville sold 325 tickets at its 2016 event.</p>\n<p>&#8220;I&#8217;ve been coming to the meetups since the very first one and have been an organizer since about the same time as well as John Housholder,&#8221; Hicks said. &#8220;We&#8217;ve seen the community explode every year after WordCamp, but 2014 and 2015 have been huge growth years for Nashville as a whole and the meetup has reflected those numbers.&#8221;</p>\n<p>The application process included nailing down a venue, creating a budget, and gathering specific details about wifi capabilities, room capabilities, hotel availability, and date availability. Organizers from both the Nashville team and the Denver team (another finalist) agreed that the application time frame was somewhat constrained.</p>\n<p>&#8220;I thought the time frame between start and submission was pretty short, but I think that depends on who is submitting and how informed they are on their local venue,&#8221; Hicks said. &#8220;Ours was really hard to get information from.&#8221;</p>\n<p>The Denver team had a similar struggle with locking down a venue without certainty of being able to fully book the reservation.</p>\n<p>&#8220;There was what I would consider to be a semi-fanatical obsession with the first weekend in December, which was flatly unavailable at the convention center here,&#8221; said Drew Jaynes, one of the organizers who applied on behalf of Denver.</p>\n<p>&#8220;To give you some perspective, at the time that we applied, March 2016, there were two available weekends left for the Colorado Convention Center &#8211; two in all of 2017. The end of August and the middle of December. To organize an event of this size on what would be considered relatively short notice for a city as popular as Denver was essentially a fool&#8217;s errand.&#8221;</p>\n<p>The Nashville organizing team was able to secure its venue for early December dates, but a wider range of acceptable dates might be one way for WordCamp Central to improve the process for next year. This would give more cities the opportunity to submit competitive applications, as venues that can accommodate the expected size of WCUS are in high demand in popular cities.</p>\n<p>&#8220;We had a great set of communities apply so it was tough to pick just one,&#8221; WordCamp Central representative Cami Kaos said. &#8220;In the end we went with Nashville for WordCamp US 2017-2018 because it seems like a great location for attendees, they had a beautiful venue that could accommodate an event of this size as we grow, and the dynamics between both teams were a natural fit.&#8221;</p>\n<p>If you&#8217;re interested in learning more about Nashville, the organizing team has created a <a href=\"http://wpnashville.com/wcus/\" target=\"_blank\">page</a> that includes some favorite local attractions and rankings:</p>\n<ul>\n<li>Ranked within the top 10 on Cvent ’s list of Top 50 Meeting Destinations in the United States. (August 2015)</li>\n<li>Named #3 Best Convention City in the 10 Best USA Today Readers’ Choice Awards</li>\n<li>Ranked #1 Friendliest City in America by Travel and Leisure (April 2015)</li>\n<li>Listed in Collaborate Magazine’s list of the Top 12 Foodie Cities for Meetings</li>\n</ul>\n<p>Nashville is centrally located for a relatively short drive or flight from anywhere in the US and should have ample options for accommodation. The city won the bid to host the WordCamp out of six applicants and Matt Mullenweg&#8217;s announcement post indicates that there were multiple local communities capable of hosting the event in the future.</p>\n<p>&#8220;Based on the other great applications we got I’m also excited about the pipeline of communities that could host it in future years as WordCamp US travels across the United States and gives us an opportunity to learn and love a new city, as we have with Philadelphia,&#8221; Mullenweg said.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Nov 2016 21:50:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"HeroPress: Actually, WordPress didn’t change my life.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=1490\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://heropress.com/essays/actually-wordpress-didnt-change-life/\";s: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:9579:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/111616-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: If we serve the people around what we\'re doing, we ourselves will grow, develop & change alongside the people we serve.\" /><p>My story starts in high school as a girl with a technical bent, in a small country town just as computers were becoming mainstream but well before they were in everyone’s home. (I was in high school when Apple came to school and showed off this new fangled thing they called a mouse…). We were taught BASIC and Pascal and I actually really enjoyed tinkering with programming, but no one thought to say, “Dee, you look like you’re good at this, you should pursue it…” I mean, I was a girl (and girls didn’t ‘DO’ computers), and no one in the circles I moved in really had any idea where this technology revolution would take us.</p>\n<p>The truth is I wasn’t particularly ambitious, I didn’t have any kind of clue what I wanted to be ‘when I grew up’ so I allowed myself to be gently steered by my parents into leaving school before the end of my final year when I was encouraged to apply for a job in a bank.</p>\n<p>I got the job and started in the MICR processing department, encoding cheques with magnetic text, and I finished as a teller 3 years later (and boy was I terrible at balancing the books at the end of the day &#8211; I was much better at chatting to the customers!).</p>\n<p>Financial independence was the only name of that game; for me there was very little else to recommend the job, so I saved all the money I could and took off from both the bank, and my homeland (New Zealand) in very short order as a young, naive 20 year old primed to spend the next 3 years exploring the world. And by the world, I mean the US and Europe…</p>\n<p>That first mouse had come out in 1983, WordPress was founded in 2003 and in those 20 years the world changed. While it was doing that I was at various times being a nanny, working in child care centres, working in customer support, temping, and generally &#8216;working to live&#8217; in whatever way felt right at the time. However, in 1999 I packed up my bags once again, moved from New Zealand to Australia and took a place at a performing arts school where I honed my singing and performance skills and volunteered my time to our music director who was starting to experiment with sending out HTML newsletters and updates via email.</p>\n<blockquote><p>And so my personal revolution began.</p></blockquote>\n<p>On what I think was the day after I graduated from that course I walked into a full time role as that music director’s assistant and began my journey back to code. It was part of my job to edit those HTML newsletters and send them out every week. I went from there to buying books about coding for the web, experimenting on my home built PC making web pages. I’m sure like a lot of us, I remember the thrill of creating that first HTML file and seeing a ‘Hello World’ or similar heading rendered in the browser… from there I was completely hooked.</p>\n<p>By 2004 I was working full time as a webmaster, by 2005 I was running a small business creating sites on the side of my ‘real job’ and by 2009 that small business became my full time job as I left employment to pursue my Masters Degree in Digital Communication. It was in that year I met WordPress when I moved my old Movable Type blog onto it and within a very short time I was using  WP as the CMS of choice for all my client work…</p>\n<p>Then in 2011 I stumbled across WordCamps and by extension the WordPress community. THAT was the thing that changed my world.</p>\n<p>I flew on a whim from Sydney to Melbourne to attend this crazy inexpensive conference I had found after a google search for ‘WordPress Conferences’. In doing so I met welcoming people, made friends, connected, and came back to Sydney excited and hopeful about continuing this connection with the wider WP community.</p>\n<p>Building a community around WP got off to a slow start in Sydney, but from an inauspicious early WPSyd meetup in the function room of a pub (one we actually held in the dark due to a blackout) my connection and involvement took off. Before long I was helping organise that Sydney meetup and by the time I moved away from that great city it had branched into 2 meetups, and soon after, into 3. Furthermore at the end of that first year, at my second ever WordCamp, I put my hand up to help organise a WordCamp Sydney in 2012 and then as I moved interstate, WordCamp Melbourne in 2013.</p>\n<p>Here’s the point.</p>\n<p>WordPress, software, technology, the Internet will come and go, morph, and change, evolve. Maybe WordPress will last forever, maybe it will morph into something else, maybe one day it will look completely different than it did when I first started (actually, that’s true now…) the thing that doesn’t change is the humanity around it.</p>\n<blockquote><p>WordPress and any other software package exists to serve people.</p></blockquote>\n<p>The thing that I have learned, not only through WordPress but in life, is that if we too serve the people around what we’re doing, we ourselves will grow, develop and change alongside the people we serve, and the tools we use to serve them.</p>\n<p>In organising meetups, WordCamps, and community events around WordPress,  I have found that at the end of the day it isn’t actually WordPress that matters… it’s those connections, it’s the friendships. It’s the network of work, referrals, support, help, encouragement that has kept me wired into this community and committed to helping other people find that connection and growth for themselves. Even as my career in WP has moved through coding, into team support, into project management, there too it has been the people and my connections to them in the community that have helped fuel that transition.</p>\n<p>I believe that the place I’ve found and the opportunities I have had owe as much to my own desire and ambition as they do to the help, support and belief of the community around me; sometimes even more than I’ve felt in myself. In all of this I feel as though I’m living proof that by helping, connecting, and resourcing other people, I myself have been helped, resourced and connected into places I’d have never dreamed of all those years ago as a teenager playing with that first mouse… experimenting with that BASIC code.</p>\n<p>Arnold Schwarzenegger said “Help others and give something back. I guarantee you will discover that while public service improves the lives and the world around you, its greatest reward is the enrichment and new meaning it will bring your own life.” and I completely agree.</p>\n<p>Ricky Martin said “A hero is someone who is willing to help others in his or her best capacity.” Here are two very different people giving voice to exactly what I’ve found in working and serving in this great community of diverse people. This is the kind of heroism I see around WordPress, at meetups and WordCamps; it’s the kind of hero whom I want to raise up, and at the end of the day, this is the kind of hero I hope that I am.</p>\n<p>Best of all, it’s the kind of hero that absolutely ANY of us can be.</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: Actually, WordPress didn’t change my life.\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Actually%2C%20WordPress%20didn%E2%80%99t%20change%20my%20life.&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Factually-wordpress-didnt-change-life%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Actually, WordPress didn’t change my life.\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Factually-wordpress-didnt-change-life%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%2Factually-wordpress-didnt-change-life%2F&title=Actually%2C+WordPress+didn%E2%80%99t+change+my+life.\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Actually, WordPress didn’t change my life.\"></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/actually-wordpress-didnt-change-life/&media=https://heropress.com/wp-content/uploads/2016/11/111616-150x150.jpg&description=Actually, WordPress didn’t change my life.\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Actually, WordPress didn’t change my life.\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/actually-wordpress-didnt-change-life/\" title=\"Actually, WordPress didn’t change my life.\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/actually-wordpress-didnt-change-life/\">Actually, WordPress didn’t change my life.</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, 16 Nov 2016 12:00:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Dee Teal\";s: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:30:\"Dev Blog: WordPress 4.7 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4576\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1990:\"<p>WordPress 4.7 Beta 4 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta4.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1,</a> <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\">Beta 3</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-7+dev-notes/\">in-depth developer guides on make/core</a>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39262&stop_rev=39201&limit=200&verbose=on&sfp_email=&sfph_mail=\">about 60 changes</a> in the last few days for beta 4, including tweaks to Twenty Seventeen, custom CSS, and the REST API content endpoints.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>We are almost there<br />\nPlease test your plugins and themes<br />\nRC coming soon<br />\n</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Nov 2016 01:51:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:44:\"Dev Blog: WordCamp US 2017-2018 in Nashville\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4571\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2016/11/wordcamp-us-2017-2018-in-nashville/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:995:\"<p><img class=\"aligncenter\" src=\"https://i0.wp.com/wpdotorg.files.wordpress.com/2008/07/27492741871_c6fcebcad3_k-e1479248587522.jpg?resize=632%2C253&ssl=1\" /></p>\n<p>The title says it all. We had some great applications for cities to host <a href=\"http://us.wordcamp.org/\">WordCamp US</a> after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is <strong>Nashville, Tennessee</strong>.</p>\n<p>Based on the other great applications we got I&#8217;m also excited about the pipeline of communities that could host it in future years as WordCamp US travels across the United States and gives us an opportunity to learn and love a new city, as we have with Philadelphia.</p>\n<p>By the way, if you haven&#8217;t yet, now is a great time to <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey\">take the Annual WordPress Survey</a> and ask your friends to as well.</p>\n<p><a href=\"https://www.flickr.com/photos/143951935@N07/27492741871\">Photo Credit</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Nov 2016 23:24:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:90:\"WPTavern: Upvato Backup Service Confirms Files Are Lost, Plans to Relaunch on New Provider\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=63862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wptavern.com/upvato-backup-service-confirms-files-are-lost-plans-to-relaunch-on-new-provider\";s: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:4274:\"<p>Upvato creator Freddy Lundekvam has confirmed that all user files entrusted to the service have been permanently lost, as his previous storage provider is unable to recover them. After receiving a series of emails from the provider reminding him that payment was due, the provider terminated his account seven days after the invoice was overdue.</p>\n<p>Lundekvam said ordinarily he would expect his sites and servers to go offline in response to an unpaid invoice but this particular provider, which he would not identify, simply terminated his account.</p>\n<p>&#8220;I contacted the provider in good faith, knowing that any decent provider has complete backups of everything they terminate for X time after they terminate it,&#8221; Lundekvam said. &#8220;Apparently, with this &#8216;crappy&#8217; company, terminated means literally terminated. All decent backup providers have backups of their backups, and any provider with such a setup knows very well that terminating the backups at the same time as you terminate the original files is a HUGE mistake, after all, you have those backups in place just in case something is terminated wrongly or the system corrupts something. We can simply conclude with the fact that this provider didn&#8217;t do backups of their users&#8217; data and therefore would never be able to recover anything they have lost.&#8221;</p>\n<p>Although Lundekvam mentioned Amazon Glacier in a <a href=\"https://wptavern.com/upvato-backup-service-terminated-by-storage-provider-files-may-not-be-recoverable\" target=\"_blank\">previous interview</a> as an example of how cheap storage space is, he confirmed that Amazon was not the provider in question here. &#8220;Amazon was quickly ironed out in the launch phase due to the heavy adjustments it needed to make it work exactly the way we wanted it to,&#8221; he said.</p>\n<p>Lundekvam said he sincerely believed this backup provider was reliable and was disappointed to find out otherwise after trusting users&#8217; data with the company. Despite the misfortune and embarrassment of the current situation, he is determined to relaunch Upvato with a new provider that offers redundant backups.</p>\n<h3>Upvato to Relaunch with Improved Version that Allows Users to Define Backup Destination</h3>\n<p>Lundekvam said the new version will be launched &#8220;as soon as possible.&#8221; His team is considering firing up the current (old) version and then migrating as originally planned instead of relaunching with the new version. The improvements include a better backup algorithm and new functionality.</p>\n<p>&#8220;The very new version will allow the user to define their own destination / choice of backup location, whether that be on Upvato&#8217;s servers, their own FTP / SFTP server, Dropbox, Amazon, and other providers we&#8217;re looking into implementing,&#8221; Lundekvam said. &#8220;This would make Upvato function as a mere gateway that detects and keeps your backups in sync at your favorite destination, while at the same time presenting the same awesome visual experience on the website to display the sales ad associated with the item.&#8221;</p>\n<p>Lundekvam remains committed to keeping the core service free indefinitely and may add commercial upgrades if costs exceed what he is able to contribute on his own.</p>\n<p>&#8220;As long as I am able to sustain Upvato on my own, then it will remain ad-free and completely free to use,&#8221; he said. &#8220;But of course there are plans to monetize the website if we at some point need help keeping the lights on. That might be ad-generated revenue, or a premium service for premium functionality. But regardless of what we do then, the core functionality of Upvato &#8211; backing up your Envato files &#8211; will always remain free to use.&#8221;</p>\n<p>In response to commenters who suspected the service of fraud and users who may be wary of continuing with the service, Lundekvam said, &#8220;Upvato is not a fraud in any way. It&#8217;s really entirely up to the user if they want to give us a second chance or not. We are a completely free service that intends to do the very best we can do make sure that we stay a reliable, good way to store and backup your Envato files.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Nov 2016 22:48:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:85:\"WPTavern: WordPress 4.7 Improves Accessibility by Removing Alternative Text Fallbacks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=63819\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/wordpress-4-7-improves-accessibility-by-removing-alternative-text-fallbacks\";s: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:1252:\"<p>When images are uploaded in WordPress 4.6.1 that have an empty alt text value, WordPress tries to generate one based on the caption text or the image title. If the image title is non descriptive as is common with photos uploaded from digital cameras, the alt text can be meaningless.</p>\n<p>In WordPress 4.7, the caption text and the image title fallbacks have been removed. The fallbacks were originally introduced to ensure every image included alternative text. Over time however, this practice has proven to be a poor user experience for people who use screen readers.</p>\n<p>Since the fallbacks are removed, users will need to explicitly set a value for the alt text field. <a href=\"https://make.wordpress.org/core/2016/11/11/improving-accessibility-of-image-alternative-text-in-4-7/\">According to Joe McGill</a>, the change will not affect content already published but will be the expected behavior in WordPress 4.7 and beyond.</p>\n<p>If you&#8217;re not sure what text to use to describe an image, check <a href=\"http://webaim.org/techniques/alttext/#basics\">out this article </a>on Webaim. It explains when alt text should be displayed and provides useful tips on how to describe an image.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Nov 2016 18:51: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: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: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:64:\"WPTavern: Wedding Bride: A Free One-Page WordPress Wedding Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=60375\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wedding-bride-a-free-one-page-wordpress-wedding-theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2864:\"<p><a href=\"https://wordpress.org/themes/wedding-bride/\" target=\"_blank\">Wedding Bride</a> is a new theme from Alex Itsios, co-founder of <a href=\"https://ketchupthemes.com/\" target=\"_blank\">Ketchup Themes</a>. The Cyprus-based theme company has <a href=\"https://wordpress.org/themes/author/alexitsios/\" target=\"_blank\">16 themes on WordPress.org</a>. Wedding themes are a relatively small niche in the directory with fewer than 20 listings. This new arrival stands out from the pack with its bold colors and customizability.</p>\n<p>Many WordPress wedding themes in the official directory seem like a wedding site forced into a blog-oriented design, with lingering post meta in areas where it serves no purpose. This particular niche is where a focused, one-page design really shines. Wedding Bride features event-specific front page sections for the couple to share their story but also allows for (optional) extra pages and a blog.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/08/wedding-bride-screenshot.png?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/08/wedding-bride-screenshot.png?resize=880%2C660&ssl=1\" alt=\"wedding-bride-screenshot\" class=\"aligncenter size-full wp-image-60380\" /></a></p>\n<p>All of the theme&#8217;s options can be found in the Customizer where users can upload a header image, personalize the header overlay, and add various content sections &#8211; all of which are optional. It also includes an option to make the navigation menu sticky or have it scroll with the page (default).</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/08/wedding-bride-theme-1.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/08/wedding-bride-theme-1.png?resize=1025%2C405&ssl=1\" alt=\"wedding-bride-theme\" class=\"aligncenter size-full wp-image-63806\" /></a></p>\n<p>Wedding Bride users can customize the background color and/or image. Unfortunately, the theme does not include a color picker to customize the pink accent color, but this can be changed with a little CSS. Blog pages include a sidebar and it supports four widget areas in the footer. The contact form section was created for use with <a href=\"https://wordpress.org/plugins/contact-form-7/\" target=\"_blank\">Contact Form 7</a>.</p>\n<p>Check out the <a href=\"http://www.platotheme.com/wedding-version/\" target=\"_blank\">live demo</a> to see the theme in action. <a href=\"https://wordpress.org/themes/wedding-bride/\" target=\"_blank\">Wedding Bride</a> is Alex Itsios&#8217; 16th theme on WordPress.org and his first foray into the wedding niche. If you&#8217;re looking for a theme that allows you to quickly create a wedding website with all the essential details on one page, you can download it for free from WordPress.org via your admin themes browser.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Nov 2016 06:28:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: WP eCommerce 3.11.4 Patches SQL Injection Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=63743\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/wp-ecommerce-3-11-4-patches-sql-injection-vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1138:\"<p>Over the weekend, the WP eCommerce team released version 3.11.4 of its <a href=\"https://wordpress.org/plugins/wp-e-commerce/\">e-commerce plugin</a>. The update patches an SQL injection vulnerability that was responsibly disclosed by Mika Epstein, a member of the WordPress.org plugin review team.</p>\n<p><a href=\"https://wpecommerce.org/news/wp-ecommerce-3-11-4-security-update/\">According to Justin Sainton</a>, lead developer of WP eCommerce, the team was notified of the vulnerability on November 11th and patched within an hour. The update was available on WordPress.org the following day.</p>\n<p>&#8220;This vulnerability only affects users who use eWay as their payment gateway, have Gold Cart activated, and are using the as-of-yet-unreleased Theme Engine 2.0,&#8221; Sainton said.</p>\n<p>&#8220;We believe the number of users affected is likely close to zero, due to these conditions.&#8221;</p>\n<p>Users are highly encouraged to update as soon as possible. Created in 2006, WP eCommerce is one of the oldest plugins in the directory and is actively installed on more than 40K sites.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Nov 2016 00:34:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:92:\"WPTavern: Upvato Backup Service Terminated by Storage Provider, Files May Not be Recoverable\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=63352\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/upvato-backup-service-terminated-by-storage-provider-files-may-not-be-recoverable\";s: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:5185:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/01/upvato-featured.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/01/upvato-featured.png?resize=1025%2C471&ssl=1\" alt=\"upvato-featured\" class=\"aligncenter size-full wp-image-50622\" /></a></p>\n<p><a href=\"https://www.upvato.com/\" target=\"_blank\">Upvato</a>, the service that specializes in backing up Envato Market files, has shut down without warning. Freddy Lundekvam, a full time programmer and frequent user of Envato products, created the service after losing 10 files to Envato&#8217;s policy of reserving the right to take down and remove any file at its or the author&#8217;s sole discretion. Losing files is a <a href=\"https://forums.envato.com/t/half-of-my-items-removed/27143/3\" target=\"_blank\">common frustration among Envato users</a>, as the company cannot guarantee the ongoing availability of products due to situations like copyright complaints and technical issues.</p>\n<p>Upvato made it easy for users to automatically backup their purchases, cataloguing them with screenshots, descriptions, titles, and author information. The service offered unlimited backups and Lundekvam encouraged users to connect their Envato accounts to keep their files safe. A few weeks ago, Upvato users started to suspect that the service was shutting down.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Anyone using <a href=\"https://twitter.com/hashtag/Upvato?src=hash\">#Upvato</a> for their themes etc from <a href=\"https://twitter.com/envato\">@envato</a> &#8211; I think you have just been duped!</p>\n<p>&mdash; Andrew Wilkinson (@parysnet) <a href=\"https://twitter.com/parysnet/status/793135773998514176\">October 31, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">What happened to <a href=\"https://twitter.com/hashtag/upvato?src=hash\">#upvato</a>? Looks like it died silently and nobody noticed. Zero commentary from the usual webdev pundits.</p>\n<p>&mdash; sunil (@sunilwilliams) <a href=\"https://twitter.com/sunilwilliams/status/791535374971523072\">October 27, 2016</a></p></blockquote>\n<p></p>\n<p>&#8220;I&#8217;m beginning to think this was not all above board,&#8221; one WP Tavern commenter <a href=\"https://wptavern.com/new-upvato-service-offers-free-backups-for-envato-market-products#comment-202262\" target=\"_blank\">said</a> after discovering that the site disappeared. &#8220;[Upvato] seamlessly copied all my themes to their server and then shut down with no warning!&#8221;</p>\n<p>Lundekvam, whose website can no longer be reached, replied to my first inquiry. After experiencing problems with Upvato&#8217;s provider, he is not hopeful that he can recover the files.</p>\n<p>&#8220;Our provider&#8217;s automated systems terminated everything related to Upvato,&#8221; Lundekvam said. &#8220;I am so frustrated and upset that you won&#8217;t believe it, but I am doing what I can do recover the files and or get a backup up and running. But it seems like the provider isn&#8217;t and wasn&#8217;t really a reliable backup provider at all, and as it is right now, it looks really dark for a possible chance to recover the files.&#8221;</p>\n<p>Lundekvam would not specify who his provider was, but had referenced Amazon Glacier in a <a href=\"https://wptavern.com/new-upvato-service-offers-free-backups-for-envato-market-products\" target=\"_blank\">previous interview</a> as an example of cheap storage space at a mere $7/month.</p>\n<p>&#8220;Such things shouldn&#8217;t happen with a backup provider like Upvato, and I am extremely surprised that it happened with our backup provider, causing it to affect Upvato,&#8221; he said. He also confirmed that he does not plan to shut the service down permanently.</p>\n<p>&#8220;If I am unable to recover the backup and files, then no, I am not shutting down,&#8221; Lundekvam said.&#8221; I would, and have to, install Upvato with a new provider and start over. Please rest assured that Upvato is coming back up. Regarding the concerned users, I am deeply sorry for the downtime and, possibly, loss of Envato files. It hurts that it happened, as this is in no way how I want Upvato to be seen or represented.&#8221;</p>\n<p>Lundekvam would not respond to subsequent inquiries. Upvato has had ample time to share this news via other outlets but the service did not have a Twitter account and its website has vanished, leaving users without any information. Lundekvam had said in previous interviews that he did not have plans to monetize Upvato in the immediate future. His motivation was to &#8220;make something cool and useful that people might want and need.&#8221;</p>\n<p>Unfortunately, since he treated Upvato as a side project and did not have further backups in place, an unexpected problem with his provider has wiped out the files users trusted with the service. In an ironic twist, the service has inadvertantly replicated the exact situation that users hoped to avoid with Envato. Lundekvam has not responded to further inquiries on the status of the recovery process, but we will update when any new information is available.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Nov 2016 21:01:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Matt: Flying Lotus, Never Catch Me\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=46928\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2016/11/flying-lotus-never-catch-me/\";s: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:357:\"<p></p>\n<p>Music videos are themselves an art form, and it&#8217;s always interesting to me how an artist chooses to transform the interpretation of their song with the video. I&#8217;ve listened to this song since it came out but haven&#8217;t seen the video until now, and it will definitely make me listen to it differently. Featuring Kendrick Lamar.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 13 Nov 2016 18:49:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: New WordPress Plugin Serves Pre-Compressed Emoji\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=63682\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/new-wordpress-plugin-serves-pre-compressed-emoji\";s: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:3475:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/compressed-emoji.png?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/compressed-emoji.png?resize=627%2C250&ssl=1\" alt=\"compressed-emoji\" class=\"aligncenter size-full wp-image-63714\" /></a></p>\n<p>WordPress emoji are served from s.w.org, but they are not compressed. This impacts the SVG loading time, depending on how many emoji you are using, and can even throw warnings on Google&#8217;s <a href=\"https://developers.google.com/speed/pagespeed/insights/\" target=\"_blank\">PageSpeed Insights</a> tool. Turkey-based WordPress developer <a href=\"https://profiles.wordpress.org/m_uysl/\" target=\"_blank\">Mustafa Uysal</a> has just released <a href=\"https://wordpress.org/plugins/compressed-emoji/\" target=\"_blank\">Compressed Emoji</a>, a plugin that makes use of the <a href=\"https://developer.wordpress.org/reference/hooks/emoji_svg_url/\" target=\"_blank\">emoji_svg_url</a> filter introduced in 4.6. This filter allows developers to change the URL for where emoji SVG images are hosted.</p>\n<p>When the plugin is activated, the compression offers savings in the range of 3kb ~ 1.3kb (roughly %60) per emoji.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/emoji-compressed-comparison.png?ssl=1\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/emoji-compressed-comparison.png?resize=1025%2C511&ssl=1\" alt=\"emoji-compressed-comparison\" class=\"aligncenter size-full wp-image-63717\" /></a></p>\n<p>Uysal said he hopes WordPress.org will consider compressing emoji in the future, especially since approximately 10% of the web is using WordPress 4.6. Compressing emoji is a small way to speed up a sizeable chunk of the web. A <a href=\"https://core.trac.wordpress.org/ticket/37374\" target=\"_blank\">ticket</a> was created on Trac four months ago, requesting cache headers for emoji files and compression. According to Gary Pendergast, the change is something that can be made outside of the WordPress core development cycle, so he closed the ticket and <a href=\"https://make.wordpress.org/systems/2016/07/20/there-are-no-cache-instructions/\" target=\"_blank\">passed the suggestion on to the Systems team</a>. Cache headers were added by the team, but compression was not implemented in that update.</p>\n<p>&#8220;The current plan is to move everything to a new CDN,&#8221; Gary Pendergast reported after chatting with the Systems team. &#8220;The current CDN is a bit outdated &#8211; they don’t support HTTP/2, for example. They need to do some more testing, but it’s high on the todo list.&#8221;</p>\n<p>In the meantime, users who want compressed emoji can use Uysal&#8217;s plugin. It compressed the files using <a href=\"https://github.com/svg/svgo\" target=\"_blank\">SVGO</a>, an open source Node.js-based tool for optimizing SVG vector graphics files. The tool removes unnecessary things like metadata, comments, hidden elements, and default or non-optimal values from the SVG files without affecting their rendering. Another advantage is it doesn&#8217;t require an internet connection for those who are developing locally.</p>\n<p><a href=\"https://wordpress.org/plugins/compressed-emoji/\" target=\"_blank\">Compressed Emoji</a> is available in the WordPress plugin directory and is also open for contributions on <a href=\"https://github.com/mustafauysal/compressed-emoji\" target=\"_blank\">GitHub</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Nov 2016 23:49: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:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Dev Blog: WordPress 4.7 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4566\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3091:\"<p>WordPress 4.7 Beta 3 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta3.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-7+dev-notes/\">in-depth field guides on make/core</a>. Some of the changes in Beta 3 include:</p>\n<ul>\n<li><strong>REST API:</strong> The <code>unfiltered_html</code> capability is now respected and <code>rest_base</code> has been added to response objects of <code>wp/v2/taxonomies</code> and <code>wp/v2/types</code>, while <code>get_allowed_query_vars()</code> and the <code>rest_get_post</code> filter have been removed.</li>\n<li><strong>Roles/Capabilities:</strong> Added meta-caps for comment, term, and user meta, which are currently only used in the REST API.</li>\n<li><strong>I18N:</strong> Added the ability to change user&#8217;s locale back to site&#8217;s locale. (<a href=\"https://core.trac.wordpress.org/ticket/38632\">#38632</a>)</li>\n<li><strong>Custom CSS:</strong> Renamed the <code>unfiltered_css</code> meta capability to <code>edit_css</code> and added revisions support to the <code>custom_css</code> post type.</li>\n<li><strong>Edit shortcuts:</strong> Theme authors should take a look at <a href=\"https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/\">the developer guide to the customizer preview&#8217;s visible edit shortcuts</a> and update their themes to take advantage of them if not already implementing selective refresh.</li>\n<li><strong>Various bug fixes:</strong> We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39200&stop_rev=39143&limit=200&verbose=on&sfp_email=&sfph_mail=\">over 50 changes</a> in the last week.</li>\n</ul>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>Building the future</em><br />\n<em>A global community</em><br />\n<em>Stronger together</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Nov 2016 03:30:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s: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:36:\"http://feeds.feedburner.com/wp-pipes\";}}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:8:\"wp-pipes\";}}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:10:{s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"etag\";s:27:\"cH1LQoijJYt3QP2vEDaH2U96/bk\";s:13:\"last-modified\";s:29:\"Wed, 14 Dec 2016 08:53:40 GMT\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"date\";s:29:\"Wed, 14 Dec 2016 09:06:47 GMT\";s:7:\"expires\";s:29:\"Wed, 14 Dec 2016 09:06:47 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:5:\"build\";s:14:\"20161206192635\";}','no'),(171,'_transient_timeout_feed_mod_99b272eaef9eaa265f30d77863073f26','1481717207','no'),(172,'_transient_feed_mod_99b272eaef9eaa265f30d77863073f26','1481706407','no'),(630,'_transient_timeout_plugin_slugs','1486625129','no'),(631,'_transient_plugin_slugs','a:5:{i:0;s:19:\"akismet/akismet.php\";i:1;s:35:\"backupwordpress/backupwordpress.php\";i:2;s:19:\"jetpack/jetpack.php\";i:3;s:27:\"ninja-forms/ninja-forms.php\";i:4;s:24:\"wordpress-seo/wp-seo.php\";}','no'),(218,'current_theme','Divi','yes'),(219,'theme_mods_Divi','a:12:{i:0;b:0;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:21:\"et_pb_layouts_updated\";s:3:\"yes\";s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:30:\"et_pb_predefined_layouts_added\";s:2:\"on\";s:34:\"et_pb_predefined_layouts_version_2\";s:2:\"on\";s:18:\"custom_css_post_id\";i:37;s:16:\"background_image\";s:99:\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/Sand-pattern-1.jpg\";s:21:\"background_position_x\";s:6:\"center\";s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:2;}s:16:\"background_color\";s:0:\"\";s:21:\"et_pb_replace_content\";s:2:\"on\";}','yes'),(185,'ctct_notices_dismissed','a:1:{s:10:\"activation\";s:0:\"\";}','yes'),(232,'et_google_api_settings','a:2:{s:7:\"api_key\";s:0:\"\";s:26:\"enqueue_google_maps_script\";s:2:\"on\";}','yes'),(191,'jetpack_connection_banner_ab','2','yes'),(192,'recently_activated','a:0:{}','yes'),(711,'nf_admin_notice','a:2:{s:16:\"one_week_support\";a:2:{s:5:\"start\";s:9:\"2/14/2017\";s:3:\"int\";i:7;}s:14:\"allow_tracking\";a:2:{s:5:\"start\";s:8:\"2/7/2017\";s:3:\"int\";i:0;}}','yes'),(212,'jpsq_sync-1481710345.118079-227775-1','a:5:{i:0;s:18:\"deactivated_plugin\";i:1;a:2:{i:0;s:19:\"jetpack/jetpack.php\";i:1;b:0;}i:2;i:1;i:3;d:1481710345.1180551;i:4;b:0;}','no'),(211,'_transient_jetpack_sync_last_checked_queue_state_sync','a:2:{i:0;i:0;i:1;i:0;}','no'),(210,'_transient_timeout_jetpack_sync_last_checked_queue_state_sync','1481710645','no'),(209,'jetpack_sync_settings_disable','0','yes'),(220,'theme_switched','','yes'),(221,'et_pb_cache_notice','a:1:{s:6:\"3.0.23\";s:6:\"ignore\";}','yes'),(222,'widget_aboutmewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(223,'widget_adsensewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(224,'widget_advwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(225,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(226,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','yes'),(227,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','yes'),(228,'et_divi','a:124:{s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:25:\"3_0_flush_rewrite_rules_2\";s:4:\"done\";s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:15:\"divi_1_3_images\";s:7:\"checked\";s:9:\"divi_logo\";s:95:\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/tiela-logo.png\";s:12:\"divi_favicon\";s:0:\"\";s:14:\"divi_fixed_nav\";s:2:\"on\";s:26:\"divi_gallery_layout_enable\";s:5:\"false\";s:18:\"divi_color_palette\";s:63:\"#000000|#ffffff|#e02b20|#e09900|#edf000|#7cda24|#0c71c3|#8300e9\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_mailchimp_api_key\";s:0:\"\";s:31:\"divi_regenerate_mailchimp_lists\";s:5:\"false\";s:28:\"divi_regenerate_aweber_lists\";s:5:\"false\";s:23:\"divi_show_facebook_icon\";s:2:\"on\";s:22:\"divi_show_twitter_icon\";s:2:\"on\";s:21:\"divi_show_google_icon\";s:2:\"on\";s:18:\"divi_show_rss_icon\";s:2:\"on\";s:17:\"divi_facebook_url\";s:1:\"#\";s:16:\"divi_twitter_url\";s:1:\"#\";s:15:\"divi_google_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:34:\"divi_woocommerce_archive_num_posts\";i:9;s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:5:\"false\";s:16:\"divi_back_to_top\";s:2:\"on\";s:18:\"divi_smooth_scroll\";s:2:\"on\";s:25:\"divi_disable_translations\";s:5:\"false\";s:15:\"divi_custom_css\";s:662:\"h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {border-radius: 0 0 50px 120px; line-height: 5px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 80px;}\n#et-info {text-align: center; float:none;}\n#main-footer {border-radius: 50px 80px 0 0; background-color:rgba(0, 2, 51, 0.82);}\n#footer-bottom {background-color: rgba(0, 0, 0, 0.0);}\n.footer-white{padding-bottom:0px;}\n#top-menu li {padding-right: 16px !important;}\n.et_pb_testimonial_author {display: none;}\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:2:\"on\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:25:\"divi_scroll_to_anchor_fix\";s:5:\"false\";s:14:\"divi_postinfo2\";a:4:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";}s:22:\"divi_show_postcomments\";s:2:\"on\";s:15:\"divi_thumbnails\";s:2:\"on\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:3:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";}s:21:\"divi_thumbnails_index\";s:2:\"on\";s:19:\"divi_seo_home_title\";s:5:\"false\";s:25:\"divi_seo_home_description\";s:5:\"false\";s:22:\"divi_seo_home_keywords\";s:5:\"false\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:0:\"\";s:29:\"divi_seo_home_descriptiontext\";s:0:\"\";s:26:\"divi_seo_home_keywordstext\";s:0:\"\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:0:\"\";s:21:\"divi_integration_body\";s:0:\"\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:12:\"header_style\";s:8:\"centered\";s:14:\"primary_nav_bg\";s:19:\"rgba(0,51,104,0.95)\";s:9:\"menu_link\";s:7:\"#cbfeff\";s:16:\"menu_link_active\";s:7:\"#ffffff\";s:12:\"heading_font\";s:8:\"Vollkorn\";s:9:\"body_font\";s:5:\"Dosis\";s:14:\"body_font_size\";i:17;s:16:\"body_font_height\";d:1.3999999999999999;s:16:\"body_header_size\";i:53;s:18:\"body_header_height\";d:1;s:10:\"font_color\";s:7:\"#000000\";s:12:\"header_color\";s:7:\"#2499cf\";s:10:\"link_color\";s:7:\"#000233\";s:16:\"show_search_icon\";b:0;s:16:\"cover_background\";b:0;s:21:\"primary_nav_font_size\";i:14;s:16:\"primary_nav_font\";s:5:\"Dosis\";s:22:\"primary_nav_font_style\";s:9:\"uppercase\";s:11:\"menu_height\";i:66;s:24:\"primary_nav_font_spacing\";i:1;s:12:\"phone_number\";s:63:\"U.S. : (860) 435-2510, (860) 318-5457 | France : 07.62.46.20.15\";s:12:\"header_email\";s:18:\"tielag@hotmail.com\";s:22:\"fixed_secondary_nav_bg\";s:7:\"#62cbce\";s:25:\"fixed_secondary_menu_link\";s:7:\"#003368\";s:28:\"secondary_nav_text_color_new\";s:7:\"#003368\";s:16:\"secondary_nav_bg\";s:7:\"#62cbce\";s:26:\"secondary_nav_font_spacing\";i:1;s:27:\"bottom_bar_background_color\";b:0;s:21:\"bottom_bar_text_color\";s:7:\"#cbfeff\";s:28:\"bottom_bar_social_icon_color\";s:7:\"#2499cf\";s:21:\"custom_footer_credits\";s:382:\"<p class=\"footer-white\">22 Walton Street, Lakeville, CT, 06039 | P (U.S.): (860) 435-2510, (860) 318-5457 | P (France): 07.62.46.20.15 | Skype: (661) 748-0240  | <a href=\"mailto:tielag@hotmail.com\">tielag@hotmail.com</a></p>\n<p>© 2016 Tiela Aldon Garnett MSC, CCHT. All rights reserved. | Website Designed by\n<a href=\"http://www.myshrinkwrap.com\" target=\"_blank\">ShrinkWrap</a></p>\";s:20:\"bottom_bar_font_size\";i:14;s:27:\"bottom_bar_social_icon_size\";i:18;s:24:\"show_footer_social_icons\";b:0;s:27:\"fixed_primary_nav_font_size\";i:14;}','yes'),(229,'et_images_temp_folder','/home1/creat537/public_html/demo/tiela/dev/wp-content/uploads/et_temp','yes'),(230,'et_schedule_clean_images_last_time','1486196855','yes'),(233,'et_automatic_updates_options','a:2:{s:8:\"username\";s:0:\"\";s:7:\"api_key\";s:0:\"\";}','yes'),(251,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(774,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1486581024','no'),(773,'_transient_feed_b9388c83948825c1edaef0d856b7b109','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n	\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:117:\"\n		\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Feb 2017 06:58:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WP-PageNavi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wp-pagenavi/#post-363\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 23:17:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"363@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Adds a more advanced paging navigation interface.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Lester Chan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"W3 Total Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/w3-total-cache/#post-12073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2009 18:46:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"12073@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"Search Engine (SEO) &#38; Performance Optimization (WPO) via caching. Integrated caching: CDN, Minify, Page, Object, Fragment, Database support.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Frederick Townes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"15@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"132@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Arne Brachhold\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2141@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"753@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"The original SEO plugin for WordPress, downloaded over 30,000,000 times since 2007.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Advanced Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Mar 2011 04:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"25254@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Customise WordPress with powerful, professional and intuitive fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"elliotcondon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"NextGEN Gallery - WordPress Gallery Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"1169@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 16 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Yoast SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"8321@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the Yoast SEO plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/hello-dolly/#post-5790\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 May 2008 22:11:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"5790@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Really Simple CAPTCHA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/really-simple-captcha/#post-9542\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Mar 2009 02:17:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"9542@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"23862@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"The one plugin you need for stats, related posts, search engine optimization, social sharing, protection, backups, speed, and email list management.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Page Builder by SiteOrigin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Apr 2013 10:36:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"51888@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Google Analytics by MonsterInsights\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2316@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"Connect Google Analytics with WordPress by adding your Google Analytics tracking code. Get the stats that matter.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Syed Balkhi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Wordfence Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29832@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"Secure your website with the most comprehensive WordPress security plugin. Firewall, malware scan, blocking, live traffic, login security &#38; more.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Wordfence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP Super Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/wp-super-cache/#post-2572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Nov 2007 11:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2572@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"A very fast caching engine for WordPress that produces static html files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Clef Two-Factor Authentication\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins/wpclef/#post-47509\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Dec 2012 01:25:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"47509@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:139:\"Modern two-factor that people love to use: strong authentication without passwords or tokens; single sign on/off; magical login experience.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Dave Ross\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"TinyMCE Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/tinymce-advanced/#post-2082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2007 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2082@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Extends and enhances TinyMCE, the WordPress Visual Editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Duplicate Post\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/duplicate-post/#post-2646\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Dec 2007 17:40:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2646@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Clone posts and pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Lopo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"UpdraftPlus WordPress Backup Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/updraftplus/#post-38058\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 May 2012 15:14:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"38058@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Anderson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29860@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Regenerate Thumbnails\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/regenerate-thumbnails/#post-6743\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Aug 2008 14:38:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"6743@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Allows you to regenerate your thumbnails after changing the thumbnail sizes.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Alex Mills (Viper007Bond)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"18101@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Google Analytics Dashboard for WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Mar 2013 17:07:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"50539@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"Displays Google Analytics stats in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alin Marcu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Disable Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/disable-comments/#post-26907\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 May 2011 04:42:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"26907@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly. Provides tool t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Samir Shah\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Duplicator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/duplicator/#post-26607\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2011 12:15:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"26607@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Duplicate, clone, backup, move and transfer an entire site from one location to another.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Cory Lamle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WP Multibyte Patch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wp-multibyte-patch/#post-28395\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Jul 2011 12:22:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"28395@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Multibyte functionality enhancement for the WordPress Japanese package.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"plugin-master\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Black Studio TinyMCE Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Nov 2011 15:06:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"31973@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The visual editor widget for Wordpress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Marco Chiesi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"SiteOrigin Widgets Bundle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/so-widgets-bundle/#post-67824\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 24 May 2014 14:27:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"67824@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"A collection of all widgets, neatly bundled into a single plugin. It&#039;s also a framework to code your own widgets on top of.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"iThemes Security (formerly Better WP Security)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Oct 2010 22:06:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"21738@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"Take the guesswork out of WordPress security. iThemes Security offers 30+ ways to lock down WordPress in an easy-to-use WordPress security plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"iThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:46:\"https://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 08 Feb 2017 07:10:24 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:7:\"expires\";s:29:\"Wed, 08 Feb 2017 07:33:42 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Wed, 08 Feb 2017 06:58:42 +0000\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20161206192635\";}','no'),(764,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1486581023','no'),(775,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1486537824','no'),(522,'_site_transient_timeout_browser_fa5ae779c99a63f9b2c03904ef16ad9f','1486428189','no'),(523,'_site_transient_browser_fa5ae779c99a63f9b2c03904ef16ad9f','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:6:\"10.0.1\";s:10:\"update_url\";s:28:\"http://www.apple.com/safari/\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/safari.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/safari.png\";s:15:\"current_version\";s:1:\"5\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(638,'_site_transient_timeout_browser_4aae293127d148bbe99fa13d81ceb9a0','1486961814','no'),(639,'_site_transient_browser_4aae293127d148bbe99fa13d81ceb9a0','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"55.0.2883.87\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(800,'hmbkp_schedule_1486538730','a:5:{s:11:\"max_backups\";i:3;s:8:\"excludes\";a:0:{}s:4:\"type\";s:8:\"complete\";s:12:\"reoccurrence\";s:6:\"weekly\";s:19:\"schedule_start_time\";i:1486868400;}','yes'),(813,'_transient_timeout_hmbkp_schedules','1487143586','no'),(814,'_transient_hmbkp_schedules','a:2:{i:0;s:25:\"hmbkp_schedule_1486538729\";i:1;s:25:\"hmbkp_schedule_1486538730\";}','no'),(816,'_transient_hm_backdrop-878e5c068aaee49781d2fd56aa20','a:2:{s:8:\"callback\";s:38:\"\\HM\\BackUpWordPress\\run_schedule_async\";s:6:\"params\";a:1:{i:0;s:10:\"1486538729\";}}','no'),(811,'_transient_timeout_hmbkp_wp_cron_test_beacon','1487143547','no'),(503,'_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.7.2.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.7.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.7.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.7.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.7.2\";s:7:\"version\";s:5:\"4.7.2\";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:1486538718;s:15:\"version_checked\";s:5:\"4.7.2\";s:12:\"translations\";a:0:{}}','no'),(772,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1486581024','no'),(768,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1486581024','no'),(769,'_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:67:\"WPTavern: WP Super Cache 1.4.9 Patches Multiple XSS Vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65664\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/wp-super-cache-1-4-9-patches-multiple-xss-vulnerabilities\";s: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:2305:\"<p><a href=\"https://wordpress.org/plugins/wp-super-cache/\">WP Super Cache</a> is a <a href=\"https://odd.blog/2007/11/05/wordpress-super-cache-01/\">nearly 10-year-old</a> plugin that is maintained by <a href=\"https://odd.blog/\">Donncha Ó Caoimh</a> and is actively installed on more than a million sites. Releases have been far and few between, but Caoimh <a href=\"https://odd.blog/2017/02/03/wp-super-cache-1-4-9/\">has released</a> WP Super Cache 1.4.9 that patches cross-site-scripting vulnerabilities on the settings page.</p>\n<p>&#8220;Those pages are only accessible by admin users so an anonymous visitor to your site can’t come along and enable it to steal your login cookies but along with those fixes come many bug fixes so it’s worth upgrading if you’re using an old version,&#8221; Caoimh said.</p>\n<p>In addition to patching security vulnerabilities, this release also contains a number of bug fixes. There&#8217;s <a href=\"https://github.com/Automattic/wp-super-cache/pull/174\">also a fix</a> in this version for those who host a lot of sites that use WP Super Cache and are running into issues with semaphores due to the possibility of users using file locking.</p>\n<p>If you&#8217;re running into this issue and need to disable file locking completely, Caoimh suggests setting the WPSC_DISABLE_LOCKING constant in a global config file. &#8220;The file locking simply slowed down how fast cache files were created and is a hold-over from WP Cache when that plugin used to write directly to the cache files,&#8221; Caoimh said.</p>\n<p>&#8220;This plugin writes to temporary files before moving to the final cache files so that locking isn’t really needed, but some sites still use it which is why it’s still around.&#8221;</p>\n<p>Caoimh is already hard at work on the next version of WP Super Cache with an effort towards <a href=\"https://github.com/Automattic/wp-super-cache/pull/177\">moving legacy cache files</a> into supercache directories. This will improve performance and make the files easier to maintain.</p>\n<p>Users are encouraged to update to 1.4.9 as soon as possible. To see a detailed list of changes and bug fixes, visit the <a href=\"https://wordpress.org/plugins/wp-super-cache/changelog/\">plugin&#8217;s changelog</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Feb 2017 04:26:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:73:\"WPTavern: WordPress for Android Closes Google+ Community for Beta Testers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65699\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wordpress-for-android-closes-google-community-for-beta-testers\";s: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:2616:\"<p>The WordPress mobile app for Android is <a href=\"https://plus.google.com/u/0/+MaximeBiais/posts/8M796fTin9Q?cfem=1\" target=\"_blank\">shutting down its beta testing community</a> that was hosted on Google+ for the past three years. The mobile team switched to a completely open beta last year, enabling them to recruit 1,500 new testers.</p>\n<p>The Google+ community, which currently has 1,152 members, has been the main channel for communication to and from the app&#8217;s developers. It was previously used to announce new beta versions and users posted regularly to confirm bugs, leave feedback on their experiences, and ask questions about upcoming features.</p>\n<p>&#8220;We kept this Google+ Community opened since then but it became a place for spammers,&#8221; Automattic mobile engineer Maxime Biais said. &#8220;We decided to close it.&#8221;</p>\n<p>Beta testers who want to continue participating are encouraged to use the open source project&#8217;s issue tracker on <a href=\"https://github.com/wordpress-mobile/WordPress-Android\" target=\"_blank\">GitHub</a>. Testers can also join the #mobile channel on <a href=\"https://make.wordpress.org/chat/\" target=\"_blank\">WordPress Slack</a>. Any testers who want to lave the beta can visit the app&#8217;s testing page and tap &#8220;<a href=\"https://play.google.com/apps/testing/org.wordpress.android\" target=\"_blank\">Leave the Test</a>,&#8221; followed by uninstalling and then re-installing the app from the Play Store to get the official stable version.</p>\n<p>Despite having a healthy troop of beta testers, the open source app rarely receives any contributions from developers outside of Automattic. <a href=\"https://wptavern.com/wordpress-for-android-5-7-adds-path-to-upgrade-wordpress-com-plan\" target=\"_blank\">Recent releases</a> have included an expansion of Automattic&#8217;s monetization path with a link for users to manage and upgrade their WordPress.com plans. This has added fuel to the friction between the needs of self-hosted sites and the presence of WordPress.com features.</p>\n<p>Community members who have voiced complaints about the current features and goals of the app are welcome to participate in its development on GitHub. Beta testing is still open to all and new testers can <a href=\"https://play.google.com/apps/testing/org.wordpress.android\" target=\"_blank\">opt in on the Google Play Store testing page</a>. The Google+ Community will close on March 6, 2017, but questions and feedback are welcome in the #mobile Slack channel where the app&#8217;s developers are frequently available.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Feb 2017 03:22:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: Google Updates AMP to Allow Sharing of Canonical URL\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65660\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/google-updates-amp-to-allow-sharing-of-canonical-url\";s: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:4925:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/04/reading.jpg?ssl=1\"><img /></a><a href=\"https://stocksnap.io/photo/F55691D3FB\">RC Cipriano</a>\n<p>One of the main drawbacks of Google <a href=\"https://www.ampproject.org/\" target=\"_blank\">AMP</a> has been brand confusion when viewing and sharing articles. Google launched the AMP project to speed up the mobile web, but in exchange publishers have had to give up control of how their AMP&#8217;d content appears. One of the most irksome aspects of interacting with AMP pages is the convoluted URL structure, which causes users to be hesitant to share the content.</p>\n<p>AMP appends google.com/amp/ to the beginning of the URL when copying the link, opening it in a browser, or sharing an article. Visitors who want to find the canonical URL have to return to Google to search for it. To the casual observer, it appears the visitor has landed on and is attempting to share a Google story.</p>\n<p>After nearly a year, Google is finally looking to remedy this sharing problem with an update to the AMP Viewer header. In a <a href=\"https://developers.googleblog.com/2017/02/whats-in-amp-url.html\" target=\"_blank\">post</a> on the Google Developers blog, the company officially recognized this problem and announced a change that will allow visitors to share the canonical URL:</p>\n<blockquote><p>Many users have requested a way to access, copy, and share the canonical URL of a document. Today, we&#8217;re adding support for this functionality in form of an anchor button in the AMP Viewer header on Google Search. This feature allows users to use their browser&#8217;s native share functionality by long-tapping on the link that is displayed.\n</p></blockquote>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/02/google-amp-sharing-link.png?ssl=1\"><img /></a>photo credit: Google\n<p>The updated header with the anchor button is already available on the iOS Google app and will be coming to the Android app within a few weeks. Google is also working on using the <a href=\"https://developers.google.com/web/updates/2016/10/navigator-share\" target=\"_blank\">Web Share API</a> to let visitors use the platform&#8217;s native sharing flow with the original URL instead of the AMP viewer URL.</p>\n<p>&#8220;A thriving ecosystem is very important to us and attribution, user trust, and ownership are important pieces of this ecosystem,&#8221; Alex Fischer, Google software engineer, said.</p>\n<p>The ability to share the canonical URL is good news for existing AMP users but is probably not enough to convince skeptical publishers to start AMPing up their pages. Burying the publisher&#8217;s canonical link is just one of many reasons there has been such strong push back against the AMP project.</p>\n<p>Kyle Schreiber, whose post on <a href=\"https://80x24.net/post/the-problem-with-amp/\" target=\"_blank\">the problems with AMP</a> inspired discussions on <a href=\"https://news.ycombinator.com/item?id=13414570\" target=\"_blank\">Hacker News</a> and <a href=\"https://www.reddit.com/r/programming/comments/5oggtm/the_problem_with_amp/\" target=\"_blank\">Reddit</a>, believes that &#8220;AMP is bad for the open web and should be changed or eliminated.&#8221;</p>\n<p>Schreiber contends that Google has designed AMP to keep the visitor within its own ecosystem. Publishers get locked in when access to Google&#8217;s news carousel is reserved for AMP&#8217;d sites only.</p>\n<p>&#8220;Clicking on an AMP link feels like you never even leave the search page, and links to AMP content are displayed prominently in Google’s news carousel,&#8221; Schreiber said.</p>\n<p>Last year the <a href=\"https://www.wsj.com/articles/google-amp-gets-mixed-reviews-from-publishers-1477648838\" target=\"_blank\">Wall Street Journal</a> spoke with publishers who were critical with AMP but reluctant to speak publicly for fear of Google&#8217;s retaliation. Their AMP pages were generating around half as much revenue as pageviews on their full mobile sites due to Google&#8217;s limitations on the type of ad units available for AMP pages. Google&#8217;s response was that the company aims to drive more revenue to non-AMP pages but isn&#8217;t quite there yet.</p>\n<p>At the end of February the AMP project experiment will have been publicly launched for a year but many smaller publishers are still hesitant to get on board. They are concerned that AMP oversteps its reach without delivering enough value in return. The strategy of taking an absurd amount of control over publishers&#8217; content and then slowly doling it back out (as with the new button for sharing the canonical URL) demonstrates how easily Google has established itself as the de facto arbiter of the mobile web. If publishers continue to yield control of their mobile content, Google will have every incentive to make AMP support the next official ranking signal.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Feb 2017 18:58: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: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:30:\"HeroPress: Hitting Rock Bottom\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=1592\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://heropress.com/essays/hitting-rock-bottom/\";s: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:5441:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/02/020817-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: We all need someone to listen. Someone to remind us that it gets better. That we will make it to tomorrow.\" /><p>I’d never been to The Capital Grille. I’d been to nice steak houses before, but this felt like a big deal. At least it should have. I was too busy freaking out because my wife wasn’t responding to one of my texts. That’s when I knew I hit rock bottom. That mental illness had taken full control. Ruining a $50 steak will make you realize that.</p>\n<p>I hit my rock bottom in the middle of WordCamp Orlando 2016. Sitting across from the wonderful Mike Hansen, sharing the best mashed potatoes I’d ever had, I was miserable. Not because Mike was bad company, but because I was so inside my head that I couldn’t control my thoughts. Dark thoughts. Suicidal thoughts. I was a mess, but Mike and the rest of the crew from BlueHost tried to keep me calm and engaged in conversation. I kept apologizing, but they stuck with me. It was pretty obvious I wasn’t okay, and they did their best. That’s what WordPress is. When you hear about “the community,” that’s what we’re really talking about.</p>\n<p>The next day, I was originally scheduled to speak, but had already backed out. As an organizer of the event, I felt awful. I know how much of a pain it is to rearrange the schedule last-minute because I’m the one, at least for the past 3 years, has made Orlando’s schedule. But the team rallied around me.</p>\n<blockquote><p>They knew I wasn’t okay, and supported me without me needing to ask.</p></blockquote>\n<p>But then something amazing happened.</p>\n<p>In the confusion of rescheduling speakers &#8211; caused by Hurricane Matthew, not Hurricane Mental Illness &#8211; a replacement speaker for one of our workshops had never actually been notified that he was speaking and didn’t show. Whoops. Even though I’d planned to just lay low in the developer workshop all day, as soon as I got word that a replacement was needed, I grabbed my laptop and headed to the next room. I don’t remember much of what I said, but I gave a talk on themes completely off the top of my head. And then it hit me. I know what I’m doing. I can do this. I’m going to be okay.</p>\n<h3>Road To Recovery</h3>\n<p>The next day, I went to see my doctor. I was diagnosed as bipolar. The dragon I’d been fighting for 15 years finally had a name. Two prescriptions later and I was on the road to recovery. I’m still on it, but WordPress is helping drive the engine.</p>\n<p>Since WordCamp Orlando, my business has taken off. I’ve started and completed more projects in the past 3 months than I did the entire rest of 2016. And all of that was possible because of the support I received that weekend. When we talk about how wonderful the WordPress community really is, we mean it. It saves lives.</p>\n<p>There’s a lot more to my story &#8211; coming out as non-binary, a shuttering business partnership to salvage a great friendship &#8211; but I don’t want to ramble.</p>\n<blockquote><p>It’s time to pay the support I received forward.</p></blockquote>\n<p>We all need someone to listen. Someone to remind us that it gets better. That we will make it to tomorrow.</p>\n<p>If you’re struggling, drop me a line on <a href=\"https://twitter.com/adamsoucie\">Twitter</a> or send an email. I’ll be waiting on the other end to lend an ear and a helping hand.</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: Hitting Rock Bottom\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Hitting%20Rock%20Bottom&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fhitting-rock-bottom%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Hitting Rock Bottom\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fhitting-rock-bottom%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%2Fhitting-rock-bottom%2F&title=Hitting+Rock+Bottom\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Hitting Rock Bottom\"></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/hitting-rock-bottom/&media=https://heropress.com/wp-content/uploads/2017/02/020817-150x150.jpg&description=Hitting Rock Bottom\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Hitting Rock Bottom\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/hitting-rock-bottom/\" title=\"Hitting Rock Bottom\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/hitting-rock-bottom/\">Hitting Rock Bottom</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:\"Tue, 07 Feb 2017 12:00:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Adam Soucie\";s: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:110:\"WPTavern: WordPress REST API Vulnerability is Being Actively Exploited, Hundreds of Thousands of Sites Defaced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65651\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://wptavern.com/wordpress-rest-api-vulnerability-is-being-actively-exploited-hundreds-of-thousands-of-sites-defaced\";s: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:5617:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/02/needle.jpg?ssl=1\"><img /></a>photo credit: stevendepolo <a href=\"http://www.flickr.com/photos/10506540@N07/3020361085\">hypodermic needle IMG_7418</a> &#8211; <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>At the end of January, <a href=\"https://wordpress.org/news/2017/01/wordpress-4-7-2-security-release/\" target=\"_blank\">WordPress 4.7.2</a> was released to fix four security issues, three of which were disclosed at the time of the release. These included a SQL injection vulnerability in WP_Query, a cross-site scripting (XSS) vulnerability in the posts list table, and the Press This feature allowing users without permission to assign taxonomy terms. The fourth and most critical issue, an unauthenticated privilege escalation vulnerability in a REST API endpoint, was fixed silently and <a href=\"https://make.wordpress.org/core/2017/02/01/disclosure-of-additional-security-fix-in-wordpress-4-7-2/\" target=\"_blank\">disclosed a week after the release</a>.</p>\n<p>Contributors on the release opted to delay disclosure in order to mitigate the potential for mass exploitation, given that any site running 4.7 or 4.7.1 is at risk. This allowed time for users to update manually and for automatic updates to roll out.</p>\n<p>&#8220;We believe transparency is in the public’s best interest,&#8221; WordPress Core Security Team Lead Aaron Campbell said. &#8220;It is our stance that security issues should always be disclosed. In this case, we intentionally delayed disclosing this issue by one week to ensure the safety of millions of additional WordPress sites.&#8221;</p>\n<p>WordPress worked with <a href=\"https://sucuri.net/\" target=\"_blank\">Sucuri</a>, the company that discovered the issue, along with other WAF vendors and hosting companies to add protections before the vulnerability was publicly disclosed.</p>\n<p>The vulnerability has been public for less than a week and is now being actively exploited. Thousands of WordPress sites have been defaced with messages like “<a href=\"https://wordpress.org/support/topic/wordpress-4-7-1-hacked-by-ng689skw/\" target=\"_blank\">Hacked by NG689Skw</a>” or &#8220;Hacked by w4l3XzY3&#8221; or similar. Googling for information about these particular hacks returns thousands of other hacked sites in the results.</p>\n<p>Sucuri founder and CTO Daniel Cid said his team saw exploits in the wild less than 24 hours after the disclosure. The attacks are primarily simple defacements so far.</p>\n<p>&#8220;There are some good bad guys updating the post excerpt with the message: &#8216;Update WordPress or you will be hacked,&#8217; which is kind weird,&#8221; Cid said. &#8220;But overall we&#8217;re seeing just simple defacement attempts, using modified versions of the exploit that was shared publicly.&#8221;</p>\n<h3>Multiple Campaigns Have Defaced Hundreds of Thousands of WordPress Sites</h3>\n<p>Sucuri is monitoring multiple defacement campaigns, each with varying degrees of success. The company <a href=\"https://blog.sucuri.net/2017/02/wordpress-rest-api-vulnerability-abused-in-defacement-campaigns.html\" target=\"_blank\">published an update</a> on the active attacks as well as the IP addresses they are originating from.</p>\n<p>&#8220;We are currently tracking four different hacking (defacement) groups doing mass scans and exploits attempts across the internet,&#8221; Cid said. &#8220;We see the same IP addresses and defacers hitting almost every one of our honeypots and network.&#8221;</p>\n<p>One defacement campaign Sucuri is tracking already has more than 68,000 pages indexed on Google. After perusing the WordPress.org forums, the problem seems to have a much larger reach than Sucuri&#8217;s network has initially detected. For example, &#8220;Hacked by NG689Skw&#8221; returns approximately 200K indexed results. &#8220;Hacked By SA3D HaCk3D&#8221; returns more than 100K results. There are multiple permutations of this defacement in play on WordPress websites across the web.  Not all results that share this same campaign structure are guaranteed to be associated with this vulnerability, but the few listed above were recent posts on the WordPress.org forum from users who failed to update to 4.7.2 in time.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/02/hacked-wordpress-sites.png?ssl=1\"><img /></a></p>\n<p>&#8220;On our end, we are seeing a big growth on exploit attempts, specially for defacement,&#8221; Cid said. &#8220;But SPAM SEO is slowly growing too.&#8221;</p>\n<p>Cid said the vulnerability allows attackers to inject content into a post or page by default, but defacement is the easy first step, along with SEO spam. If a site has a plugin like <a href=\"https://wordpress.org/plugins/insert-php/\" target=\"_blank\">Insert PHP</a> or <a href=\"https://wordpress.org/plugins/php-code-widget/\" target=\"_blank\">PHP Code Widget</a> installed, the vulnerability can lead to remote code execution. These two plugins have more than 300K combined active installs and there are others that perform similar functions.</p>\n<p>&#8220;The core of the issue is people not updating,&#8221; Cid said. &#8220;Even with auto and simple updates, people still do not update their sites.&#8221;</p>\n<p>Needless to say, if you haven&#8217;t updated to 4.7.2 and your site is running 4.7.0 or 4.7.1, you are at risk for  content injection. For most sites that have been defaced, the simplest solution is to update to the latest version of WordPress and rollback the defaced post(s) to a revision.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Feb 2017 00:36:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:75:\"WPTavern: BlogVault Security Breach Infects Customers’ Sites With Malware\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65658\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/blogvault-security-breach-infects-customers-sites-with-malware\";s: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:2120:\"<img />photo credit: Anonymous Account <a href=\"http://www.flickr.com/photos/37053322@N00/2291139919\">Code</a> &#8211; <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p><a href=\"https://blogvault.net/\">BlogVault</a>, a real-time backup and migration service with a <a href=\"https://wordpress.org/plugins/blogvault-real-time-backup/\">WordPress plugin</a> that&#8217;s active on more than 20K sites, <a href=\"https://blogvault.net/security-notification/\">announced</a> over the weekend that it suffered a security breach that exposed data. Akshat Choudhary, founder of BlogVault, <a href=\"https://blogvault.net/help/info\">explains</a> that some customer sites were accessed without authorization and were infected with malware.</p>\n<p>BlogVault is contacting customers whose sites are affected and removing malware to secure the data. According to Choudhary, all backups generated by BlogVault are safe. FTP, login credentials, and payment related data is safe. The service doesn&#8217;t store credit card information as payments are processed through <a href=\"https://stripe.com/\">Stripe</a>.</p>\n<p>The service has carried out a series of security precautions including, updating <a href=\"https://wordpress.org/plugins/blogvault-real-time-backup/\">the plugin to 1.45</a>, resetting passwords for all customer accounts, and is meticulously analyzing its systems. Customer passwords were encrypted, making them difficult to retrieve.</p>\n<p>BlogVault is sharing information about the breach as it becomes available. &#8220;We understand that it can be frustrating for you; as it is for us, to not have all the information,&#8221; Choudhary said. &#8220;We aim to be comprehensive in our response to the issue. Once we have safeguarded our customers’ data, and our investigation is complete we will be able to share more details.&#8221;</p>\n<p>Customers are encouraged to update the BlogVault plugin to 1.45 as soon as possible and to keep an eye on the service&#8217;s <a href=\"https://blogvault.net/help/info\">security updates page</a> for new information.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Feb 2017 22:04:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:55:\"WPTavern: Content Creation Is About More Than an Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=65626\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wptavern.com/content-creation-is-about-more-than-an-editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16655:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/02/ReidPeifer.jpeg?ssl=1\"><img /></a>Reid Peifer\n<p>This is a guest post written by <span class=\"st\"><a href=\"https://twitter.com/reidpeifer?lang=en\">Reid Peifer</a>, Partner and Art Director at <a href=\"http://tri.be/\">Modern Tribe</a>. In this post, Peifer shares his experience, opinions, and things to consider as the content creation experience in WordPress <a href=\"https://make.wordpress.org/core/2017/01/17/editor-technical-overview/\">is revamped</a>.<br />\n</span></p>\n<hr />\n<p>Let’s imagine a world where the tools that we have don’t limit us, but instead enable us to create unique, contextual, and thoughtful content. We don&#8217;t fight with them, we don&#8217;t quibble over line breaks and margins.</p>\n<p>We don&#8217;t argue about whether or not two images should line up. We’re not limited to bold, italic, underline, and bullet points to express our ideas. We’re not limited to taxonomies for our organization and obtuse relational algorithms to determine complementary content.</p>\n<p>This is the reality that we should have. Content management should be more than TinyMCE and meta boxes. While WordPress has continued to grow into a mature platform, the focus on what should be its core mission has taken a second seat.</p>\n<p>We (the WordPress community at large) have gotten so excited about making WordPress awesome, we lost sight of our charge &#8211; to enable WordPress to make awesome things. To democratize publishing. To get the stories out of people&#8217;s heads and hearts and out to the world.</p>\n<p>We forgot about content. Without content, WordPress and all its bits and bobs amount to much ado about nothing. While it’s true that WordPress has grown to an almost unimaginable scale, the content it creates today isn’t going to support the needs of tomorrow’s web.</p>\n<p>I couldn’t make it to WordCamp US, but I’ll admit that I sat slack-jawed with joy listening to the <a href=\"https://wordpress.tv/2016/12/07/matt-mullenweg-state-of-the-word-2016/\">video</a> calling for a focus on the editor in 2017.</p>\n<p>The <a href=\"https://make.wordpress.org/core/2017/01/17/editor-technical-overview/\">initial discussions</a> happening on make.wordpress.org and within slack are incredibly encouraging. The community has taken this charge and is moving forward with a passion that reflects the importance of the task at hand.</p>\n<p>While I absolutely applaud their effort, and think the conversation thus far has been valuable &#8211; it immediately went to the editor itself. What makes a good editor? The discussion is focused on the UI, what format the data should be stored in, should shortcodes be used etc. All good questions, but if we answer them first &#8211; we limit the scope of our inquiry.</p>\n<p>The first question should be ‘what makes good content’? What is ‘content’? Does content only live on the post or the page? What are its essential elements? How do those elements interact and relate to each other? What’s the life cycle of content? Where and how does it surface throughout the site? Does content behave differently in different scenarios or positions?</p>\n<p>If we start with these questions, their answers become our objectives for the UI. The question &#8216;what makes a good editor&#8217; has a clear answer &#8211; one that makes achieving these goals delightful and effortless.</p>\n<h2>The Need for a More Robust Content Creation Tool Is Not New</h2>\n<p>Years ago, when ‘magazine layout’ was the new hot thing, we had the privilege of working with some large publications. In our design discovery, we learned how they thought about the presentation of their content, how layouts would change based on the content they were presenting that day.</p>\n<p>The rigid templates of the web that we were used to building couldn’t possibly meet the strategy that they had employed for ages in print. The sports, business, and lifestyle sections all needed to be able to leverage different layouts and presentation depending on their immediate needs.</p>\n<p>They needed to change day after day. We were going to toss out what we knew about building sites in WordPress. We were going to have to ditch the template hierarchy and start from scratch. The taxonomy term page in the admin wasn’t going to cut it.</p>\n<p>Meanwhile, ‘art directed’ or ‘editorial posts’ became a thing. Folks like Jason Santa Maria and Trent Walton were pumping out beautiful, bespoke articles rich in editorial design. I’ve never been more excited about the web’s potential than when I saw those first Jason Santa Maria articles &#8211; I’m a sucker for good content design.</p>\n<p>At some point shortly thereafter the NY Times published <a href=\"http://www.nytimes.com/projects/2012/snow-fall/#/?part=tunnel-creek\">Snowfall</a>, and everyone we talked to needed ‘long form’ (even if they had no idea why or what that could mean). I ran my own experiments trying to recreate that functionality in WordPress &#8211; at the time that meant full markup and a reams of custom CSS all cooked into the WYSIWYG. Beautiful output, crappy experience.</p>\n<p>These are two really common (and old) examples of how the content needs more than the tool can offer.</p>\n<p>We toiled away at these challenges over the years and have solved them for our particular use cases. Every project pushes our own solutions forward. Here’s some of what we learned.</p>\n<p><em>(So we’re all talking in the same terms, below when I reference Content Creation I mean the act of creating a new piece of content. When I reference content management, I mean both the content model, and the organization and presentation of content throughout the site.)</em></p>\n<h2>We Should Learn From Modular Development &amp; Atomic Design</h2>\n<p>We should be applying modular development and atomic design principles to both content creation and content management.</p>\n<a href=\"http://bradfrost.com/blog/post/atomic-web-design/\"><img /></a>Atomic Design Principle as Explained by Brad Frost\n<p>We’ve adopted a modular and systematic thinking to our coding practices, breaking once monolithic templates into smaller reusable parts. We’ve applied design systems thinking and atomic approaches to our UI/UX and visual design work.</p>\n<p>Small pieces come together to create components, which come together to create pages which come together to create full experiences. It’s the LEGO blocks school of design and build. This is a refrain that many of us know well.</p>\n<h2>Extending That Philosophy to Content Creation and Management</h2>\n<p>While we’ve embraced this idea of systemic thinking in how we design and the infrastructure of what we build &#8211; we haven’t gotten to thinking about how to approach content creation and content management (content strategy) in a similarly modular fashion.</p>\n<p>This is primarily because our tools won’t let us apply modular thinking to content creation and management. CMSs, including WordPress, are generally limited to predefined structures and organizational models.</p>\n<p>The role of templating in the overall CMS architecture limits the flexibility of our content creators. Today, content strategy occurs before, and then is at the mercy of development. In a better world, our content strategy could use design and development to grow, adapt, and change over time gracefully. Our publishing tools could become the method by which our ongoing content strategy evolves.</p>\n<h2>Modular Content Creation</h2>\n<p>Let’s think about the idea of content on the web. Much of what we see on the web today is a logical baby step forward from print. Titles and headlines, paragraphs of copy, images, pull quotes. Those pieces are a 1:1 analog. Because it’s a digital medium, and we’re oh so clever, we’ve included videos, image galleries, those dang carousels, and whatnots as well.</p>\n<p>For most of you, those elements are plopped onto a webpage using a WYSIWYG editor. You fight with TinyMCE for supremacy. Perhaps your theme or plugin has dedicated meta boxes for special elements. There may be a slide show or gallery at the top of the page.</p>\n<p>When we look at most executions of content on the web, they are in fact less interesting, less engaging, and less beautiful than what our print counterparts have been doing for ages (and I mean literal ages).</p>\n<p>We have all of the advantages but fail at creating anything more interesting than a preformatted spew of content. Our insistence that content and presentation need to be separate is an overstep &#8211; they are related at their very core. Was there an earth shattering news story yesterday? Too bad, you get the same 400px featured image slot that every other story gets.</p>\n<p><strong>I refuse to believe this is the best we can do.</strong></p>\n<p><strong>TinyMCE is not the pinnacle of content creation tools.</strong></p>\n<p>The platform that can figure out how to make content creation engaging and powerful is the platform that is going to continue to grow. While Calypso is an interesting engineering feat and is a helpful model for future development, it did little to push forward what it actually means to create content within the WordPress framework.</p>\n<p><strong>Trying to fight this out in a single WYSIWYG sucks</strong></p>\n<p>Our content creation tools should allow us to approach content creation the same way that we think about design. What are the atomic elements of my content strategy? How can I remix, reassemble, and work with those elements to create interesting content?</p>\n<p>It must be systemic. All of the elements and components must work as part of an overall structure and strategy to form a coherent whole. Just like our design work, and our development work. Our strategy, design, and development process is focused on identifying and creating patterns.</p>\n<p>Throughout the content strategy and design portion of the project, we’re focused on identifying what those patterns are at their very core; how do we break them down into their smallest parts? Then, through design and development, we start putting those pieces together in a way that supports internal objectives and end-user objectives.</p>\n<ul>\n<li>Elements &#8211; the simplest unit. Strings of text, single images, videos, a form input field or button</li>\n<li>Components or blocks &#8211; groupings of elements that form a cohesive unit</li>\n<li>Modules &#8211; groupings of complementary components to for a larger whole</li>\n<li>Pages (or posts, or CPTS or whatever) &#8211; groupings of modules to form a complete piece of content</li>\n</ul>\n<p>To push WordPress’ content creation tools forward, we must look at what those elements, components, and modules could be, how they relate to each other. Are they created on the fly, are they opinionated or flexible. Then how do we create them. How do they relate to themes and data sanctity. And on and on.</p>\n<h2>Modular Content Management (modular content strategy)</h2>\n<p>While there are enough visual references to start to imagine what a modular content creation tool looks like, modular content management is a bit tougher to visualize so hang with me.</p>\n<p>Within modern CMSs we’ve got a couple of tools at our disposal. Tags and categories, coupled with parent / child relationships, are the primary organization structures cooked into WordPress. Of course those can be extended to include any number of taxonomical structures imaginable.</p>\n<p>Tools like Post to Posts (P2P) provide and create an interesting peer-to-peer layer allowing you to create 1:1, 1:many, or many:many relationships.</p>\n<p>That’s pretty much it. The mechanics of relationships are defined and subject to code. I can assign content into those defined buckets. I have fixed templates that display those buckets in predetermined ways. If I want to vary from that, if I want to create relationships and remix content as a content manager or a content creator, I’m outta luck.</p>\n<p>Think about the category term screen within WordPress. What sort of content management tools do you have at your disposal there? What can you do? What can you <em>manage</em>? Not much at all. Look back over the history of WordPress releases &#8211; when has that screen changed?</p>\n<p>We are not living up to our potential if we stop at a taxonomical organization as the be-all-end-all of content management.</p>\n<p>The Loop is one of the central concepts of WordPress content management. While it is incredibly powerful and key to understanding how to think about your content, it’s the beginning, not the end, of content management. We cannot stop at the &#8216;list&#8217; as the pinnacle of our content strategy.</p>\n<h3>Needs Change Over Time</h3>\n<p>We do a lot of work for universities and schools. Each and every one has a category landing page dedicated to current students. Throughout the year, they want to gather and surface all kinds of different elements, pieces of content, and tools for those students.</p>\n<p>In WordPress terms, we’ve got pages, blog posts, events, tools, resources, key dates, applications and files, on top of video galleries and who knows what other CPTs your content strategy has formed.</p>\n<p>The needs of those students change through the year &#8211; welcome materials in the fall, midterm information in the winter, job support and internship programs in the spring. If our university friends were tied to templates where those needs were articulated in code, they’d need to go back under the hood to update their content strategy and approach it at least quarterly.</p>\n<h3>Relationships Should Be Richer Than Taxonomy Terms</h3>\n<p>Real content management would enable content creators to package and present the things they’ve made in thoughtful and unique ways&#8211;where the relationships and connections have value beyond each individual piece. Together they become a cohesive whole. That’s a content strategy that’s worth a damn. If you can’t do that, your content strategy is really just a thoughtful list of categories and tags.</p>\n<p>Our content management tools should enable and empower you to gather your content and present it how you need to. You shouldn’t be limited solely by lists and algorithms. We want our clients to be able to create unique cross-sections of content where they need, not where they happen to have pre-baked templates that allow them do so.</p>\n<p>An example to help visualize: Sticking with our college student, imagine the registrar publishes a deadline for financial aid application. The residential life department has updated forms for getting a spot in the dorms.</p>\n<p>The student life department publishes a list of events for new students to meet each other. Each piece of content lives in its own silo in disparate places on the university website. Now imagine you’re in the communications department, and you’ve been charged with ensuring that new students get the information they need.</p>\n<p>Do you <strong>A:</strong> manually type excerpts to those pieces of content in a sidebar widget, hardcode some links trying to apply a specific class that makes the links look like buttons but you can’t remember if it’s .btn_round or .btnround or .round_btn_blue_large, and pray it stays in the same place <strong>OR B:</strong> create a &#8216;Key Info for New Students&#8217; module by referencing each piece of content dynamically and dragging it at the top of the homepage displacing the out of date commencement gallery that you forgot to take down last spring?</p>\n<p>Old school is option A. New School option B (and it’s not the cool old school, it’s the lame frustrating old school).</p>\n<h3>The Way Forward Is Modular</h3>\n<p>If you’re new the concept of atomic design, read <a href=\"http://bradfrost.com/blog/post/atomic-web-design/\">this piece</a> by Brad Frost first. If you want to see how we solved some of these problems specifically &#8211; there’s a couple of WordPress.TV talks where I harp on this stuff <a href=\"https://wordpress.tv/2015/10/26/reid-peifer-reimagining-content-creation/\">here</a> and <a href=\"https://wordpress.tv/2014/05/08/reid-peifer-so-long-fixed-templates-and-thanks-for-all-the-fish-modular-content-with-wordpress/\">here</a>.</p>\n<p>We’ve got to strive for more than just an updated WYSIWYG editor. We’ve got to aspire to a bigger and broader understanding of what content is and could be. When we’ve got that vision, we’ll be able to build tools to help realize it.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 04 Feb 2017 05:32: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:\"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:55:\"WPTavern: More Than 50% of Web Traffic is Now Encrypted\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65505\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/more-than-50-of-web-traffic-is-now-encrypted\";s: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:6155:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/01/lock.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/550FJBDFSW\">Chris Anderson</a>\n<p>In October 2016 <a href=\"https://support.mozilla.org/en-US/kb/share-telemetry-data-mozilla-help-improve-firefox\" target=\"_blank\">Mozilla Telemetry</a> showed <a href=\"https://twitter.com/letsencrypt/status/786977436109934592\" target=\"_blank\">more than 50% of page loads were encrypted with HTTPS</a>. This week Let&#8217;s Encrypt is reporting that more than 50% HTTPS page loads is now the norm, a major milestone for HTTPS adoption across the web.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Per <a href=\"https://twitter.com/firefox\">@Firefox</a> Telemetry, more than 50% HTTPS page loads is now the norm! <a href=\"https://t.co/7mo8VPrpbq\">pic.twitter.com/7mo8VPrpbq</a></p>\n<p>&mdash; Let\'s Encrypt (@letsencrypt) <a href=\"https://twitter.com/letsencrypt/status/826198258355572736\">January 30, 2017</a></p></blockquote>\n<p></p>\n<p><a href=\"https://www.google.com/transparencyreport/https/metrics/?hl=en\" target=\"_blank\">Google&#8217;s Transparency Report</a> shows similar numbers for HTTPS usage, confirming that secure browsing has become the norm. Google found that HTTPS is less prevalent on mobile devices than desktop but the percentage of pages loaded over HTTPS is steadily on the rise across the board.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/01/percentage-pages-loaded-over-https.png?ssl=1\"><img /></a></p>\n<p>The launch of <a href=\"https://letsencrypt.org/\" target=\"_blank\">Let&#8217;s Encrypt</a>, the new free and open certificate authority, is one of the main factors causing the rapid rise in secure traffic. Thanks to sponsorships and partnerships with hosting companies and services, Let&#8217;s Encrypt closed out 2016 with more than <a href=\"https://wptavern.com/lets-encrypt-passes-20-million-active-certificates-in-2016\" target=\"_blank\">20 million active certificates</a>.</p>\n<p>Google&#8217;s influence has also been one of the driving factors in HTTPS adoption after the search engine <a href=\"https://webmasters.googleblog.com/2014/08/https-as-ranking-signal.html\" target=\"_blank\">announced</a> in 2014 that it was starting to use HTTPS as a ranking signal. As of 2017, Google Chrome is<a href=\"https://wptavern.com/chrome-to-add-security-warning-to-http-sites-beginning-2017\" target=\"_blank\"> adding a prominent security warning for HTTP sites</a>.</p>\n<p>Throughout 2016 many major publications moved to HTTPS, including the <a href=\"https://www.theguardian.com/info/developer-blog/2016/nov/29/the-guardian-has-moved-to-https\" target=\"_blank\">Guardian</a>, <a href=\"https://developer.washingtonpost.com/pb/blog/post/2015/12/10/moving-the-washington-post-to-https/\" target=\"_blank\">Washington Post</a>, <a href=\"https://www.wired.com/2016/09/wired-completely-encrypted/\" target=\"_blank\">Wired</a>, <a href=\"https://www.engadget.com/2016/06/10/engadget-moved-to-https-because-we-love-you/\" target=\"_blank\">Engadget</a>, <a href=\"https://arstechnica.com/information-technology/2017/01/ars-announces-https-by-default-finally/\" target=\"_blank\">Ars Technica</a>, and <a href=\"https://open.blogs.nytimes.com/2017/01/10/https-on-nytimes-com/?_r=0\" target=\"_blank\">New York Times</a>, to name a few. Nearly all of them publicly documented the challenges and triumphs of their HTTPS transitions.</p>\n<p>In July 2016, security researcher Scott Helme crawled the Alexa Top 1 million sites to measure how security is progressing on the web. In his previous scans, which included August 2015 and February 2016, the top million sites saw a 42% increase in HTTPS adoption. <a href=\"https://scotthelme.co.uk/alexa-top-1-million-crawl-aug-2016/\" target=\"_blank\">Helme&#8217;s July 2016 crawl</a> showed a 46% increase from February 2016.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/01/helme-https-adoption-stats.png?ssl=1\"><img /></a></p>\n<p>Despite the overall growth, the number of HTTPS-enabled sites is just 13.75% of Alexa&#8217;s top million. However, these are the sites that serve the most traffic: Google, YouTube, Facebook, Amazon, and others. These results are consistent with Electronic Frontier Foundation&#8217;s (EFF) <a href=\"https://www.eff.org/deeplinks/2016/10/lets-encrypt-largest-certificate-authority-web\" target=\"_blank\">reports</a> that HTTPS adoption is growing the fastest with smaller, previously-unencrypted sites.</p>\n<p>Let&#8217;s Encrypt&#8217;s launch has also had a ripple effect on commercial certificate authorities who are now moving to offer domain validated SSL certificates for free in order to promote their other security products. Symantec is now partnering with hosting companies to issue free certificates as part of its <a href=\"https://www.symantec.com/content/dam/symantec/docs/other-resources/ee-program-guide-combined-en.pdf\" target=\"_blank\">Encryption Everywhere</a> program. Comodo also <a href=\"https://www.comodo.com/news/press_releases/2016/12/worlds-largest-CA-comodo-and-web-hosting-platform-leader-cPanel.html\" target=\"_blank\">announced</a> a partnership with cPanel in December 2016 to automatically issue SSL certificates at no additional costs to consumers via cPanel&#8217;s AutoSSL feature.</p>\n<p>Securing half the web&#8217;s traffic is a major landmark on the road to a fully encrypted web, but encryption advocates will need to continue educating website owners on the benefits of making the switch to HTTPS. With the necessary infrastructure now in place for anyone to get an auto-renewing SSL certificate for free, Let&#8217;s Encrypt director Josh Aas is optimistic about progress on the remaining 50% of the web.</p>\n<p>&#8220;As exciting as 2016 was for encryption on the Web, 2017 seems set to be an even more incredible year,&#8221; Aas said &#8220;Much of the infrastructure and many of the plans necessary for a 100 percent encrypted Web really solidified in 2016, and the Web will reap the rewards in 2017. Let’s Encrypt is proud to have been a key part of that.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Feb 2017 23:36: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: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:29:\"Donncha: WP Super Cache 1.4.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://odd.blog/?p=89500145\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://odd.blog/2017/02/03/wp-super-cache-1-4-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5137:\"<p>There&#8217;s a new release of <a href=\"https://wordpress.org/plugins/wp-super-cache/\">WP Super Cache</a> out and it&#8217;s a security release to fix XSS problems in the settings pages. Those pages are only accessible by admin users so an anonymous visitor to your site can&#8217;t come along and enable it to steal your login cookies but along with those fixes come many bug fixes so it&#8217;s worth upgrading if you&#8217;re using an old version.</p>\n<p>From the Changelog:</p>\n<blockquote>\n<ul>\n<li>Fixed bug when not running sem_remove after sem_release. See <a href=\"https://github.com/Automattic/wp-super-cache/issues/85\" rel=\"nofollow\">https://github.com/Automattic/wp-super-cache/issues/85</a></li>\n<li>Fixed a PHP error impacting PHP 7.1.</li>\n<li>Fixed a bug where we cached PUT and DELETE requests. We&#8217;re treating them like POST requests now.</li>\n<li>Delete supercache cache files, even when supercache is disabled, because mod_rewrite rules might still be active.</li>\n<li>Updated the settings page, moving things around. <a href=\"https://github.com/Automattic/wp-super-cache/pull/173\" rel=\"nofollow\">#173</a></li>\n<li>Make file locking less attractive on the settings page and fixed the WPSC_DISABLE_LOCKING constant so it really disables file locking even if the user has enabled it already.</li>\n<li>Added a WPSC_REMOVE_SEMAPHORE constant that must be defined if sem_remove() is to be used as it may cause problems.  <a href=\"https://github.com/Automattic/wp-super-cache/pull/174\" rel=\"nofollow\">#174</a></li>\n<li>Added a &#8220;wpsc_delete_related_pages_on_edit&#8221; filter that on returning 0 will disable deletion of pages outside of page being edited. <a href=\"https://github.com/Automattic/wp-super-cache/pull/175\" rel=\"nofollow\">#175</a></li>\n<li>Fixed plugin deleting all cached pages when a site had a static homepage. <a href=\"https://github.com/Automattic/wp-super-cache/pull/175\" rel=\"nofollow\">#175</a></li>\n<li>Make sure $cache_path has a trailing slash <a href=\"https://github.com/Automattic/wp-super-cache/pull/77\" rel=\"nofollow\">#177</a></li>\n<li>Remove flush() <a href=\"https://github.com/Automattic/wp-super-cache/pull/127\" rel=\"nofollow\">#127</a> but also check if headers are empty and flush and get headers again. <a href=\"https://github.com/Automattic/wp-super-cache/pull/179\" rel=\"nofollow\">#179</a></li>\n<li>Add fix for customizer <a href=\"https://github.com/Automattic/wp-super-cache/pull/161\" rel=\"nofollow\">#161</a> and don&#8217;t cache PUT AND DELETE requests <a href=\"https://github.com/Automattic/wp-super-cache/pull/178\" rel=\"nofollow\">#178</a></li>\n<li>Check for superglobals before using them. <a href=\"https://github.com/Automattic/wp-super-cache/pull/131\" rel=\"nofollow\">#131</a></li>\n</ul>\n</blockquote>\n<p>You can click through to each of the Github pull requests above to see discussion around each bug fix.</p>\n<p>If you&#8217;re hosting many sites that use WP Super Cache and you&#8217;re seeing issues with semaphores it may mean that your users are using file locking. It&#8217;s really not needed and in <a href=\"https://github.com/Automattic/wp-super-cache/pull/174\">#174</a> there&#8217;s a fix that went into this release. You can disable file locking completely by setting the constant &#8220;WPSC_DISABLE_LOCKING&#8221; in a global configuration file. The file locking simply slowed down how fast cache files were created and is a hold-over from WP Cache when that plugin used to write directly to the cache files. This plugin writes to temporary files before moving to the final cache files so that locking isn&#8217;t really needed, but some sites still use it which is why it&#8217;s still around.</p>\n<p>I&#8217;ve already been working on the next release with efforts <a href=\"https://github.com/Automattic/wp-super-cache/pull/177\">to move the legacy cache files</a> into the supercache directories. This will make it easier to maintain them and improve performance. We really need to find a better name for this caching method however. It caches everything &#8211; page contents and http headers so it&#8217;s quite useful!<br />\nIf you&#8217;re going to test that PR, try <a href=\"https://github.com/Automattic/wp-super-cache/pull/176\">#176</a> too. The plugin only deletes index.html type files right now but this chunk of code cleans up various for loops in the plugin and also deletes any file in the named directory. There are some restrictions on it so it won&#8217;t delete anything outside the cache directory.</p>\n<p>Thanks to everyone who contributed to this release!</p>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"https://odd.blog/2008/10/24/wp-super-cache-084-the-garbage-collector/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.4, the garbage collector\">WP Super Cache 0.8.4, the garbage collector</a></li><li> <a href=\"https://odd.blog/2009/01/09/wp-super-cache-087/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.7\">WP Super Cache 0.8.7</a></li><li> <a href=\"https://odd.blog/2010/02/08/wp-super-cache-099/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.9.9\">WP Super Cache 0.9.9</a></li></ul></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Feb 2017 17:46: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:\"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: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:71:\"WPTavern: WP-CLI 1.1.0 Released, Project Shifts to Expand Package Index\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65553\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wp-cli-1-1-0-released-project-shifts-to-expand-package-index\";s: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:2920:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/wp-cli.png?ssl=1\"><img /></a></p>\n<p>WP-CLI <a href=\"https://make.wordpress.org/cli/2017/02/01/version-1-1-0/\" target=\"_blank\">1.1.0</a> is now available, two months after 1.0.0 was released. The project shifted after 1.0.0 to focus on its <a href=\"https://wp-cli.org/package-index/\" target=\"_blank\">package ecosystem</a>, encouraging new features to be built as standalone packages instead of rolling them all into WP-CLI core. Daniel Bachhuber, the project&#8217;s maintainer, moved WP-CLI in this new direction to better distribute the maintenance burden among package maintainers.</p>\n<p>Version 1.1.0 includes 23 command improvements, 8 framework enhancements, and dozens of bug fixes. The release had a 16% increase in the number of contributors from 1.0.0. It is the first major release since the project was <a href=\"https://wptavern.com/wp-cli-gets-official-wordpress-org-support\" target=\"_blank\">brought under the umbrella of WordPress.org</a> at the beginning of 2017.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/02/wp-cli-handbook.png?ssl=1\"><img /></a></p>\n<p>The process of migrating the wp-cli.org website to wordpress.org will take a couple of months, but the website documentation has already found a new home at <a href=\"https://make.wordpress.org/cli/handbook/\" target=\"_blank\">make.wordpress.org/cli/handbook/</a>. Contributors can edit documentation by clicking on the button at the top of any page, which links to the handbook&#8217;s GitHub repository.</p>\n<h3>WP-CLI to Expand Package Index</h3>\n<p>As part of the new focus on the WP-CLI package ecosystem, Bachhuber has created a GitHub repository for logging <a href=\"https://github.com/wp-cli/ideas\" target=\"_blank\">ideas for new packages</a>. The best ideas will be maintained as canonical community packages.</p>\n<p>&#8220;The end goal for the WP-CLI package index is to be a directory of well-maintained, canonical features,&#8221; Bachhuber said. &#8220;Packages will be considered community projects shepherded by one or more maintainers, instead of the domain of a specific author.&#8221;</p>\n<p>Bachhuber is looking to hire someone to assist in maintaining the project in a part-time capacity for 5-10 hours per week. This person will work on supporting package maintainers and vetting ideas for new packages.</p>\n<p>The next release cycle will focus on <a href=\"https://github.com/wp-cli/wp-cli/issues/3728\" target=\"_blank\">splitting internal commands into separate packages</a> with the goal of having official maintainers for them in the future. Contributors are also planning to create new pages on WordPress.org for the <a href=\"http://wp-cli.org/commands/\" target=\"_blank\">WP-CLI commands</a> directory and <a href=\"http://wp-cli.org/docs/internal-api/\" target=\"_blank\">internal API docs</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Feb 2017 18:16: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: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:73:\"Post Status: Editing and customization core focus areas — Draft Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=33385\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://poststatus.com/editing-customization-core-focus-areas-draft-podcast/\";s: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:2164:\"<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 Joe Hoyle &#8212; the CTO of Human Made &#8212; and Brian Krogsgard.</p>\n<p>In this episode, Joe and Brian talk about two of the three WordPress core focus areas &#8212; the customizer and the editor. There has been some news lately with initial ideas and mockups for each project, and we discuss the importance of these features, as well as what&#8217;s happening with these projects so far.</p>\n<!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href=\"https://audio.simplecast.com/59336.mp3\">https://audio.simplecast.com/59336.mp3</a>\n<p><a href=\"https://audio.simplecast.com/59336.mp3\">Direct Download</a></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2017/01/19/customization-in-2017/\">Customizer opportunities</a></li>\n<li><a href=\"https://make.wordpress.org/design/2017/01/25/what-are-little-blocks-made-of/\">Editor mockups</a></li>\n<li><a href=\"https://make.wordpress.org/core/2017/01/17/editor-technical-overview/\">Editor technical challenges</a></li>\n<li><a href=\"https://commercenotebook.com\">Commerce Notebook</a></li>\n</ul>\n<h3>Sponsor: Pippin&#8217;s Plugins</h3>\n<p>This episode is sponsored by Pippin&#8217;s Plugins. <a href=\"http://pippinsplugins.com/\">Pippin&#8217;s Plugins</a> creates a suite of plugins that work great alone, or together. Whether you need to restrict content, sell downloads, or start an affiliate program, they&#8217;ve got you covered. For more information, check out their <a href=\"http://pippinsplugins.com/\">website</a> and thank you to Pippin&#8217;s Plugins 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:\"Thu, 02 Feb 2017 17:49: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:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:77:\"WPTavern: WPWeekly Episode 261 – WordPress for Schools With Cameron Barrett\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65559&preview=true&preview_id=65559\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wpweekly-episode-261-wordpress-for-schools-with-cameron-barrett\";s: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:2598:\"<p>In this episode, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by <a href=\"http://camworld.org/\">Cameron Barrett</a>, founder of <a href=\"http://schoolpress.co/\">SchoolPresser, LLC</a>. Barrett explains how he negotiated and helped migrate Newark New Jersey&#8217;s public school system from a proprietary CMS to WordPress. He shares the pitfalls he experienced and the amount of money the district is saving since making the switch. Barrett also provides tips and suggestions on how to sell WordPress as a solution to school districts.</p>\n<p>We didn&#8217;t dive as deep as we wanted to on the topic but if you&#8217;d like to learn more, please watch the<a href=\"https://wordpress.tv/2016/12/11/cameron-barrett-wordpress-for-schools-3/\"> presentation</a> he did at WordCamp US. In it, he provides more details of the migration, financials, and there&#8217;s a great question and answer session at the end.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wordpress.org/news/2017/01/wordpress-4-7-2-security-release/\">WordPress 4.7.2 Security Release</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/birthday-mails-bp/\">Birthday Mail BP</a> is an automated function for BuddyPress that sends birthday emails to members on their birthday. It&#8217;s a great way to express birthday wishes or to present a coupon or discount code to members.</p>\n<p><a href=\"https://wordpress.org/plugins/woo-document-preview/\">WC Document Preview</a> adds a document preview feature to WooCommerce similar to how Amazon allows you to preview books. This is handy for ebooks and digital products that lend themselves to previews.</p>\n<p><a href=\"https://wordpress.org/plugins/tm-style-switcher/\">TM Style Switcher</a> allows you to save a theme&#8217;s settings as skins, switch between them, and move skins from one WordPress site to another.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, February 8th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #261:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Feb 2017 00:30: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:\"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: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:52:\"HeroPress: The Joy of Being with WordPress Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=1586\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://heropress.com/essays/joy-wordpress-community/\";s: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:11955:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/02/020117-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Above all, the global community of WordPress has been a major inspiration for me.\" /><p>When my friend Mahangu first recommended me to Topher to write an essay for HeroPress, I could not believe his words. Quite confused I asked Topher, he repeated the same ‘Share your story on HeroPress’. It was unbelievable yet a beautiful sentence that left me stunned with pride.</p>\n<p>HeroPress has been a place where I occasionally read the stories of the WordPress heroes. Reading the inspiring stories, I have always found new energy for Work every day. Never thought my story would be worth this platform, I was overwhelmed to receive that message from Topher.</p>\n<p>I am NO Hero but just another full stack WordPress developer. More than that, I am a 24 years young web dude from Nepal. Nepal is a small country that lies in the foothills of the immense and sensational Himalayas. Moreover, it is the land of incredible natural beauty, adventure, and ancient wisdom and enlightenment. And this land has always inspired me to take tiny steps of truth towards the mountain-high peak.</p>\n<p>I could not agree much with Mahangu and Topher but I decided to share my story on this amazing platform. After all, I am not any exceptional but someone who wants to be a hero like (almost) everyone.</p>\n<h3>How I started?</h3>\n<p>Even though I was highly interested to computer from early childhood, I got one of my own only when I was in the 4th grade. As a curious child, I learned about technical aspects of computer from my senior brother and within a year or so on I started fixing the neighbors and friends computer. Since then I had a will to get things “right” as opposed to just getting things “working”. I vividly recall those days when I used to spend hours of my holiday playing Mario. Honestly, that’s still one of my favourite game. <img src=\"https://s.w.org/images/core/emoji/2.2.1/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<p>Back in those days, computer and internet were limited to few cyber cafes in town. I barely had any idea what they actually meant for except gaming.</p>\n<blockquote><p>I thought they were established for the foreigners as they were mostly visited by the international tourists.</p></blockquote>\n<p>After SLC examination (10th grade in Nepal), we have 3 months long vacation when students take extra classes such as bridge courses to prepare themselves for college. Since I was from the best school and was quite good at study I didn’t go for classes required for joining college. That was the time when I enrolled in a computer institute for hardware classes as I was quite interested to know how machine work. Thereafter, I joined college with Science faculty. The only motive behind joining the hardware class and choosing ‘Science’ was to prepare myself for mechanical engineering.</p>\n<p>But I could not do it. Physics, Chemistry barely made any sense to me and therefore started questioning its applicability in my day to day life. As a result, I failed formal education system.</p>\n<blockquote><p>This is how I faced the first and last (till now) “failure” in my life, I dropped down engineering dream right there.</p></blockquote>\n<p>Yet I no more worry, destiny had something other stored for me.</p>\n<p>Despite all, I had kept myself engaged with particular computer science, technology and web. I had somehow managed to learn basic HTML, CSS and designing stuff. I had made contacts with a number of people mostly senior to me who worked with programming, blogging. And one of them has a great role in shaping me as a ‘programmer’. Simultaneously, I read a lot of articles, followed people who mastered in programming which all supported my ‘new dream’ to become a ‘Programmer’.</p>\n<p>As suggested by a friend of mine, I created my first blog in 2010 using Blogger platform. Later, I came to know that WordPress was a better platform with more possibilities and finally switched to WordPress 3.2 after a recommendation from one of my seniors. To my surprise, it was more wonderful than what I actually heard. I loved WordPress. Thereafter, I started tweaking designs and other aspects. Since then, I haven’t looked back.</p>\n<h3>My Contributions / Together with WordPress</h3>\n<p>Above all, the global community of WordPress has been a major inspiration for me. I am always grateful to the community and millions of WordPress lovers for the generous resources. I have also been actively contributing to the WordPress translation.</p>\n<p>Greatly benefited by the works of others, I always wanted to give back to the community. The same instinct led me to the person I am today. Literally, volunteering for making WordPress platform for everyone has given me all the honors including this (feature on HeroPress).</p>\n<p>In 2014, among various WordPress possibilities, WooCommerce is the one which intrigued me from the very beginning. With the growing eCommerce market, I knew that it was going to be a excellent piece of software in the future because of its incredible features. Using the plugin and analyzing it from the user’s perspective, I made numerous enhancements on WooCommerce.</p>\n<p>I introduced Nepali currency symbol in WooCommerce version 2.2.3 which proved to be a milestone in developing eCommerce in my country Nepal. Additionally, I developed a Nepali payment gateway WooCommerce eSewa plugin without any incentive. The best thing about this whole thing is that, I got great help to deal with product platform from amazing folks like Mike Jolley, Claudio Sanches and James Koster. During the period, I learned so much about WooCommerce and coding in general. Since then, I have been reporting several bugs/issues and enhanced the plugin with 200+ pull requests on WooCommerce Github repository. Moreover I have also contributed to Storefront theme.</p>\n<p>Since I was already technical bent, I learned about Vagrant for development environment. My first instinct was to use Varying Vagrant vagrants (VVV). But as a developer, I wanted more flexibility over the stack I used. So I started looking for alternative and found PuPHPet. For those who don’t know, PuPHPet is &#8211; “a simple Vagrant/Puppet GUI”. In order to make it more robust, I started contributing to this project and have also introduced WP-CLI support.</p>\n<p>Afterward, I started automating my development approach. Since there was no good grunt package available to compile PO to MO files, I developed grunt-potomo.</p>\n<h3>Earning my Living with WordPress</h3>\n<p>Desperate as I had dropped from college, I was quite doubtful if I would ever get any job. Web development was at its beginning stage (not established as a job), there was little hope but it proved to be an advantage for me. I got an opportunity to work as a web developer in RealTech Computer Institute which is the same institute where I had learnt hardware and programming. I worked on new and innovative eCommerce sites, finished numerous time sensitive projects, trained new developers in utilizing front-end frameworks like BootStrap, Foundation, jQuery etc.</p>\n<p>Later in 2015, I joined a growing team of ThemeGrill as Lead Plugin Developer. Together with ThemeGrill team, I have developed several WordPress plugins. To name a few, Social Icons, RestaurantPress, ThemeGrill Demo Importer are free WordPress plugins I have developed which are available in official WP plugin repository. Additionally, I have built several internal automated tools to improve overall customer support. I am also responsible for troubleshooting production issues, assisting WooCommerce, sales and performance monitoring.</p>\n<p>WordPress has made my life much easier!</p>\n<h3>WordPress Community in Pokhara</h3>\n<p>My hometown Pokhara is 6 to 8 hours of drive from the capital city Kathmandu. I along with few WordPress enthusiast friends used to travel all the way to Kathmandu just to attend WordCamp Kathmandu (formerly WordCamp Nepal). I was fascinated by the awesome presentations by developers and networking opportunities provided there. Within a year or so the number of WordPress lovers grew in Pokhara but we didn’t have any such event there yet.</p>\n<blockquote><p>In love with WordPress, I thought of organizing WordPress people in Pokhara under common umbrella &#8211; WordPress Pokhara.</p></blockquote>\n<p>By then, I created a Facebook group with some friends, who were involved in WordPress projects. We organized several WordPress meetups and talk about WordPress. The group has grown from 3-4 members to 1000 members in Facebook right now. Mostly I have seen students and professionals coming together and helping each other in projects. Since I am away from Pokhara, Yam B. chetri and team are involved to organize regular WordPress Pokhara meetups. Thanks to his helpful behaviour, we are rapidly growing.</p>\n<h3>Wrapping Up</h3>\n<p>Since I switched to WordPress, I have been working with a motive to program a better solution for users which is surely a challenging task. So I am taking every small step to climb the cliff and still doing homework to reach the right destination.</p>\n<p>To be frank, I don’t want to explore how business work and I am not made for it. But I am quite confident on the fact that I am good at understanding public-facing issues to tackle with a right solution.</p>\n<p>This is just an ordinary story like yours as I said in the beginning. And I repeat that I am no hero yet my journey may be somehow different from yours.</p>\n<p>Just write to me if you have anything to say. ☺</p>\n<p>And thanks to HeroPress and WordPress. Let’s keep rising high as Everest! Together!!</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: The Joy of Being with WordPress Community\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=The%20Joy%20of%20Being%20with%20WordPress%20Community&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fjoy-wordpress-community%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: The Joy of Being with WordPress Community\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fjoy-wordpress-community%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%2Fjoy-wordpress-community%2F&title=The+Joy+of+Being+with+WordPress+Community\" rel=\"nofollow\" target=\"_blank\" title=\"Share: The Joy of Being with WordPress Community\"></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/joy-wordpress-community/&media=https://heropress.com/wp-content/uploads/2017/02/020117-150x150.jpg&description=The Joy of Being with WordPress Community\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: The Joy of Being with WordPress Community\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/joy-wordpress-community/\" title=\"The Joy of Being with WordPress Community\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/joy-wordpress-community/\">The Joy of Being with WordPress Community</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 Feb 2017 12:00:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Shiva Poudel\";s: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:113:\"WPTavern: WordPress Telemetry Proposal Addresses Long-Standing Privacy Concerns as GDPR Compliance Deadline Looms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=64798\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://wptavern.com/wordpress-telemetry-proposal-addresses-long-standing-privacy-concerns-as-gdpr-compliance-deadline-looms\";s: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:14494:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2014/05/paper.jpg?ssl=1\"><img /></a></p>\n<p>At the end of October 2016, Morten Rand-Hendriksen created a <a href=\"https://core.trac.wordpress.org/ticket/38418\" target=\"_blank\">proposal on WordPress trac</a> for adding telemetry to core, an opt-in feature that would collect anonymized data on how people are using the software. He proposed that the new feature be displayed on first install or update, disabled by default in the admin with a control available under Settings->General. One option he suggests is shipping it as a plugin that auto-installs on opt-in and auto-uninstalls on opt-out. He also identified a few examples of core data that could be tracked, including number of themes and plugins installed, frequency of use of specific views (Settings, Customizer, etc), current version, update status, locale, and language.</p>\n<p>&#8220;WordPress prides itself on being an application built by the user for the user,&#8221; Rand-Hendriksen <a href=\"https://mor10.com/the-case-for-wordpress-telemetry/\" target=\"_blank\">said</a>. &#8220;The problem is with the popularity and reach of WordPress today, the distance between the WordPress 1% (or even .1%) and the average user is becoming so vast we (the people who contribute to WordPress core) know almost nothing about the actual people who use WordPress or how they use the application.&#8221;</p>\n<p>During the WordPress 4.7 development cycle, Rand-Hendriksen said he was involved in several conversations where participants assumed the use of features without any data to back up their opinions. He contends that WordPress contributors do not have the necessary data to know how users are interacting with the application and its features.</p>\n<p>&#8220;The general argument was that based on the 80/20 rule, certain features should be added while others should be removed,&#8221; Rand-Hendriksen said. &#8220;I kept brining up the well known fact we don’t have a clue what features 80%, or even 20%, of WordPress users actually use so any claim of validity in the 80/20 rule is guesswork at best.&#8221;</p>\n<p>His proposal states that all the data collected should be public for transparency and also made available to end-users in the admin and on WordPress.org.</p>\n<p>The idea has had a few months to marinate and has generated some discussion about what a prototype would entail. Core committer Ella Van Dorpe created an experimental <a href=\"https://github.com/iseulde/wp-data\" target=\"_blank\">wp-data</a> standalone plugin for tracking a few simple interactions with the editor. Participants in the discussion recommended creating an Elasticsearch/Logstash setup for storing the data, technologies that the WordPress.org systems team have deployed before.</p>\n<p>&#8220;I think a good summary is that there are a lot of hurdles in the way and currently no one has time to work on it,&#8221; Greg Brown, a Data Wrangler at Automattic, said in a followup <a href=\"https://core.trac.wordpress.org/ticket/38418#comment:5\" target=\"_blank\">discussion on the ticket</a> three weeks ago. &#8220;Ultimately, I think the biggest blocker is getting someone with the time, inclination, and persistence to work on this. Getting it deployed onto .org is the right thing to do eventually, but I suspect it will take quite a while.&#8221;</p>\n<p>WordPress lead developer Dion Hulse <a href=\"https://core.trac.wordpress.org/ticket/38418#comment:6\" target=\"_blank\">confirmed</a> that WordPress is already tracking many of these stats and that creating a prototype on WordPress.org infrastructure would be the best option forward.</p>\n<p>&#8220;It would also be valuable to see how our existing stats system can compliment or be replaced by the proposal here though,&#8221; Hulse said. &#8220;I mention this as most of the stats from the original description are already tracked, just not exposed in any form. The only new thing mentioned here is the Frequency of use of specific views (Settings, Customizer, etc) and transparency part (which would still probably only be anonymized summaries, not exact data).&#8221;</p>\n<h3>WordPress Telemetry Project Provides a Solution to Long-Standing Privacy Concerns</h3>\n<p>Moving WordPress&#8217; current data tracking into a more transparent opt-in feature would also provide a solution to some long-standing privacy concerns raised by contributors in <a href=\"https://core.trac.wordpress.org/ticket/16778\" target=\"_blank\">a six-year-old trac ticket</a>. WordPress tracks the number of blogs and users in a given installation, along with the installation URL in the headers, in order to <a href=\"https://core.trac.wordpress.org/ticket/16778#comment:67\" target=\"_blank\">facilitate update requests</a> that may become problematic, particularly in the case of large multisite installations.</p>\n<p>&#8220;Even if a user knows that some data needs to be passed for a version check of core, plugins, or themes, the amount of data passed to remote is obviously more than needed to do the version check,&#8221; one contributor <a href=\"https://core.trac.wordpress.org/ticket/16778#comment:14\" target=\"_blank\">commented</a> on the ticket. &#8220;But users should be made aware upfront so they can freely decide on their own if they want to instead of being forced to support the project with their usage-data. They could be offered an opt-in to do so.&#8221;</p>\n<p>&#8220;The number of registered users I have on my site tied to the URL that is sent with tracking request gives out vital information on how well my business could be doing &#8211; information that is mine and mine only,&#8221; WordPress plugin developer Danny van Kooten said. &#8220;At the very least we could make it very clear that WordPress is tracking this information and what exactly it is doing with it. I really do not think there is any excuse for that.&#8221;</p>\n<p>Developers can filter the data to satisfy their privacy concerns but it is somewhat inextricable from the update process for larger multisite installations. It&#8217;s also too big of a technical hurdle for most regular users who would be better served by a simple UI allowing them to opt out of data collection.</p>\n<p>Rand-Hendriksen&#8217;s WordPress telemetry proposal gives the project an opportunity to formalize what data is being collected, state the purpose behind it, and allow users to choose if they want to be included.</p>\n<h3>Europe&#8217;s General Data Protection Regulation (GDPR) May Push WordPress Towards More Transparent Data Collection</h3>\n<p>Progress on both the Telemetry project and the ticket regarding privacy concerns has been slow. Neither seem to be a priority among contributors, but Europe&#8217;s <a href=\"http://eur-lex.europa.eu/legal-content/EN/TXT/?uri=OJ%3AL%3A2016%3A119%3ATOC\" target=\"_blank\">General Data Protection Regulation</a> (GDPR) may provide the impetus needed to push WordPress towards more transparent and responsible data collection.</p>\n<p>The GDPR is an overhaul of data protection law in Europe with far more stringent requirements than the previous laws. It requires full disclosure for any data collection and standardized privacy notices to help users understand where and how the data is being used. Consent to have data collected must be confirmed and users have the right to access their own data. It also includes the right of erasure or &#8220;the right to be forgotten,&#8221; which allows users to remove their data from the web. The GDPR goes into effect in May 2018.</p>\n<p><a href=\"https://webdevlaw.uk/\" target=\"_blank\">Heather Burns</a>, a digital law specialist who consults and speaks extensively on internet laws and policies, encouraged WordPress contributors to frame the discussion regarding privacy concerns in terms of working towards compliance with a specific framework.</p>\n<p>&#8220;For the purposes of this discussion, core should work to the GDPR standard for two reasons,&#8221; Burns said. &#8220;The first reason lies in cultural differences. The US does not have a single overarching data protection and privacy regulation, unlike Europe, where we have this data protection regime which applies to all personal data regardless of use, format, or sector. So GDPR gives developers &#8211; even those outside the EU &#8211; a robust, healthy, and very tough set of standards to follow. Given what we have seen coming out of the White House in the past week, GDPR also provides as good a starting point as any for defensive user protection.</p>\n<p>&#8220;The second is that GDPR is extraterritorial. It applies to the personal data of anyone in Europe regardless of where the online service is located. If your business is in the US or Australia or Israel but you have European users, you have to protect their data to European GDPR standards.&#8221;</p>\n<p>Pricewaterhouse Coopers recently surveyed 200 US-based multinational companies with more than 500 employees and found that <a href=\"https://www.pwc.com/us/en/increasing-it-effectiveness/publications/assets/pwc-gdpr-series-pulse-survey.pdf\" target=\"_blank\">77% plan to spend $1 million or more on GDPR compliance</a>. More than half of those surveyed cited GDPR readiness as the highest priority on their data-privacy and security agendas.</p>\n<p>The hefty penalties of noncompliance are one of the driving factors behind American companies spending millions of dollars on satisfying the requirements of this new European regulation.</p>\n<p>&#8220;GDPR is a complete overhaul of its dialup-era (1995) predecessor and one of the areas that has been beefed up is its teeth,&#8221; Burns said. &#8220;Businesses which are found to be in noncompliance by a European member state&#8217;s data protection regulator, whether that is your small app studio all the way up to Automattic, could face penalties of up to 4% of the business&#8217;s global annual turnover. Now there’s some solid context for the philosophical discussion.&#8221;</p>\n<p>However, not everyone is convinced that the GDPR will be beneficial to consumers. Kitty Kolding, CEO and president of <a href=\"http://www.infocore.com/\" target=\"_blank\">Infocore Inc</a>, an international company that specializes in sourcing market data, told <a href=\"https://www.exchangewire.com/blog/2016/07/07/an-american-perspective-the-three-worst-things-about-the-eu-gdpr/\" target=\"_blank\">ExchangeWire</a> that she believes the GDPR will undermine &#8220;the sanctity of consumers&#8217; data privacy and security&#8221; and hobble marketing and advertising worldwide.</p>\n<p>She contends that provisions like the &#8220;right to be forgotten,&#8221; which require customer data to be retained beyond the time that it&#8217;s in active use, will make that data more susceptible to hacking. Additionally, the enforcement body for the new legislation claims authority over companies, with the right to search and seize records, without any oversight or appeals.</p>\n<p>&#8220;Every company everywhere that handles data on EU citizens is also automatically subject to this group’s absolute power – though it’s anybody’s guess how the EU believes they can enforce such a broad mandate outside its own borders,&#8221; Kolding said.</p>\n<p>Currently, only two trac tickets <a href=\"https://core.trac.wordpress.org/search?q=GDPR\" target=\"_blank\">mention the GDPR</a> so it&#8217;s not yet clear how WordPress core will respond to the requirements of the new legislation. Burns recommends that WordPress core contributors go through the process of conducting a <a href=\"https://ico.org.uk/for-organisations/guide-to-data-protection/privacy-by-design/\" target=\"_blank\">privacy impact assessment</a> to determine the right way forward.</p>\n<p>Regardless of WordPress&#8217; response, companies and organizations that depend on the software  will need to assume the responsibility of their own compliance, as these requirements extend far beyond core. The GDPR applies to anything added into a website or app that collects users&#8217; data. For example, many contact form plugins store submissions inside the WordPress database and site owners will want to re-examine how users are notified of this.</p>\n<p>&#8220;One of the main changes with GDPR is called the accountability principle,&#8221; Burns said. &#8220;Businesses collecting personal data must be completely transparent and accountable over what data they are collecting, how they are storing it and where, who it is being passed to (such as third parties), who has access to it, and how long it is retained. Users also have the right to request that any data collected about them must be deleted.&#8221;</p>\n<p>There&#8217;s no WordPress plugin that will instantly make a site GDPR compatible. Drupal has a <a href=\"https://www.drupal.org/project/gdpr\" target=\"_blank\">GDPR module</a> that aims to make sure the site follows the guidelines and legislation set by the EU, but it doesn&#8217;t cover all requirements. Automating an assessment of privacy impact for a site using a CMS and potentially dozens of third-party extensions is a complex endeavor. This is one regulation that will require business owners to educate themselves and implement privacy practices that put users&#8217; interests first.</p>\n<p>With the deadline for compliance closing in, WordPress has an opportunity to re-evaluate how the project handles user privacy and make steps towards greater transparency. If contributors are looking into collecting more data to assist decision-making on features, as outlined in Rand-Hendriksen&#8217;s telemetry proposal, this project provides an avenue for working towards GDPR compliance. These privacy concerns are especially important to address when considering WordPress for government, healthcare, educational institutes, and other data sensitive websites.</p>\n<p>Burns views the GDPR&#8217;s compliance deadline as a fresh opportunity for WordPress to build better privacy structures and legal certainty using the regulation as a healthy baseline for all users.</p>\n<p>&#8220;Everyone needs to be working in implementations for their own businesses and sites in any case ahead of deadline day, in addition to any changes that need to be made in the WP code,&#8221; Burns said. &#8220;It&#8217;s important to remember that GDPR compliance is not a tick box you can squeeze in next April. This is about your processes, your workflows, and your systems of accountability. Start now.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Feb 2017 00:10: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: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: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:75:\"WPTavern: Logging Into WooCommerce.com Now Requires a WordPress.com Account\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65488\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/logging-into-woocommerce-com-now-requires-a-wordpress-com-account\";s: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:5935:\"<p>If you logged into <a href=\"https://woocommerce.com/\">WooCommerce.com</a> over the weekend, you may have noticed a distinct change. In order to sign into the site, users are now <a href=\"https://public-api.wordpress.com/oauth2/authorize?response_type=code&client_id=50916&state=26cc0ecf5f249227f5566d9b1bc392db&redirect_uri=https%3A%2F%2Fwoocommerce.com%2Fwc-api%2Fwpcom-signin%3Fnext%3Dmyaccount&blog_id=0&wpcom_connect=1&new-user=1\">required</a> to have a WordPress.com account. The change occurred without warning and surprised those who manage multiple WooCommerce stores for clients.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/WooCommerceWPComLoginScreen.png?ssl=1\"><img /></a>WooCommerce Login Screen Requiring a WP.com Account\n<p><a href=\"https://twitter.com/bradkgriffin?lang=en\">Brad Griffin</a>, who maintains a number of client sites that run WooCommerce, raised concerns over the change <a href=\"https://www.facebook.com/groups/advancedwp/permalink/1388565454538998/\">in a post</a> on the Advanced WordPress Facebook group.</p>\n<p>&#8220;When dealing with businesses, asking someone at a corporate level to take their email address and make a WordPress.com account is a bit problematic,&#8221; Griffin said. &#8220;They&#8217;re confused as to why they need to do this. They don&#8217;t have immediate access to that email address on a Saturday or Sunday.&#8221;</p>\n<p>&#8220;So, without warning, without notice, without a heads up or anything else, no one can now access anything in the back-end of the WooCommerce account unless there is a WP.com single sign on account using oAuth.&#8221;</p>\n<p>For those not interested in signing in with their WordPress.com account, WooCommerce.com attempts to alleviate concerns <a href=\"https://woocommerce.com/signin-with-wordpress/not-interested/\">in an article</a> that outlines the benefits. The benefits include an option to enable 2-Factor Authentication, access to eCommerce services, and viewing purchase history.</p>\n<p>After speaking to Todd Wilkens, Head of WooCommerce at Automattic, Griffin published <a href=\"https://www.youtube.com/watch?v=VXfugcpuD4Y\">video</a>, explaining the change and offers suggestions for those who manage multiple WooCommerce stores for clients. The suggestions are:</p>\n<ul>\n<li>Make 100% sure that you, your client, your store, your account, or anything else has a WordPress.COM account ~ not just WordPress.org!</li>\n<li>Once you&#8217;ve used an email and login and you are setup for WordPress.COM (not .org), make absolutely certain that you are using an incognito browser window when logging into WooCommerce.com.</li>\n</ul>\n<p>Using a private or incognito browser window won&#8217;t remember the login as the cookie is not saved. If you don&#8217;t use incognito mode and like, comment, or subscribe to items on WordPress.com or any site that uses <a href=\"https://developer.wordpress.com/docs/oauth2/\">WordPress.com&#8217;s oAuth protocol</a>, those actions will occur under the client&#8217;s account. &#8220;<span class=\"_5yl5\">Many users might not fully realize how far-reaching that one little oAuth endpoint <strong>actually is</strong> and the vastly significant number of touch-points it can affect,&#8221; Griffin said. </span></p>\n<p>Wilkens <a href=\"https://woocommerce.com/2017/01/woocommerce-requires-wordpress-account/\">published a post</a> on the official WooCommerce blog explaining why the login system was switched, &#8220;We found that a lot of customers were using <i>two accounts</i> to access services from <i>one</i> company,&#8221; he said.</p>\n<p>&#8220;To simplify that, we are centralizing on the WordPress.com login. Automattic has done this with previous acquisitions, like Polldaddy, for the same reasons. Now you can use only one login to access all Automattic services, including WooCommerce, Jetpack, VaultPress and more.&#8221;</p>\n<p>So far, the WooCommerce team has tracked more than 10K successful logins to the new system and are monitoring feedback on social media. Only a small subset of users have reported issues due to confusion, &#8220;Over half of the 1% of users who opened tickets were confused between having a WordPress.com login vs. the login they use for their self-hosted WordPress install,&#8221; Wilkens said.</p>\n<h2>A Better Way to Manage Multiple Client Accounts Is in the Works</h2>\n<p>WooCommerce.com joins a growing collection of Automattic services, sites, and products that require a WordPress.com user account. As the number of reasons to have an account increases, perhaps it&#8217;s time for Automattic to create a client management system. A system that allows users to assign people who can act on their behalf, similar to a <a href=\"https://en.wikipedia.org/wiki/Power_of_attorney\">power of attorney</a>.</p>\n<p>An example that comes to mind is <a href=\"https://www.godaddy.com/pro#reduce\">GoDaddy Pro</a>. GoDaddy Pro allows consultants to access all of their client&#8217;s products in one place. They can also manage aspects of their hosting and purchase products on their behalf.</p>\n<p>The change to WooCommerce.com has emphasized the unfriendliness of the site&#8217;s current system for those who manage multiple client accounts. &#8220;We had already re-prioritized a number of features on our roadmap to make life for developers managing dozens of client accounts much smoother, and hope to have something to be able to announce there soon,&#8221; Wilkens said.</p>\n<p>If you manage multiple client accounts and are affected by this change, Wilkens suggests <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">opening a ticket</a> for advice. You can also provide feedback by voting on a poll at the <a href=\"https://woocommerce.com/2017/01/woocommerce-requires-wordpress-account/\">bottom of the post</a> that asks how your experience was switching to a WordPress.com login.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 31 Jan 2017 20: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: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:90:\"WPTavern: Micro.blog Project Surges Past $65K on Kickstarter, Gains Backing from DreamHost\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65437\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wptavern.com/micro-blog-project-surges-past-65k-on-kickstarter-gains-backing-from-dreamhost\";s: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:9480:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/01/micro-blog-logo.png?ssl=1\"><img /></a></p>\n<p>With one week remaining on its Kickstarter campaign, the <a href=\"https://wptavern.com/micro-blog-surpasses-kickstarter-funding-goal-set-to-launch-new-social-network-for-independent-microblogs\" target=\"_blank\">Micro.blog indie microblogging project</a> has surged past its original $10K funding goal with $66,710 pledged by 2,381 backers. This puts project creator Manton Reece closer to his <a href=\"https://www.kickstarter.com/projects/manton/indie-microblogging-owning-your-short-form-writing/posts/1785295\" target=\"_blank\">stretch goal of $80K</a>, which would enable him to develop a Safe Replies feature to preemptively combat abuse on the platform and hire a part-time community manager.</p>\n<p>Micro.blog also <a href=\"https://www.dreamhost.com/blog/2017/01/24/pitching-support-open-web/\" target=\"_blank\">picked up support from DreamHost</a> this week, pushing the project past the $50K mark. The hosting company pledged $5,000 towards the campaign.</p>\n<p>&#8220;What ever happened to the vision of the open web as a distributed network of websites that were owned by their creators?&#8221; said Jonathan LaCour, SVP of Product and Technology at DreamHost. &#8220;We’d like to make it as easy as possible to launch a WordPress-powered microblog on DreamHost that integrates well with Manton’s upcoming Micro.blog service.&#8221;</p>\n<p>DreamHost (and all other hosting companies) obviously have a vested interest in getting people to see the need to have their own digital presence. However, the biggest obstacle for WordPress customers is making it convenient to join the IndieWeb. DreamHost is planning to take its support of Micro.blog one step further and create an easy way for customers to get started with independent microblogs.</p>\n<p>&#8220;As a followup to our contribution to Manton&#8217;s Kickstarter campaign, we&#8217;re planning on working on making a streamlined, pre-configured Indie microblog with WordPress at DreamHost,&#8221; LaCour said in the <a href=\"https://chat.indieweb.org/2017-01-25#bottom\" target=\"_blank\">#indieweb</a> channel on IRC yesterday. &#8220;I tend to agree that a simplified, pre-packaged WordPress setup would go a long way to driving Indieweb adoption.&#8221;</p>\n<p>When asked whether the company would be utilizing Micro.blog or some other service, LaCour said it has not been decided yet. He said the idea is that people could create an independent microblog hosted at DreamHost that is compatible with Micro.blog and other indie microblogs.</p>\n<p>&#8220;Our major focus at the moment is getting people excited about owning their own website (and entire digital identity),&#8221; LaCour said.</p>\n<h3>Micro.blog is Aiming for Incremental Webmention Support</h3>\n<p><a href=\"https://webmention.net/draft/\" target=\"_blank\">Webmention</a> is a protocol similar to pingback for notifying a URL when a website links to it and also for requesting notifications when another site mentions one of your URLs. It is an important part of facilitating decentralized communication across the web. On January 12, 2017, the <a href=\"https://www.w3.org/Social/WG\" target=\"_blank\">Social Web Working Group</a> published a <a href=\"https://www.w3.org/TR/2017/REC-webmention-20170112/#w3c-recommendation-12-january-2017\" target=\"_blank\">W3C Recommendation of Webmention</a> with the specification contributed by the <a href=\"https://indieweb.org/\" target=\"_blank\">IndieWeb</a> community.</p>\n<p>WordPress doesn&#8217;t natively offer <a href=\"https://webmention.net/draft/\" target=\"_blank\">Webmention</a> support and the core trac <a href=\"https://core.trac.wordpress.org/ticket/35435\" target=\"_blank\">ticket</a> for adding the feature has had little discussion.</p>\n<p>During a preliminary <a href=\"https://wordpress.slack.com/archives/core/p1452663582010063\" target=\"_blank\">discussion on Slack</a> last year, WordPress lead developer Dion Hulse said he thought Webmentions would be a great feature plugin and that there are a few people interested in it. There hasn&#8217;t been much movement on this front in core, but a <a href=\"https://wordpress.org/plugins/webmention/\" target=\"_blank\">Webmention plugin</a> is available in the directory.</p>\n<p>Reece is working on incorporating IndieWeb protocols into Micro.blog but said it will likely launch with incremental support for Webmention.</p>\n<p>&#8220;It might take a little while to get everything IndieWeb in there, but that&#8217;s the eventual goal,&#8221; Reece <a href=\"https://chat.indieweb.org/2017-01-25#t1485379721875000\" target=\"_blank\">said</a>. &#8220;I&#8217;m committed to Micropub and microformats and still exploring how best to support Webmention. (It might be partial support with more later.)&#8221;</p>\n<p>Micro.blog doesn&#8217;t currently handle mentions and replies using Webmention but Reece said his eventual goal is to include it.</p>\n<p>&#8220;The first step to me is getting more people their own microblog so that the infrastructure for cross-site replies is even possible,&#8221; Reece said.</p>\n<h3>Micro.blog Puts the Focus on Indie Microblogging, Instead of Replacing Twitter</h3>\n<p>Reece also <a href=\"http://www.manton.org/2017/01/microblogging-community-on-slack.html\" target=\"_blank\">launched a Slack community</a> where the project&#8217;s backers can discuss Micro.blog and other microblogging topics. He said he initially had reservations with starting something on Slack but was surprised to see the community has already grown to more than 300 members.</p>\n<p>&#8220;I didn’t want to distract from any posts that should happen in the open on blogs,&#8221; Reece said. &#8220;Some discussion just fits better in chat, though. There’s an emerging community of indie microbloggers. Having a place to share tips, tools, and ask questions about Micro.blog just makes sense.&#8221;</p>\n<p>Many of the project&#8217;s backers are eager to create a community of their own and are interested in using Micro.blog as a Twitter replacement. Other services have attempted to provide alternatives to posting directly on Twitter but none have caught on enough to significantly push IndieWeb adoption forward. <a href=\"http://app.net\" target=\"_blank\">App.net</a>, one of the most promising ad-free, microblogging networks, went into maintenance mode in 2014 and will be shutting down March 15, 2017.</p>\n<p>Reece, who was an early fan of App.net, <a href=\"http://www.manton.org/2017/01/thank-you-to-app-net.html\" target=\"_blank\">published a thank you note</a> to the service&#8217;s creators for trying something risky and creating a community around their ideas. He believes it&#8217;s the right time for another open platform to emerge.</p>\n<p>&#8220;We don’t need just another Twitter or Facebook clone,&#8221; Reece said. &#8220;We need a new platform that encourages blogging on the open web.&#8221;</p>\n<p>Nevertheless, Reece is preparing Micro.blog from the outset to be capable of replacing Twitter&#8217;s functionality, which is one of the reasons he is focusing so heavily on ensuring the platform <a href=\"https://twitter.com/manton2/status/821084145782759425\" target=\"_blank\">doesn&#8217;t get overrun with abuse</a>. Reece wants to avoid the pitfalls that have contributed to some of the more negative aspects of Twitter, but his focus is on encouraging people to blog from their own space.</p>\n<p>&#8220;Micro.blog is a success if more people blog,&#8221; Reece <a href=\"https://twitter.com/manton2/status/820372146375524359\" target=\"_blank\">said</a>. &#8220;To provide value it doesn’t need to replace Twitter, but it can.&#8221;</p>\n<p>The project&#8217;s mobile app is key to making it convenient for users to read other people&#8217;s posts and post directly to their own websites from the same interface. Reece shared another <a href=\"https://www.kickstarter.com/projects/manton/indie-microblogging-owning-your-short-form-writing/posts/1783438\" target=\"_blank\">preview of the iPhone and iPad app</a> that will be ready at launch and said he hopes there will be other apps developed by the community.</p>\n<p>&#8220;Most RSS traditional readers can&#8217;t post,&#8221; Reece said. &#8220;I think this makes for a more complete experience, and because it&#8217;s just a blog I can still use other apps and platforms to post.&#8221; He plans to give Micro.blog a 280 character limit before truncating the post.</p>\n<p>Keeping the timeline fast and making posting convenient will be critical to the platform&#8217;s success as an alternative to the dominant social media silos. Polling blogs for new content is not very aggressive in the current prototype but Reece is tuning this to provide a better experience. The platform uses rssCloud and WebSub (formerly PubSubHubbub) to provide a more Twitter-like, real-time experience.</p>\n<p>Micro.blog seems to be landing at the right time, as the idea has already resonated with more than 2,300 people willing to back the project. The service hasn&#8217;t even launched but the concept behind it is already attracting a supportive community eager to explore better ways of powering microblogging on the web.</p>\n<p>&#8220;You don’t replace Twitter overnight, or even try to,&#8221; Reece said. &#8220;But step by step, we’re going to end up with a better web, and I think independent microblogging is part of that.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Jan 2017 22:56:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:42:\"Dev Blog: WordPress 4.7.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4676\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2017/01/wordpress-4-7-2-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2141:\"<p>WordPress 4.7.2 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.1 and earlier are affected by three security issues:</p>\n<ol>\n<li>The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. Reported by David Herrera of <a href=\"https://www.alleyinteractive.com/\">Alley Interactive</a>.</li>\n<li><code>WP_Query</code> is vulnerable to a SQL injection (SQLi) when passing unsafe data. WordPress core is not directly vulnerable to this issue, but we&#8217;ve added hardening to prevent plugins and themes from accidentally causing a vulnerability. Reported by <a href=\"https://github.com/mjangda\">Mo Jangda</a> (batmoo).</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the posts list table. Reported by <a href=\"https://iandunn.name/\">Ian Dunn</a> of the WordPress Security Team.</li>\n<li>An unauthenticated privilege escalation vulnerability was discovered in a REST API endpoint. Reported by <a href=\"https://twitter.com/MarcS0h\">Marc-Alexandre Montpas</a> of Sucuri Security. *</li>\n</ol>\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.2</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.2.</p>\n<p>Thanks to everyone who contributed to 4.7.2.</p>\n<p>* Update: An additional serious vulnerability was fixed in this release and public disclosure was delayed. For more information on this vulnerability, additional mitigation steps taken, and an explanation for why disclosure was delayed, please read <a href=\"https://make.wordpress.org/core/2017/02/01/disclosure-of-additional-security-fix-in-wordpress-4-7-2/\">Disclosure of Additional Security Fix in WordPress 4.7.2</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Jan 2017 19:34:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:\"\";}}}}}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:68:\"HeroPress: Screw the Blueprint. Design Your Own Path to Fulfillment.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1579\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://heropress.com/essays/screw-blueprint-live-life-terms/\";s: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:9274:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/01/012517-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I wasn\'t following the blueprint, but I was having success and felt secure in the ways that mattered to me.\" /><p>Growing up, I bought into society’s notion of what made for a successful and rewarding life. For me, the blueprint for finding fulfillment looked something like this:</p>\n<p>Step 1. Get good grades in school.</p>\n<p>Step 2. Attend a nice college.</p>\n<p>Step 3. Land a secure job with an attractive salary and benefits.</p>\n<p>Step 4. Find a nice man that would make a good husband and father…and marry him.</p>\n<p>Step 5. Have children.</p>\n<p>Step 6. Die peacefully at an old age. (ha!)</p>\n<p>I was convinced that if I simply followed this blueprint, I’d find security and acceptance. And with the exception of Step #6 (a step I’m hoping to postpone for some time), I was able to accomplish everything I’d set out to do. My grades in school were outstanding, which set me up to pursue a degree in mechanical engineering at the University of Illinois. After graduating in 2000, I was presented with several job opportunities. Ultimately, I accepted a position at Procter &amp; Gamble as an engineer for Charmin. Within a year of starting that job, I met my future husband. We married in 2004 and had our first child in 2007. Another child followed in 2008. I was right on track with my blueprint!</p>\n<p>And then everything fell apart.</p>\n<h2><strong>A breakdown wasn’t in the plan</strong></h2>\n<p>In 2008, I suffered my first real breakdown. I spent several weeks doing my best to get through each day, doing what I needed to as an employee, wife, and mom and trying hard not to let other people down. I fought back tears when I needed to, only letting them flow in private. While the kids were sleeping, I’d escape into the world of TV sitcoms. I knew that something wasn’t right.</p>\n<p>While I had followed the blueprint for security, success, and happiness, I didn’t feel like I had achieved any of these things. I felt isolated at work. At home, I felt valued only if I were functioning as the perfect wife and mom. At the time, the solution seemed clear—quit my corporate job and focus 100% on my family. This, I was certain, would lead to ultimate happiness. So I took two extended maternity leaves, eventually leaving the corporate world to focus on being a stay-at-home mom.</p>\n<h2><strong>Who the hell am I?</strong></h2>\n<p>Being home with kids full-time, no matter how wonderful your kids may be, is by far the most challenging job. While I was grateful that I had the choice to be a stay-at-home-mom, being at home left me feeling alienated. I didn’t really know who I was anymore or how to get back to “myself.”</p>\n<p>So I started experimenting with things I simply felt like doing. These things weren’t part of any blueprint, and there was no guarantee of success or happiness. I just followed my heart.</p>\n<p>I needed something challenging to occupy my mind, so I dug out my sports card collection with the intent of finally organizing it. Looking through my old cards felt both nostalgic and therapeutic, and my head started spinning with other ideas. Business ideas. My dad had a successful e-bay business that seemed like a bit of fun, so I thought: <em>why not try selling sports cards on e-bay?</em> I didn’t want to sacrifice my personal collection, so over the course of a few months, I purchased nearly a million sports cards on Craigslist. After repackaging them into 1000-count boxes, I sold them for $10/box, doubling my money in a short period of time. I learned a lot about buying and selling on the Internet but more importantly, I felt like I had discovered something that was really “me.” It was challenging in a new and exciting way, and it fit in with my hectic mom schedule.</p>\n<p>This venture into the world of online business opened my eyes in a significant way. I started following entrepreneurs such as Gary Vaynerchuk and Chris Brogan, and flew to Houston for a Mom 2.0 Summit. I loved every blog post I read and all the people I was meeting. It was a whole new world filled with risk and uncertainty but grounded in the values of helping people and living a good life. THIS WAS PERFECT FOR ME.</p>\n<h2><strong>And then came WordPress</strong></h2>\n<p>In my newfound fascination with all things Internet-related, it wasn’t surprising that I stumbled upon this thing called WordPress. I had always wanted to build a website, and with the popularity of mom bloggers exploding, I naturally gravitated toward this “easy” platform for my blog. I started the ChicagoActons blog as a way to share our family adventures with others. Building the site was something I enjoyed more than I anticipated. It fed my love of problem solving and I felt great satisfaction in seeing something that I built on the Internet. And I could do it in between changing dirty diapers and cuddling with my kids.</p>\n<p>After building ChicagoActons and sharing it via social channels, I started to get requests to build sites for others. Some were paid assignments and some were not, but I was falling in love with using this tool and my brain to help others further efforts they were passionate about. I was finding myself again, and I felt happy.</p>\n<h2><strong>Where were WordCamps all my life?</strong></h2>\n<p>By 2010, two years into freelance WordPress development, I was ready to expand my horizons and see what others were doing with the platform. I heard about WordCamp Chicago, and bought a ticket to the event that would confirm that the path I was paving was the right one for me.</p>\n<p>At WordCamp Chicago 2010, I learned a great deal about developing with WordPress, but even more life changing were the people I met. They were such a diverse group and so different than I was, yet we all shared the same passion: to support one another in our pursuits to help others. And we all used WordPress as the tool to get the job done.</p>\n<p>The feeling of acceptance and growth that I experienced at my first WordCamp was the impetus I needed to continue down the path as a WordPress-based business entrepreneur. I wasn’t following a blueprint anymore, but I was finding success and security in ways that mattered to me.</p>\n<p>I was happy.</p>\n<h2><strong>Living my own blueprint</strong></h2>\n<p>Fast-forward to today. I couldn’t be more thankful for the life journey I’m on. My kids survived having me as a stay-at-home parent, and as a WordPress-based business entrepreneur, I feel challenged every day to be better at helping others build their passion-driven interests. I would not have gotten here had it not been for WordPress and the WordPress community, which emboldened me to abandon a blueprint for happiness that simply wasn’t working for me and instead embrace life on my own terms.</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: Screw the Blueprint. Design Your Own Path to Fulfillment.\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Screw%20the%20Blueprint.%20Design%20Your%20Own%20Path%20to%20Fulfillment.&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fscrew-blueprint-live-life-terms%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Screw the Blueprint. Design Your Own Path to Fulfillment.\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fscrew-blueprint-live-life-terms%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%2Fscrew-blueprint-live-life-terms%2F&title=Screw+the+Blueprint.+Design+Your+Own+Path+to+Fulfillment.\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Screw the Blueprint. Design Your Own Path to Fulfillment.\"></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/screw-blueprint-live-life-terms/&media=https://heropress.com/wp-content/uploads/2017/01/012517-150x150.jpg&description=Screw the Blueprint. Design Your Own Path to Fulfillment.\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Screw the Blueprint. Design Your Own Path to Fulfillment.\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/screw-blueprint-live-life-terms/\" title=\"Screw the Blueprint. Design Your Own Path to Fulfillment.\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/screw-blueprint-live-life-terms/\">Screw the Blueprint. Design Your Own Path to Fulfillment.</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 Jan 2017 12:00:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Heather Acton\";s: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:68:\"WPTavern: WordCamp Europe 2017 to Experiment with Sponsors Workshops\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65117\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordcamp-europe-2017-to-experiment-with-sponsors-workshops\";s: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:12145:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/wordcamp-europe-2017.png?ssl=1\"><img /></a></p>\n<p>WordCamp Europe 2017 <a href=\"https://2017.europe.wordcamp.org/2016/12/29/wordcamp-europe-2017-call-for-sponsors-is-now-open-wceu/\" target=\"_blank\">opened its call for sponsors</a> at the end of 2016. The organizing team is embracing the challenge of delivering value to sponsors with workshops for those purchasing the two highest sponsorship levels:</p>\n<blockquote><p>This year, for the first time, we are introducing a third track during both conference days. The third track will be solely dedicated to sponsors, giving you the possibility to either hold a talk or a workshop. Like the other two tracks, the sponsor track will have a dedicated space (capacity for approx. 200 people), where the audience would have the opportunity to hear more about your business and product. You can decide whether you would like to use your time to talk more about your business, or to showcase.</p></blockquote>\n<p>The sponsors track has since been renamed to sponsors workshops, but the concept of a dedicated track remains the same. According to WCEU Sponsors Team coordinator Noel Tock, WordCamp Central&#8217;s transition into a public benefet corporation affords WordCamps more flexibility than previously allowed.</p>\n<p>&#8220;This means we’d like to experiment with different concepts — seeking a higher return on investment for sponsors whilst at the same time protecting the core experience of the WordCamp itself,&#8221; Tock said.</p>\n<p>The new sponsors workshops target large companies, but WCEU organizers have also created a new concept for small businesses. Those that made less than one million Euro in 2016 will qualify for an affordable booth in the middle of the event.</p>\n<p>&#8220;Similar to TechCrunch’s Startup Alley, we want to help highlight smaller companies or ones that have just started out,&#8221; Tock said. &#8220;Simply seeking out sponsorship funds the fastest way possible would not be fair to attendees. This helps makes the conversations and experiences a lot more diverse and balanced.&#8221;</p>\n<p>The sponsors workshops will not need to go through an approval process. They are perks belonging to the Super Admin and Admin sponsorship tiers and these top-level sponsors will have different options for how they want to use their slots.</p>\n<p>&#8220;They can run user workshops, pass on their slot to smaller players (plugin and theme authors) or find other creative session ideas,&#8221; Tock said. &#8220;The workshops will be clearly labeled and we’ll seek to provide an agenda/schedule on the same timeline as regular speakers.&#8221;</p>\n<h3>The Challenge of Delivering Value to Sponsors Without Stifling the Spirit of WordCamps</h3>\n<p>WordCamps are traditionally locally-organized, informal events that bring together attendees from all walks of life. Affordability is one of the hallmarks of a WordCamp, and ticket prices normally range from $20-50. The low cost of entry makes the events more inclusive, keeping the camps from becoming relegated only to elites and those who work for large companies. At a WordCamp, one can meet anyone &#8211; core developers, educators, CEOs of multi-million dollar companies, new users, developers, bloggers, and e-commerce store owners.</p>\n<p>To give you an idea of how uncommonly low WordCamp ticket prices are in comparison to other tech conferences, DrupalCon ranges from $450-600 per person. PHP UK tickets for the conference days are in the neighborhood of $500 and <a href=\"https://world.phparch.com/\" target=\"_blank\">PHP[World]</a> is nearly double that at $900. <a href=\"http://blog.cssconf.eu/2016/12/07/cssconfeu-tickets-2017/\" target=\"_blank\">CSSconf EU</a> tickets are $430. <a href=\"https://www.react-europe.org/#tickets\" target=\"_blank\">ReactEurope</a>, which is also being held in Paris, released its first round of tickets in the range of $680. WordCamp Europe <a href=\"https://2017.europe.wordcamp.org/tickets/\" target=\"_blank\">tickets</a> are €40.00 (approximately $43) because the vast majority of the cost of attendance is subsidized by sponsors.</p>\n<p>Now that WordCamp Europe has been running successfully for five years, Tock said it is easier to get sponsors on board. Sponsorship cost per attendee is one of the contributing factors. In 2016 WordCamp Europe sold 2,199 tickets and organizers expect to sell more than 3,000 this year.</p>\n<p>&#8220;If you compare the perks and size of the audience, you’ll find that WordCamp Europe can be anywhere from 20% to 50% cheaper then comparable WordCamps,&#8221; Tock said. &#8220;The bang for buck has meant we have a lot of returning sponsors.&#8221;</p>\n<p>However, as WCEU attendance and the event&#8217;s financial requirements have grown, so has the challenge to deliver value to sponsors who are contributing greater sums of money.</p>\n<p>&#8220;Asking potential sponsors for a few thousand a couple years back was easy enough,&#8221; Tock said. &#8220;Now that we’re looking for 50k+ Euros from certain sponsors, we need to up our game with it. This means early communication, well-defined packages, and more creative perks.&#8221; This year those perks include 360° booths, 30-second ads between talks, after-party branding, and the new sponsor workshops.</p>\n<p>I spoke to several other organizers of comparably large WordCamps and all of them were intrigued by the idea of sponsor workshops and interested to see how the experiment turns out.</p>\n<p>&#8220;I think on the surface it could be considered a controversial idea, but in reality it&#8217;s just giving sponsors a different kind of voice,&#8221; WordCamp Miami organizer David Bisset said. &#8220;If it&#8217;s done in a way that treats all sponsors fairly and is a voluntary track, then in some ways it doesn&#8217;t differ from a sponsor area, outside of narrowing the spotlight.&#8221;</p>\n<p>Bisset said he&#8217;s interested to see how successful this approach is but notes that it probably would only work for the largest WordCamps.</p>\n<p>&#8220;I honestly don&#8217;t know which side of the fence this lies on in regards the spirit of WordCamps,&#8221; Bisset said. &#8220;There have been controversial issues and challenges regarding sponsors and WordCamps in the past. It&#8217;s a challenge to give sponsors the most bang for their buck, treat everyone fairly, and be a model WordCamp. The jury is still out.&#8221;</p>\n<p>WordPress Orlando organizer Lisa Melegari thinks the idea of sponsor workshops may bring some legitimacy to what is known as the &#8220;hallway track,&#8221; where attendees congregate when not attending a session.</p>\n<p>&#8220;I think it&#8217;s a really interesting concept,&#8221; Melegari said. &#8220;There&#8217;s already the joke out there that there&#8217;s a phantom extra track at most WordCamps &#8211; the Hallway Track. I think this would take that and actually give some legitimacy to the myth.&#8221;</p>\n<p>Melegari said WordCamp Orlando organizers have seen a significant shift in sponsor availability and enthusiasm in the past few years, especially after WordCamp US launched. She said their local camp lost several past sponsors to the larger WordCamp US. Other sponsors have decided to just focus on local camps and some have dropped sponsorship altogether.</p>\n<p>&#8220;I really think we need to give our sponsors more opportunity to benefit their businesses, since their success allows them to continue to support our camps,&#8221; Melegari said. &#8220;Is it worth an entire extra track? Maybe not. That would put an unfair burden on camps that already have difficulty getting space and could deter sponsors from supporting a camp that cannot offer that accommodation.&#8221;</p>\n<p>Melegari said she likes the idea of allowing sponsors to have a more prominent demo opportunity as long as it doesn&#8217;t overshadow the speakers, who volunteer their time.</p>\n<p>&#8220;Having been a speaker with a very low attendance at a few talks, it&#8217;s disheartening, but understandable that another speaker&#8217;s talk is more popular,&#8221; she said. &#8220;I would be afraid the sponsor track would take away the spotlight on speakers.&#8221; From an organizer&#8217;s perspective, she is interested to see how sponsor workshops can deliver a better value for sponsorship.</p>\n<p>&#8220;We really do need to provide a better case for WordCamp sponsorship besides exposure, because many of our recurring sponsors have a smaller and smaller pool of new eyes every camp,&#8221; Melegari said. &#8220;If we are going to keep growing in camp numbers, we&#8217;re going to have to figure out something to keep all the camps financially afloat.&#8221;</p>\n<p>Alx Block, WordCamp US 2015-16 Organizer, understands the importance of sponsors and volunteers, who covered the bulk of the $516 actual cost per person for the most recent event.</p>\n<p>&#8220;I think that we’re at an impasse when it comes to adding value for sponsors, especially at the larger camps,&#8221; Block said. &#8220;On the one hand, each sponsorship is really a <em>scholarship</em> for attendees, allowing each camp to greatly reduce the ticket price so that more people can attend and get value from the camp. On the other hand, there’s limited value for the sponsors in terms of ROI. We’ve never thought of it as a business investment, but it’s certainly time to think about that more.&#8221;</p>\n<p>Keeping ticket prices low, putting on a quality event, and offering an array of perks for sponsorship is a tremendous balancing act for organizers. WordCamp Europe is one of fastest-growing camps that has experimented with doing this at a larger scale every year.</p>\n<p>&#8220;When you get into the larger dollar amounts that larger camps ask, it’s a different kind of ballgame, and I think that we need to revisit the value that a business receives as part of their sponsorship,&#8221; Block said.</p>\n<p>&#8220;I think something like sponsor workshops is a really neat idea. I can imagine that it doesn’t come with much overhead in terms of actual planning, and will give the sponsors something solid that they can plan for in terms of being able to pitch their product or service.&#8221;</p>\n<p>Historically, workshops have been events that are ancillary to the main tracks. WordCamp Europe&#8217;s plan to run them alongside speaker sessions is a bold experiment. Sponsors will have a great deal of flexibility with how they can utilize their workshop slots, so it will be interesting to see if they choose to incentivize attendance in some way or opt to pass them along to other speakers as a sponsored talk.</p>\n<p>&#8220;I think there’s a line between a sponsor &#8216;track&#8217; and sponsor &#8216;workshops,&#8217; which WCEU hasn’t clearly defined yet,&#8221; Block said. &#8220;I’m sure that their intention isn’t to have 1/3 of the talks be by people who paid to be there. From what I understand, the intention is to have the top-tier sponsors (maybe 4-6 of them) present on a smaller stage in a kind of rolling fashion, to supplement the full tracks &#8211; meaning, it would be a great place for an attendee to go during a time when neither of the other sessions appeals to them, or they’re interested in learning more about a specific product.&#8221;</p>\n<p>Block said he has seen this type of sponsor perk at other non-WordPress conferences and has sat in on sessions that piqued his interest.</p>\n<p>&#8220;But this is the real question in my mind: Can we offer something like this without turning WordCamps into a trade show?&#8221; Block said.</p>\n<p>&#8220;I think now that we’re growing so much with these large camps, it’s the perfect time to ask these questions and figure out exactly what type of event WordCamp is. We grow as the community grows, and WordCamp should always reflect the community’s interest. If there’s interest in giving sponsors a place to talk about their wares, I’m all about it, but I’d always want the community to come first.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Jan 2017 20:38:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:93:\"WPTavern: Wix Removes GPL-Licensed WordPress Code from Mobile App, Forks Original MIT 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=65143\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wix-removes-gpl-licensed-wordpress-code-from-mobile-app-forks-original-mit-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:14743:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2014/06/ForkedFeaturedImage.png?ssl=1\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/winterofdiscontent/3301816514/\">winterofdiscontent</a> &#8211; <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a>\n<p>In October 2016, <a href=\"https://ma.tt/2016/10/wix-and-the-gpl/\" target=\"_blank\">Matt Mullenweg called out Wix</a> for using GPL-licensed code from the WordPress mobile app and distributing it in its proprietary app. After identifying a path for Wix to comply with the license, Mullenweg <a href=\"https://wptavern.com/mullenweg-takes-aim-at-wix-over-gpl-abuses-wix-response-fails-to-address-licensing-issue\" target=\"_blank\">confirmed he would be willing to go to court to protect the GPL</a>.</p>\n<p>Wix CEO Avishai Abrahami&#8217;s <a href=\"http://www.wix.com/blog/2016/10/dear-matt-mullenweg-an-open-letter-from-wix-coms-ceo-avishai-abrahami/\" target=\"_blank\">response</a> to the allegations failed to address the issue of licensing, dodging the question with references to other open source contributions. Abrahami seemed to indicate that Wix would open source its mobile app but was not clear whether it would be GPL licensed:</p>\n<p>&#8220;We always shared and admired your commitment to give back, which is exactly why we have those 224 open source projects, and thousands more bugs/improvements available to the open source community and we will release the app you saw as well,&#8221; Abrahami said.</p>\n<p>The Wix Twitter account also gave the impression that the entire app would be released under the GPL:</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/yairwein\">@yairwein</a> We\'ll release the code on Github, where we also shared our previous projects: <a href=\"https://t.co/FBhp2Kd5wn\">https://t.co/FBhp2Kd5wn</a></p>\n<p>&mdash; Wix.com (@Wix) <a href=\"https://twitter.com/Wix/status/792656290854174721\">October 30, 2016</a></p></blockquote>\n<p></p>\n<p>Publicly communicating these intentions bought the company time to educate its developers on the implications of the GPL and find another path forward for the app.</p>\n<p>The app has not been released under the GPL and Wix has discontinued development on the GPL-licensed repositories. On November 1, 2016, Wix changed the license on the <a href=\"https://github.com/wix/react-native-wordpress-editor\" target=\"_blank\">react-native-wordpress-editor</a>, the repository that was forked from the WordPress mobile app, to GPLv2. The next day, they began work on <a href=\"https://github.com/wix/react-native-zss-rich-text-editor/\" target=\"_blank\">react-native-zss-rich-text-editor</a>, a new repository forked from the original MIT-licensed library that the WordPress mobile app code built upon.</p>\n<p>It appears that Wix never planned on complying with the GPL, since the company immediately began working on an alternative approach. Wix has since released updates to its mobile apps and presumably has incorporated its own editor component that is based on the original MIT-licensed library.</p>\n<p>It is not clear whether Wix completely started over with its fork or if the company&#8217;s developers incorporated some of the commits previously made in the WordPress mobile app&#8217;s GPL-licensed fork. Wix has not responded to numerous attempts to contact them for an official statement.</p>\n<h3>Wix Invents Its Own &#8220;Enhanced&#8221; MIT License for the Forked Library</h3>\n<p>Here&#8217;s where the story takes an odd turn. Instead of distributing the new editor code under a <a href=\"https://opensource.org/licenses\" target=\"_blank\">standard open source library</a>, Wix has written its own license, which it is calling the <a href=\"https://github.com/wix/react-native-zss-rich-text-editor/blob/master/LICENSE\" target=\"_blank\">&#8220;Enhanced&#8221; MIT license (EMIT)</a>. It explicitly prohibits relicensing under the GPL and requires the developer to license modifications under the EMIT:</p>\n<blockquote><p>This license is exactly like the MIT License, with one exception – Any distribution of this source code or any modification thereof in source code format, must be done under the Enhanced MIT license and not under any other licenses, such as GPL.</p></blockquote>\n<p>Furthermore, the license prohibits the code being redistributed under any copyleft license:</p>\n<blockquote><p>when the Software is distributed as source code, the licensee is prohibited to change the license of the Software to any “viral” copyleft-type license, such as, inter alia: GPL, LGPL, EPL, MPL, etc.</p></blockquote>\n<p>Wix explained the reason behind the creation of the new license in its introduction, citing what it calls a &#8220;bug&#8221; in the MIT license. The MIT permits developers to re-license their modifications as GPL. The text of the &#8220;Enhanced&#8221; MIT license characterizes this practice as bullying:</p>\n<blockquote><p>We believe MIT license has a bug since it allows others to use it against its nature. Our belief is that the MIT license is intended to make source code available to anyone who wants to use it without additional obligations, but we have found cases where someone takes a project licensed under MIT license, adds a few lines of source code to it, and then changes the licensing to a different, more restrictive license which is against the nature and the intent of the MIT license. By doing so, the source code released under the original MIT is no longer a true “free/open” source code, thus undermining the intention of the original creator of the source code.</p>\n<p>The concept of this Enhanced MIT license is simple and more robust – you can do what you want with this source code, exactly like any other MIT license, but if you release it again as open source (even if modified), you must release it under this Enhanced MIT license – to be clear, this is not a “viral” license, it only refers to the actual source code released under this license and not to other components interacting with it. If GPL is a viral license, this license can be described as a “robust” one as it prevents licensing changes that are against its nature and it defends its own licensing principles. The essence of the Enhanced MIT license is to prevent bullies from using open source code that is truly free and open under the MIT License and turning it into other viral and more restrictive licenses – such as GPL.</p></blockquote>\n<p>The license has only ever been used in this particular instance and does not appear to have been written by a lawyer or someone who has studied copyright and licensing issues professionally. I contacted the Free Software Foundation&#8217;s <a href=\"http://www.fsf.org/licensing\" target=\"_blank\">licensing and compliance team</a> regarding the legitimacy of Wix&#8217;s &#8220;Enhanced&#8221; MIT license. FSF copyright and licensing associate Donald Robertson III said the team is currently reviewing it and may require legal counsel before making a definitive comment. When they have completed the review, they will publish a statement and list the license in the <a href=\"https://www.gnu.org/licenses/license-list.html\" target=\"_blank\">FSF directory of free and non-free software licenses</a>. These are also broken down into copyleft and GPL-compatible classifications.</p>\n<p>&#8220;As you can see from the <a href=\"https://www.gnu.org/licenses/license-list.html#GPLIncompatibleLicenses\" target=\"_blank\">GPL-incompatible licenses</a>, there are plenty of free software licenses that are incompatible with the GPL, and many of those licenses would be incompatible with other copyleft licenses on the same basis,&#8221; Robertson said. &#8220;So it is possible for a license to be free even if it doesn&#8217;t work well with the GPL. We&#8217;ll have to do some review on this particular license before we can make any comment specific to it.&#8221;</p>\n<p>Wix has not submitted its EMIT license to the Open Source Initiative, a community-recognized organization that acts as stewards of the Open Source Definition (OSD) and also reviews and approves licenses as OSD-conformant. OSI has not yet responded to my inquiry about the legitimacy of the license, but I spoke with <a href=\"https://opentechstrategies.com/\" target=\"_blank\">Karl Fogel</a>, an open source specialist who consults with organizations on open source licensing and the implications of using it in business.</p>\n<p>&#8220;This so-called &#8216;Enhanced MIT&#8217; license is poorly drafted and internally inconsistent,&#8221; Fogel said. &#8220;I feel on safe ground in saying that were it ever submitted to the OSI for approval, it would be rejected quickly.&#8221;</p>\n<p>Fogel also commented on the inherent contradictions in the license&#8217;s introduction and permissions.</p>\n<p>&#8220;An obvious internal inconsistency is that in the Introduction, it says that redistribution in source code format &#8216;must be done under the Enhanced MIT license and not under any other licenses, such as GPL,\'&#8221; Fogel said. &#8220;But then later, in point (2) of the conditional permissions grant, it says &#8216;when the Software is distributed as source code, the licensee is prohibited to change the license of the Software to any &#8216;viral&#8217; copyleft-type license, such as, inter alia: GPL, LGPL, EPL, MPL, etc.&#8217;</p>\n<p>&#8220;So the Introduction is saying that redistribution is not permitted under <strong>any</strong> other open source license, but then the permissions grant section only bars redistribution under copyleft licenses, leaving open the possibility to distribute under other non-copyleft licenses. Which is it?&#8221;</p>\n<p>According to OSI, <a href=\"https://opensource.org/faq#copyleft\" target=\"_blank\">copyleft</a> &#8220;refers to licenses that allow derivative works but require them to use the same license as the original work.&#8221; In requiring the EMIT to be used for derivative works, the license adopts the viral nature Wix ostensibly wanted to avoid with the GPL. This emasculates the MIT, robbing it of its essential freedoms. For this reason and many others, the EMIT appears to be an illegitimate variant of the MIT.</p>\n<p>&#8220;A larger issue is that the reasoning in the Introduction about how the standard MIT license supposedly has a &#8216;bug&#8217; makes no sense,&#8221; Fogel said. &#8221; It asserts that redistribution under an open source copyleft license would somehow be more restrictive than not doing source redistribution at all (e.g., as with a standard proprietary license).  There is no sensible definition of the word &#8216;restrictive; in which releasing code under a copyleft license would restrict someone&#8217;s use of that code more than <em>not having the code in the first place</em> would restrict them.&#8221;</p>\n<p>Fogel does not think the EMIT is a valid derivative of the MIT license and is not convinced that it can be considered a license at all.</p>\n<p>&#8220;It is very clear that a lawyer did not write this license,&#8221; Fogel said. &#8220;I think Abrahami must have written it himself. I hesitate to even call it a license; it&#8217;s not clear what a judge would do with it, except perhaps sell tickets.&#8221;</p>\n<h3>Wix&#8217;s EMIT License is a Hostile Reaction to the Call for GPL Compliance</h3>\n<p>The EMIT license not only takes shots at the GPL but also injects a moral pronouncement against all those who subscribe to the tenets of copyleft licensing. The restrictions in the EMIT effectively &#8220;weaponize the license&#8221; against other open source projects, as one Reddit user said in a<a href=\"https://www.reddit.com/r/opensource/comments/5n7km9/wix_abandons_the_wordpress_editor_forks_original/\" target=\"_blank\">comment</a> on the situation. This encompasses a large portion of the open source community.</p>\n<p>Wix may not be able to publicly admit its violation of the GPL, as it has not yet answered for the past infringement of distributing the code in its mobile app. In looking back over the timeline of events, Wix&#8217;s public communication that implied it would comply with the GPL was disingenuous, as the team was scrambling behind the scenes to fork the original library and slap a new &#8220;anti-copyleft&#8221; license on it. The company has no respect for the GPL and, in fact, has communicated its disdain for the license in the language of its new EMIT license.</p>\n<p>&#8220;I remember reading this exchange when it happened,&#8221; Fogel said. &#8220;This is not a case of gray areas or &#8216;the truth lies somewhere in the middle.&#8217; Matt Mullenweg of WordPress is 100% right, and Wix CEO Avishai Abrahami is, quite simply, wrong. Mullenweg was extremely direct about what the problem was and how to fix it. Abrahami&#8217;s response was an evasive mishmash of brazen non sequiturs and willful refusal to acknowledge Mullenweg&#8217;s point, which was simply that if Wix is going to use WordPress code that is distributed under the GNU General Public License, then Wix has to follow the terms of the GPL like anyone else.</p>\n<p>&#8220;Abrahami&#8217;s poor behavior could only have been intentional,&#8221; Fogel said. &#8220;I just don&#8217;t see any other way to interpret it, given how easy to understand Mullenweg&#8217;s letter is, and how clear the issues are here.&#8221;</p>\n<p>Wix&#8217;s illegal use of GPL code in a proprietary app could easily be chalked up to ignorance or an oversight if the company had simply attempted to comply. Instead, they wrote a license that swipes back at copyleft proponents everywhere. The EMIT actually manages to trivialize both the GPL and the MIT in one fell swoop.</p>\n<p>&#8220;The GPL is not a disease,&#8221; said <a href=\"http://www.rosenlaw.com/\" target=\"_blank\">Lawrence Rosen</a> in a document titled <a href=\"http://www.rosenlaw.com/html/GPL.pdf\" target=\"_blank\">The Unreasonable Fear of Infection</a>. &#8220;It is designed to satisfy certain philosophical and economic objectives that are widely shared by many members of the open source community.&#8221;</p>\n<p>In writing its own &#8220;Enhanced&#8221; MIT license Wix has demonstrated a careless disregard for open source licensing and  hostility towards those who use copyleft licenses to guarantee user freedoms.</p>\n<p>Although some onlookers in the open source community disapproved of the two CEO&#8217;s handling the disagreement in open letters, there are plenty more who appreciate that the issue is being hammered out in public. Fogel said he hopes the situation &#8220;will draw some attention to the fact that the GPL actually means something and can be enforced.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 21 Jan 2017 00:04: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:\"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: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:68:\"WPTavern: Obama Foundation Launches New Website Powered by 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=65363\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/obama-foundation-launches-new-website-powered-by-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:1987:\"<p>The <a href=\"https://www.obama.org/\" target=\"_blank\">Obama Foundation</a> launched its new WordPress-powered website today. The future presidential center, which will be located in Chicago, will manage projects both in the city and other places around the world.</p>\n<p>&#8220;More than a library or a museum, it will be a living, working center for citizenship,&#8221; President Obama said. &#8220;That&#8217;s why we want to hear from you. Tell us what you want this project to be and tell us what&#8217;s on your mind.&#8221;</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/01/obama-foundation-screenshot-e1484927287947.png?ssl=1\"><img /></a></p>\n<p>The website integrates the <a href=\"https://www.typeform.com/\" target=\"_blank\">Typeform</a> service for collecting feedback from citizens on their hopes and dreams, as well as the people and organizations that inspire them.</p>\n<p>WordPress developers were excited to see that the former President is using the WP REST API introduced in WordPress 4.7.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"in\" dir=\"ltr\">Oh hai WP REST API <a href=\"https://t.co/EBGDexNwRA\">pic.twitter.com/EBGDexNwRA</a></p>\n<p>&mdash; Daniel Bachhuber (@danielbachhuber) <a href=\"https://twitter.com/danielbachhuber/status/822459669104889856\">January 20, 2017</a></p></blockquote>\n<p></p>\n<p>The custom theme for the Obama Foundation is built using <a href=\"http://foundation.zurb.com/\" target=\"_blank\">ZURB&#8217;s Foundation</a> as its front-end framework. It integrates the <a href=\"http://jquery.malsup.com/cycle/\" target=\"_blank\">jQuery Cycle Plugin</a> for galleries.</p>\n<p>The website was created by <a href=\"http://www.bluestatedigital.com\" target=\"_blank\">Blue State Digital</a>, an agency that got its start on the campaign trail and now focuses on serving causes and brands.</p>\n<p>President Obama is the first president to select WordPress for his presidential center website.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 Jan 2017 17:39: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:\"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:35:\"BuddyPress: BuddyPress 2.8.0 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=263023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://buddypress.org/2017/01/buddypress-2-8-0-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2965:\"<p>BuddyPress 2.8.0 Beta 1 is packed with new features and enhancements and is now available for testing. You can download the <a href=\"https://downloads.wordpress.org/plugin/buddypress.2.8.0-beta1.zip\">BP 2.8.0-beta1</a> zip or get a copy via our Subversion repository. We&#8217;d love to have your feedback and testing help.</p>\n<p>BuddyPress 2.8.0 requires PHP 5.3+, and will not be activated on a server with a lower version of PHP. We also remind you that BuddyPress 2.8.0 will require <a href=\"https://bpdevel.wordpress.com/2016/11/17/2349/\" target=\"_blank\">at least WordPress 4.3</a>.</p>\n<p>A detailed changelog will be part of our official release notes, but, until then, here’s a list of some of our favorite changes. (Check out <a href=\"https://buddypress.trac.wordpress.org/query?status=closed&group=resolution&milestone=2.8\">this report</a> on Trac for the full list.)</p>\n<ul>\n<li>BP Email: Allow end user to specify which PHPMailer should be used <a href=\"https://buddypress.trac.wordpress.org/ticket/7286\">#7286</a></li>\n<li>Companion Stylesheet &#8211; Twentyseventeen <a href=\"https://buddypress.trac.wordpress.org/ticket/7338\">#7338</a></li>\n<li>Minimum PHP version is 5.3 <a class=\"closed\" title=\"View ticket\" href=\"https://buddypress.trac.wordpress.org/ticket/7325\">#7325</a>, <a class=\"closed\" title=\"View ticket\" href=\"https://buddypress.trac.wordpress.org/ticket/7299\">#7299</a></li>\n<li>Support List-Unsubscribe header in emails <a href=\"https://buddypress.trac.wordpress.org/ticket/7390\">#7390</a></li>\n<li>Make group search more flexible <a href=\"https://buddypress.trac.wordpress.org/ticket/7418\">#7418</a> and other groups improvements, like <a class=\"closed\" title=\"View ticket\" href=\"https://buddypress.trac.wordpress.org/ticket/7419\">#7419</a>, <a class=\"closed\" title=\"View ticket\" href=\"https://buddypress.trac.wordpress.org/ticket/7399\">#7399</a>, <a class=\"closed\" title=\"View ticket\" href=\"https://buddypress.trac.wordpress.org/ticket/7388\">#7388</a>, <a class=\"closed\" title=\"View ticket\" href=\"https://buddypress.trac.wordpress.org/ticket/7386\">#7386</a>, <a class=\"closed\" title=\"View ticket\" href=\"https://buddypress.trac.wordpress.org/ticket/7375\">#7375</a></li>\n<li>Lots of new filters in various parts of the code, like <a class=\"closed\" title=\"View ticket\" href=\"https://buddypress.trac.wordpress.org/ticket/6667\">#6667</a>, <a class=\"closed\" title=\"View ticket\" href=\"https://buddypress.trac.wordpress.org/ticket/5193\">#5193</a></li>\n<li>Lots of inline documentation tweaks and other fixes and improvements</li>\n</ul>\n<p>BP 2.8.0 is almost ready, but please do not run it in a production environment just yet. Let us know of any issues you find in the <a href=\"https://buddypress.org/support/\">support forums</a> and/or <a href=\"https://buddypress.trac.wordpress.org/\">development tracker</a>.</p>\n<p>Thanks everyone for all your help to date. We are excited to release BuddyPress 2.8.0 in February!</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 Jan 2017 23:03: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:14:\"Slava Abakumov\";s: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:40:\"Post Status: Shaping a vision of 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:31:\"https://poststatus.com/?p=32469\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/shaping-success-wordcamps/\";s: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:14728:\"<p><em><strong>Editor&#8217;s note</strong></em>: This guest post is written by <a href=\"https://poststatus.com/profiles/jenny-beaumont/\">Jenny Beaumont</a>, a co-organizer of WordCamp Paris and WordCamp Europe. She&#8217;s spent the last two decades building things in and around the web, writes a <a href=\"http://www.jennybeaumont.com/subscribe/\">terrific newsletter</a>, and lives in France.</p>\n<p>One of the highlights of my year, and a fitting end to 2016 as my <a href=\"http://www.jennybeaumont.com/celebrating-15-years-of-freelancingwith-a-sabbatical/\">sabbatical</a> drew to a close, was attending the 2nd annual <a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/\">WordCamp US</a>, held December 2-4 in Philadelphia, Pennsylvania.</p>\n<p>The trip met my expectations in every way, from the warm-hearted nature of the locals to the super-sized portions at every delicious meal, and from the diversity of attendees to all of the extraordinary conversations I had during that short week I was in town.</p>\n<p>“You might have noticed that this year’s programming at WordCamp US had some more of a human side, in addition to just the technical that we’ve had before,” said Matt Mullenweg, co-founder of WordPress and CEO of Automattic, during his much-anticipated <a href=\"https://poststatus.com/matt-mullenweg-state-word-2016/\">State of the Word</a>.</p>\n<p>“I think that a lot of our opportunities to grow over the coming year are on the human side, and understanding the humanity of an open source project and working together and creating the code that’s going to touch humanity as well.”</p>\n<p>Moving into 2017, ready for new opportunities and with the next edition of <a href=\"https://2017.europe.wordcamp.org/\">WordCamp Europe</a> on the horizon, I find myself thinking about growth past and present, and about what success might look like for all of us in this new year.</p>\n<h3>Growth and competition for WordPress</h3>\n<p>“It’s really all about pie,” replied Mullenweg when asked about the future of a WordPress entrepreneur, stating that as long as the pie continues to grow, everyone can get a piece.</p>\n<p>He talked about how the new focuses of the WordPress project—the REST API, the Editor and the Customizer—along with an inclusive design-lead approach, should allow WordPress to reach new audiences.</p>\n<p>WordPress has seen incredible growth in recent years, now representing over <a href=\"https://w3techs.com/technologies/overview/content_management/all\">27% of websites</a>, a full 20% ahead of competing platforms. This translates to 58.5% market share of all monitored content management systems, <a href=\"https://www.rarst.net/wordpress/powers-internet/\">when looking</a> at the top 10 million sites.</p>\n<p>This doesn’t mean that the competition isn’t trying to close the gap. Mullenweg reported that the top proprietary platforms, such as Squarespace and Wix, spent upwards of 320 million in advertising dollars in 2016, often directly targeting search engine queries for WordPress.</p>\n<p>“I think that in the past WordPress got by on a lot of sort marketing by happenstance,” he said, admitting the need to look at the marketing of WordPress in new ways, and hopefully pooling the resources of the community to do so.</p>\n<p>“I think we have a real opportunity especially as the businesses around WordPress grow larger and larger, to actually coordinate a bit […] there’s no one company in the WordPress ecosystem that’s large enough to match 300 million dollars, and spend on telling people the WordPress story. But no one company needs to be large enough, because we’re a community.”</p>\n<p>All in all, he painted a bright picture for the future for the WordPress ecosystem, the community of people who come together around a common purpose and ideal—the WordPress project and its mission to democratize publishing—and in so doing create a new paradigm for work and the web, the byproduct of which is a flourishing economy.</p>\n<p>I can’t help but wonder, how big can the pie get? And while we concentrate on growth and competition, how do we measure the success of our mission? How will we know when we’ve democratized publishing? Can or should WordPress achieve this goal alone?</p>\n<h3>The numbers game for WordCamps</h3>\n<p>“We must tilt our hat and bow down to Europe, which beat us this year,” Mullenweg capitulated as he wrapped up his report on community growth, expressed in the number of events and event attendance worldwide.</p>\n<p>Growth is an indication that we’re doing something right. An increase in the numbers tells us that more people are interested and getting involved. This is what an open source project needs to reach a wider audience, stay competitive and accomplish its mission: people to make it happen.</p>\n<p>But should success be measured solely in numbers? Is it healthy to think that there can be winners and losers when it comes to the success of our community as a whole?</p>\n<p>In its first three years, WordCamp Europe grew at a slow and predictable rate. Then last year, for some reason, it exploded. We sold our initial batch of 1500 tickets practically overnight, and ended up selling nearly 2200 tickets in total.</p>\n<p>What happened? Did WordCamp Europe’s reputation catch up with itself, creating this burgeoning interest? Was Vienna simply an incredibly attractive destination for a lot of people? Or was it the organizing team that did an outstanding job at marketing and outreach?</p>\n<p>WordCamp US was in its second year, and we can ask similar questions about why they didn’t see the growth they were expecting. Is the event, with its transition from the long-standing WordCamp San Francisco, still in its infancy, so that slow growth is to be expected? Was going to the same destination two years in a row not as appealing to attendees? Did the team do an adequate job of communicating around the event?</p>\n<p>In my mind, both WordCamp Europe and WordCamp US were successful events. Each did a lot of things well, and some other things less well. Attendees I encountered, whether speakers, sponsors, volunteers or the general public, seemed to have a rewarding experience and their expectations met.</p>\n<p>Because that’s why we put these events on, right? Not to “get the numbers” or “win”, but to create an enriching experience.</p>\n<h3>Bigger is not necessarily better</h3>\n<p>So, how big do we let ourselves get? This has been an ongoing question for us on the WordCamp Europe team since things took on a new dimension in Vienna.</p>\n<p>When I asked <a href=\"https://paolo.blog/\">Paolo Belcastro</a>, WordCamp Europe local team lead in 2016 and global team lead for 2017, what he thought about growth he said, “For me a successful event is when we have one ticket left over. It should be our goal to make sure that everyone who wants to attend, can.”</p>\n<p>This is a philosophy that I stand beside. It reflects our focus on attendees and on inclusiveness, so that it doesn’t matter whether we have 1000, 2000 or 3000 people, it only matters that we do our best to accommodate everyone and put on a great event for however many show up.</p>\n<p>It does not, however, answer the question.</p>\n<p>It’s exciting to run a popular event, and it’s easy to get carried away with that excitement and sense of accomplishment knowing that so many people want to attend, that so many people are being impacted in positive ways. When we focus solely on the numbers, and adopt a “bigger is better” mentality, it’s also easy to lose sight of some important consequences of growth.</p>\n<h4>Professional level of production</h4>\n<p>Keep in mind that we didn’t originally plan an event for 2200 people last year, and so we had to improvise, which meant a significant budget increase and a lot of extra work for the organizing team.</p>\n<p>It also catapulted us into a new level of production. Putting on a large event is not the same as putting on a smaller one, and once you get up above 2000 attendees, it has a trickle down effect. It means organizing a speakers dinner for upwards of 300 volunteers, and an after party for 1500. These are events in and of themselves. We’re brought to collaborate with professionals in the events world—caterers, vendors, venues—while we’re still volunteers working in our “spare time”, some of us with more experience than others at making this all happen.</p>\n<h4>Increased cost of WordCamps</h4>\n<p>While the average ticket price per day has gone down, from $20 to $15.79, the cost of putting on a WordCamp has increased. Mullenweg reported that the cost of WordCamp US was $516 per person, while attendees continue to pay a mere $40 for entry to the two-day event, including lunch both days, free-flowing coffee, access to the contributor day and after party, not to mention the <a href=\"https://poststatus.com/photos-post-status-publish-wordcamp-us-2016/#jp-carousel-31176\">great swag</a>, which included both a t-shirt and an adorable Wapuu plushy this year.</p>\n<p>The additional 90% of this cost falls to sponsors. Sponsors are not volunteers running a non-profit, they are businesses. As we ask more and more of them, they understandably are <a href=\"https://wptavern.com/the-value-of-sponsoring-a-wordcamp-from-a-business-perspective\">starting to question</a> what they get in return. Our response has typically been, “you’re supporting the community and gaining exposure,” but is that enough and for how long? How much is too much to ask?</p>\n<h4>Setting expectations for sponsors and attendees</h4>\n<p>How much is too much to ask of anyone? As we ask more of sponsors they expect more in return. As we grow, try to predict growth and to outdo ourselves every year, the task for organizers becomes more demanding. As we create bigger and better events, attendees expect to find the same elsewhere.</p>\n<p>An event with 10,000 attendees would be amazing. We probably couldn’t call it a WordCamp, though. It would be a WordPalooza, and would require a full-time staff and a new approach to programming, sponsorship and organization on the whole. Does an event have to grow into order to be successful? Can maintaining a certain level of participation and quality also be considered a success?</p>\n<p>Because it’s also possible that WordCamp US and WordCamp Europe will simply plateau at a certain capacity. The world may not be ready for a WordPalooza.</p>\n<h3>Competition and success</h3>\n<p>“One of the reasons why I think WordPress has such a collaborative community, when you see competitors hanging out with each other and getting drinks […] is that it’s a growing pie. So everyone’s slice of that pie can grow alongside. If it were shrinking or a static pie, the only way to grow would be taking some pie from someone else.”</p>\n<p>Competition is widely considered good for business. It pushes companies to innovate and guard against complacency. It encourages a focus on customer service and helps protect consumers through competitive pricing. Competition in the marketplace confirms there is a market to be had, that demand is strong for the products or services being offered. It seeks to establish a basis for fairness, while letting companies vie for market share, sales and profit margins.</p>\n<p>The friendly, collaborative nature of the WordPress community is born out of the open source philosophy of contribution and sharing. It is, in my mind, our greatest strength. Support within the community is unparalleled. We consistently root for one another, learn from one another, share our triumphs and our difficulties, through mergers, acquisitions, hirings, firings, career changes and even the occasional drama.</p>\n<p>How big can WordPress get? Arriving at 100% market share is neither a likely nor a desirable scenario, if you believe in the benefits of competition and fair trade. The pie is not likely to grow exponentially, but rather will turn into something else entirely as the technology, the world and the web evolve, and the project along with them.</p>\n<h3>Success and expectations</h3>\n<p>“When we are candid about our shortcoming, it allows us to be better towards going to the future,” Mullenweg said in talking about the WordPress Editor.</p>\n<p>This is a sentiment we can apply across the board, to ensure that our philosophy and our mission are reflected in our words and actions as we bring new users to our platform and welcome newcomers to our community.</p>\n<p>Healthy competition, whether inside or outside of the community, helps us strive to be the best we can be. Raising the bar can produce some extraordinary results, allowing us to be inspired by one another, taking on ideas that we might find valuable for our audiences, customers, clients. Healthy competition allows us to learn, have fun, grow and share that wealth of knowledge around us.</p>\n<p>Unhealthy competition causes us to lose sight of our goals, focusing on numbers instead of the people affected by them. In a community such as ours that prides itself on inclusiveness, we can only succeed or fail together.</p>\n<p>In this coming year I’d like to see success shaped through managing expectations and staying true to our purpose. I’d like to see it shaped by people, not numbers, by the humanity of this open source project that brings us together, allows us to create, to innovate, to provide for ourselves and our families.</p>\n<p>I’d like to think that a future vision of success could be when growth is neither the goal, nor our limitation, when we’re no longer looking to a growing pie, but rather to a renewable spring or self-sustaining garden. I’d like to think that one day we will be able to say that we’ve succeeded in democratizing publishing, and if and when we do, I doubt that we will have done it alone. And that’s a good thing.</p>\n<h3>See you in Paris</h3>\n<p>I have no idea how many people will show up to WordCamp Europe in June, but I do know that it will be another fantastic event. I also know that you can help make it a success by participating. You can apply to <a href=\"https://2017.europe.wordcamp.org/2016/11/28/join-us-as-a-speaker-at-wordcamp-europe/\">speak</a>, to <a href=\"https://2017.europe.wordcamp.org/2016/10/06/wordcamp-europe-2017-call-for-volunteers-is-now-open/\">volunteer</a>, to <a href=\"https://2017.europe.wordcamp.org/2016/12/29/wordcamp-europe-2017-call-for-sponsors-is-now-open-wceu/\">sponsor</a>, and/or <a href=\"https://2017.europe.wordcamp.org/tickets/\">buy a ticket</a>. So many ways to be a part of making it happen. So, see you there? Wait, let me rephrase: see you there!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Jan 2017 06:02: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:14:\"Jenny Beaumont\";s: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:67:\"WPTavern: Jetpack 4.5 Expands Monetization with WordAds Integration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65273\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/jetpack-4-5-expands-monetization-with-wordads-integration\";s: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:16477:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/01/wordads.jpg?ssl=1\"><img /></a></p>\n<p>Jetpack is starting 2017 with a major release that is heavy on enhancements and improvements. <a href=\"https://jetpack.com/2017/01/17/jetpack-4-5-monetize-your-site-brand-new-videopress-and-many-many-new-shortcodes/#comments\" target=\"_blank\">Version 4.5</a> includes more than a dozen new shortcodes and widgets, along with revamped support for VideoPress. One of the most intriguing new features announced in this release, however, is the integration with <a href=\"https://wordads.co/\" target=\"_blank\">WordAds</a>, WordPress.com&#8217;s advertising program.</p>\n<p>Jetpack users are required to be on the <a href=\"https://wordpress.com/jetpack/connect/premium\" target=\"_blank\">Premium plan</a> ($9.00/month or $99/year) in order to sign on with WordAds. The feature is then available within the Engagement tab along with settings for adjusting ad placement.</p>\n<p>Eligibility for WordAds was previously limited to sites that had thousands of page views per month, but this requirement is lifted for those who have purchased a Premium or Professional Jetpack plan. Unlike Adsense, which pays for clicks, WordAds pays based on the number of impressions combined with many other factors. According to Derek Springer, an Automattic employee who has worked on WordAds for several years, the traffic requirement was given to set earnings expectations and to ensure support resources were adequately available.</p>\n<h3>How Much Can Publishers Earn through WordAds?</h3>\n<p>It&#8217;s difficult to to gauge how much a publisher can earn using WordAds, and Automattic doesn&#8217;t publish any sample earnings. The WordAds network has <a href=\"https://wordads.co/2016/10/14/google-adsense-facebook-ads-and-dozens-more-buying-from-wordads/\" target=\"_blank\">more than 60 partners</a> bidding for advertising space in realtime, including Google&#8217;s AdSense, Google, AdX, Facebook Ads, AOL, Yahoo, and Amazon. <a href=\"https://dailypost.wordpress.com/2013/02/14/wordads/\" target=\"_blank\">WordPress.com&#8217;s Daily Post blog</a> likened the network to a stock market with prices rising and falling as available space changes.</p>\n<p>When asked about the average return for every 1,000 impressions, Derek Springer said it&#8217;s challenging to estimate due to the complex set of factors influencing the revenue publishers can earn. These include location and number of ads, geography of viewer, percentage of viewers with ad blockers, and other factors.</p>\n<p>&#8220;Generally speaking, a site with majority US views with high-quality content can expect to earn the most, while non-English language, low-quality (copied content, nsfw, spam, purchased traffic) sites can expect to earn very little (if anything),&#8221; Springer said. &#8220;Our network over the past year or so has gotten pretty good at appropriately rewarding high-quality sites with high-quality traffic (and penalizing the inverse).&#8221;</p>\n<p>For years, bloggers have traded stats and earning records, speculating on what influences WordAds&#8217; unpredictable payouts. In 2014, the Human Breed Blog <a href=\"https://humanbreeds.com/2014/10/13/wordads-advertising-on-wordpress/\" target=\"_blank\">published</a> a collection of data from blogs that made their WordAds earnings publicly available. The data demonstrated inconsistency in earnings for many publishers, including the author&#8217;s own blog, where earnings varied wildly from 2014-2015:</p>\n<blockquote><p>My earnings have dropped down to half (From $22.55 in October 2014 to $11.77 in May 2015) despite my page views being higher than 20,000 views per month. The return per 1,000 Ad Impression (CPM) has dropped from $2.25 in October 2014 to $1.17 in May 2015 and the return per 1,000 Page views (CPV) has dropped from $1.39 in October 2014 to $0.51 in May 2015.</p></blockquote>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/the-human-breed-blog-wordads-earnings.png?ssl=1\"><img /></a>The Human Breed Blog 2014-2015 WordAds Earnings\n<p>This example is representative of the experience of many WordAds publishers in 2014-2016.</p>\n<p>&#8220;On my blog SQLwithManoj.com, for the months May, June, and July, the &#8216;Ad Impressions&#8217; were around ~10k and earnings were in the range of $25 to $48 respectively each month,&#8221; <a href=\"https://humanbreeds.com/2014/10/13/wordads-advertising-on-wordpress/#comment-4468\" target=\"_blank\">said</a> Manoj Pandey, blogger at SQLwithManoj.com. &#8220;But in the month of August the &#8216;Ad Impressions&#8217; were showing ~100k, i.e. ~10 times the previous months, but earnings are still in the same range.&#8221;</p>\n<p>For many publishers participating in WordAds, there seems to be little correlation between impressions and payouts from month to month. Numerous publishers have reported progressively lower earnings despite having higher traffic numbers than previous months. Clarissa&#8217;s Blog, included in the collection of public earnings above, <a href=\"https://clarissasblog.com/2016/01/30/wordad-earnings-an-important-update/\" target=\"_blank\">published stats</a> from June 2014 to December 2015 that show a dramatic decrease in the amount paid for impressions.</p>\n<p>&#8220;You have no way of knowing where the &#8216;ad impressions&#8217; figure comes from and why it varies from one month to another,&#8221; Clarissa said. &#8220;You will have to trust WordPress on that. I experimented with placing the maximum amount of ads as opposed to a moderate amount of ads and that had absolutely no impact on the number of ad impressions.&#8221;</p>\n<p>Things started changing in 2016 for Clarissa who now <a href=\"https://clarissasblog.com/2016/01/30/wordad-earnings-an-important-update/#comment-289600\" target=\"_blank\">reports</a> that earnings are increasing. &#8220;I have no idea why but the payments seem to have returned to the higher rates,&#8221; Clarissa said. &#8220;Right now is a good time to do WordAds.&#8221;</p>\n<p>Others continue to <a href=\"https://en.forums.wordpress.com/topic/is-wordads-on-decline?replies=3#post-2842453\" target=\"_blank\">report</a> declines on the WordPress.com forums as recently as this week.</p>\n<p>&#8220;I used to get $800 for 800K impressions,&#8221; said the owner of rebirthonlineworld.com. &#8220;A few months ago I got $100 for more than 2 million impressions. Last month, only $90 for 500K impressions. This is a big problem for me.&#8221;</p>\n<h3>WordAds Vastly Overpaid for Low-Quality Traffic During Its First Years</h3>\n<p>In 2013 WordAds paid out $1 million to publishers on its network. According to Derek Springer, earnings since then have been &#8220;pretty flat the past year&#8221; due to industry-wide declining ad rates.</p>\n<p>&#8220;We’ve been slowly clawing our way back from the trough of early 2015, which was a historical low for us,&#8221; Springer said. &#8220;So more folks were paid out, but rates as a whole were at their lowest point in 2015. We’ve been steadily increasing our rates and paying out less to low-quality content/traffic, so if you’re a high quality site it’s likely your rates haven’t fallen too much.&#8221;</p>\n<p>Behind the scenes, WordAds was quietly evolving its network to better distinguish sites that would deliver more value to its advertising partners, which accounts for many of the dramatic declines in earnings.</p>\n<p>&#8220;Pre-<a href=\"https://wordads.co/2015/11/02/introducing-wordads-2-0/\" target=\"_blank\">WordAds 2.0</a> our network didn&#8217;t have the precision to distinguish between high-quality and low-quality (spam, nsfw, bot views, etc) traffic and we had to make some coarse estimations on how to chop the earnings value up,&#8221; Springer said. &#8220;The net effect was that we vastly overpaid low-quality traffic for the first handful of years.&#8221;</p>\n<p>Since WordAds 2.0 the program is gotten better at paying users for high-quality content and traffic. The team has more information on the traffic the network is getting and buyers have more information about the content they are bidding on.</p>\n<p>&#8220;The net effect is that advertisers refuse to bid on low-quality content and traffic and those sites that were previously earning lots are now getting pennies on the dollar,&#8221; Springer said. &#8220;I would estimate that after investigation 95% of the time the folks complaining about low payout have something kinda scammy going on, usually copied content or paid traffic (and frequently both).&#8221;</p>\n<p>&#8220;Paid traffic&#8221; in this instance refers to users who have paid a service to send bots to a page to refresh constantly in order to artificially inflate pageviews. One recent highly publicized incident of this kind of fraud is a case where <a href=\"http://www.wsj.com/articles/russian-hackers-stole-millions-from-video-advertisers-ad-fraud-company-says-1482272717\" target=\"_blank\">Russian hackers stole more than $3 million per day from video advertisers</a> using nonhuman bot traffic. Similar tactics have been used on WordAds, motivated by a misconception that pageviews are equal to ad views.</p>\n<h3>The Decline of the Advertising Industry</h3>\n<p>Another factor contributing to lower earnings over the past few years is the general decline of the advertising industry. A 2015 <a href=\"http://www.cjr.org/analysis/reuters_digital_news_report.php\" target=\"_blank\">Reuters Institute Digital News survey</a> indicates that nearly half of US internet users have some form of ad blocking software installed. Reuters Institute&#8217;s latest predictions <a href=\"http://www.digitalnewsreport.org/publications/2017/journalism-media-technology-predictions-2017/\" target=\"_blank\">forecast a 24% increase</a> in US users with ad blocking in 2017. Advertisers have to fight harder to get the attention of the remaining half of consumers and many companies have decided to allocate those funds elsewhere.</p>\n<p>According to the Interactive Advertising Bureau&#8217;s latest Internet Advertising Revenue report, <a href=\"http://adage.com/article/digital/iab-digital-ad-revenue-breaks-record/306557/\" target=\"_blank\">search advertising on desktop declined for the first time in 2016</a>, falling 12% to $8.9 billion. However, mobile advertising grew 105% from $3.6 billion to $7.4 billion. Mobile search is having an increasingly strong impact in shaping a site&#8217;s traffic.</p>\n<p>These factors are outside of WordAds&#8217; control but they weigh heavily on how many impressions publishers will receive. If the vast majority of a site&#8217;s visitors are using ad-blockers and the site isn&#8217;t easily found via mobile search, it is likely to suffer earning declines on any ad network.</p>\n<p>&#8220;Ad rates industry wide have fallen over the past few years,&#8221; Springer said. &#8220;Ad buyers just aren&#8217;t paying what they used to and more users are using ad blockers. They heyday of the late aughts/early twenty-teens may never return as ad buyers realized they just aren&#8217;t getting the return they were expecting.&#8221;</p>\n<h3>WordAds Needs More Transparency Around Partners and Reporting</h3>\n<p>It is difficult for publishers to improve their strategies for generating ad revenue when earnings fluctuate wildly without any explanation beyond changes in advertising rates. After reviewing the product&#8217;s forums, many are requesting more transparency around why their earnings have dropped despite higher numbers of impressions. They want to know if advertising rates have dropped for the month, if partners have dropped out of the network, or if their content failed to connect with visitors on certain days.</p>\n<p>WordAds users have experienced <a href=\"https://en.forums.wordpress.com/topic/earnings-from-wordads-account?replies=111\" target=\"_blank\">problems</a> with incorrect reporting, record low payouts, and blank banner displays. In the past there have also been considerable delays in publishers receiving their monthly earnings. Springer said improving the reporting process is a top priority for the team this year.</p>\n<p>&#8220;The flip-side/challenge of working with dozens of networks is that none of them pay us very consistently,&#8221; Springer said. &#8220;In the past there was no unified collection process on our end, so we would have to wait to collect from each partner and then split it up and send folks earnings out in one batch. However, for the past year and a half or so we&#8217;ve been working with a company called <a href=\"http://www.iponweb.com/\" target=\"_blank\">IPONWEB</a> to unify our earnings, reporting, and ad buying process (this is what powers WordAds 2.0). We&#8217;re at the point where we can begin to provide closer to real-time earnings reporting.&#8221;</p>\n<h3>Automattic is Optimistic about Expanding the <br />WordAds Program with Jetpack</h3>\n<p>The number of WordAds sites are up 111% year over year. WordAds currently has a few thousand self-hosted sites running <a href=\"https://wordpress.org/plugins/radcontrol/\" target=\"_blank\">AdControl/Jetpack Ads</a> and Springer said the team is expecting that number to grow considerably now that integration has been added to Jetpack. The AdControl plugin is still available for non-Premium Jetpack users but the standard application and traffic requirements apply. Springer said they plan to phase out the plugin at some point in the future but there are no definite plans yet.</p>\n<p>&#8220;Tens of thousands of WP.com sites are approved WordAds (meaning they applied and were approved) out of many tens of thousands more total applications,&#8221; Springer said. &#8220;Additionally, every freemium WordPress.com site is running our ad network, though we naturally keep all the revenue from those sites.&#8221;</p>\n<p>With a gaggle of new publishers joining WordAds through Jetpack, one might imagine that rates and payouts for existing users would decrease as more advertising space becomes available. However, this isn&#8217;t how advertising networks work.</p>\n<p>&#8220;Generally speaking, advertisers want to display more ads than most publishers are able to provide (known as inventory), so adding more publishers/inventory to a network is a net benefit to advertisers and is what attracts the bigger, higher paying ad buyers,&#8221; Springer said. &#8220;If we can tell our ad partners &#8216;We have 10,000,000,000 pageviews available this month across our network,&#8221; then that attracts much more lucrative buyers than if a user has to try to attract them on their own. Advertisers also like that they can cut one deal for a million sites as opposed to having to cut them piecemeal and are generally willing to give us better deals. The whole &#8216;powers 27% of the web&#8217; is a pretty tasty morsel for ad networks.&#8221;</p>\n<h3>Advice for Publishers New to WordAds: Keep Expectations Realistic</h3>\n<p>Seamless advertising is a major incentive for Jetpack users to sign up for the Premium plan, which also includes backups, one-click restores, security scanning, and 13GB video storage. The prospect of being able to flip the switch to turn on ads and potentially start earning money is very compelling, especially for users who have struggled with other forms of advertising that were not WordPress-compatible.</p>\n<p>The general outlook for WordAds is improving, as the product has evolved to reward higher quality content. As advertisers receive a better return on their investments, their confidence in bidding should increase. However, most publishers should expect to see fluctuations on earnings.</p>\n<p>WordPress.com&#8217;s <a href=\"https://dailypost.wordpress.com/2013/02/14/wordads/\" target=\"_blank\">Daily Post Blog</a> advises new publishers to temper their expectations with the knowledge that they would need &#8220;hundreds of thousands of pageviews to generate meaningful earnings.&#8221; For most average bloggers, the ad revenue may not buy more than a decent cup of coffee.</p>\n<p>Mortiz Linder, an owner of traveluxblog.com, <a href=\"https://traveluxblog.com/2016/10/29/my-experience-with-wordads/\" target=\"_blank\">published his earnings</a> and described his experience as &#8220;rather average.&#8221;</p>\n<p>&#8220;It&#8217;s a nice idea to gain something without effort, to get at least something back for all the work we put into traveluxblog each day,&#8221; Moritz said.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Jan 2017 01:40: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:\"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:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: WPWeekly Episode 260 – SiteGround, Affiliate Summit Recap, and New Security Czar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65327&preview=true&preview_id=65327\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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-260-siteground-affiliate-summit-recap-and-new-security-czar\";s: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:2802:\"<p>In this episode of WordPress Weekly, <a href=\"http://www.marcuscouch.com/\">Marcus Couch</a> recaps his trip to Affiliate Summit 2017 held in Las Vegas, Nevada last weekend. Based on the vendors that were on the expo floor, mobile is the e-commerce platform of the future. We discuss the news of the week and share how you can get involved in the <a href=\"http://make.wordpress.org/marketing\">WordPress Marketing Group</a>. We end the show with Marcus&#8217; plugin picks of the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/aaron-d-campbell-replaces-nikolay-bachiyski-as-wordpress-security-czar\">Aaron D. Campbell Replaces Nikolay Bachiyski as WordPress’ Security Czar</a><br />\n<a href=\"https://wptavern.com/postmatic-basic-rebrands-as-replyable-moves-two-way-email-commenting-to-saas-product\">Postmatic Basic Rebrands as Replyable, Moves Two-Way Email Commenting to SaaS Product</a><br />\n<a href=\"https://wptavern.com/siteground-auto-issues-lets-encrypt-certificates-for-new-domains\">SiteGround Auto-Issues Let’s Encrypt Certificates for New Domains</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/background-image-cropper/\">Background Image Cropper</a> adds cropping to background images for parity with header images. This feature is starting out as a plugin to gauge user interest and to determine if it improves the user experience of background images.</p>\n<p><a href=\"https://wordpress.org/plugins/woo-product-remover/\">Woo Product Remover</a> allows you to remove all WooCommerce products from your site. It removes products, their metadata, relationships, as well as product variations and their related meta data from the database.</p>\n<p><a href=\"https://wordpress.org/plugins/wp-tasks-after-install/\">WP Tasks After Install</a> completes a series of tasks most commonly performed after WordPress is installed. These tasks include, removing the default Hello World post, setting permalinks to %postname%, activating Akismet, and more. The plugin will automatically deactivate itself when the tasks are completed.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, January 25th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #260:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Jan 2017 22:59: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:\"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: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:51:\"HeroPress: Living A Better Life Thanks 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:56:\"https://heropress.com/?post_type=heropress-essays&p=1571\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://heropress.com/essays/living-better-life-thanks-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:12009:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/01/011817-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"My experience as a remote worker lets me have greater foreight which in turn allows me to carry out so many activities.\" /><p>To me, as well as many others, WordPress is more than a technical choice, it’s a lifestyle choice. I didn’t see it as such right away. Looking at the last 4 years of my life, I can fully appreciate its impact.</p>\n<p>Aspiring to a life full of adventures and whimsy; I never really fit the mold. American TV series and movies that taught me my dreams could be achieved if I worked hard enough. Armed with that knowledge (and without a fancy diploma to my name), I worked bank, police, IT, supply chain jobs until I discovered the joy of making websites.</p>\n<p>My newfound passion (and many sleepless nights of work) helped me become a webdesigner. At the time, Joomla!, Spip and Typo 3 were the big names out there (in France). After achieving the role of Artistic Director as a freelancer; it took me a few years to open my own web agency. That moment changed my thinking: it was no longer ME but WE. And when a client asked us to use WordPress, we got to experience the CMS and its community.</p>\n<h3>Focusing on WordPress</h3>\n<p>Our team quickly realized that WordPress could do much more than “just blogs”. In France, the CMS kept having a reputation as a blog only platform. Complex websites were not made in WordPress. Our agency decided to convince clients otherwise. To achieve our mission and hone our skills, we decided to get closer to the WordPress community. I naively offered my help in evangelization efforts to the Paris WordCamp organizers. Except that there was one clear hurdle in our path: we had never contributed anything to the community before! This meant that we were relatively unknown. Needless to say that the feedback we received wasn’t what we expected.</p>\n<h3>Contributions: It’s About Helping Others</h3>\n<p>Contributing meant one thing: bring something to the WordPress ecosystem to help improve it. The WordCamp association’s president asked us to answer questions on the French forum as a token of our goodwill, to show our commitment.</p>\n<p>I started to answer questions right away but felt like an imposter. All the questions on the forum seemed so technical. I didn’t know how to contribute since I wasn’t a developer. It wasn’t like I was going to create a theme or plugin anytime soon. I kept obsessing over ways I could provide value to the community. I thought about my skills but couldn’t come up with something that would make a real difference.</p>\n<blockquote><p>Sure I could speak English, but translating documents was not something I felt comfortable doing.</p></blockquote>\n<p>So I turned to the previous WordCamp Paris conference and took a closer look at the participants. There, I found my first clue: a marketing expert! I reached out to him to see if I could interview him. As Marketing Director of a press group, he had lead a big WordPress project for his company. Interviewing him brought me two things: an article for our blog discussing what could be done with WordPress and a solid understanding of how the inner workings of the French WordPress community. He gave me an idea of the path one would take to end up giving a conference at the WordCamp. I didn’t realize it at the time, but by picking a name on a conference program, I would meet one of the key players in my WordPress story: Benjamin.</p>\n<p>Meanwhile, I continued to write articles about projects made with WordPress, sometimes ours, sometimes the competition’s. Good WordPress knows no bounds so it was necessary for me to showcase all the amazing websites made with this CMS. It’s also how I discovered my main competitors (before meeting them in the flesh later at various events).</p>\n<p>A white paper detailing the success of WordPress as a CMS got my name out. This allowed me to gain the courage to pitch my first conference. Providing feedback on projects allowed me to find my place in the WordPress community. Focusing on my experience and helping others didn’t require developer skills. My contribution was in writing and not in coding.</p>\n<h3>My First WordPress Conference As A Speaker</h3>\n<p>My first conference topic was on how to create a multilingual, multi-site project with WordPress in 3 months. Needless to say that I was nervous. I mean, speaking in front of 300 people is not something I had done while working at a bank, or in the police force or in any other job really. Adventure: here I come!</p>\n<blockquote><p>The WordPress community was very kind to me and my first conference experience was a memorable one.</p></blockquote>\n<p>During this conference, I wanted to highlight the plugins we used for this project. I mentioned a French startup that had launched a premium plugin as its first product. I found their approach interesting, so I thought I would give them a little visibility. Showcasing good WordPress websites, themes and plugins was already a habit of mine by then. The French team were happy to be mentioned and happened to be present at the event. They came to talk to me after my conference. Turns out, we had a lot to talk about. The company’s name: WP Media. They would open a new chapter of my WordPress story.</p>\n<p>During the closing night, I also met a lot of people. Some of them, just like Benjamin were going to have a big impact on my life. Many became great friends as well as mentors like Jenny Beaumont.</p>\n<p>Once I got started, there was no stopping me! I continued to speak at events (WordCamp Lyon, WP Tech Nantes), attended meetups, continued writing articles to highlight WordPress projects.</p>\n<p>The following year, I joined the organizing team of WordCamp Paris.</p>\n<p>Meanwhile, I go to my first WordCamp Europe which was a major new turn.</p>\n<h3>WordCamp Europe 2014 Changed My Life</h3>\n<p>Going to the WordCamp Europe changed my life. It’s an experience I highly recommend. If you can, go to the next WordCamp Europe!</p>\n<p>The organizers managed to pack so many international speakers that my head was spinning. Speakers were coming from all over the world. The quality of the talks (and speakers) along with the breadth of subjects covered open so many possibilities. You could end up changing your approach to WordPress or finding a new method of working with your peers.</p>\n<p>I attended a conference by Noel Tock named Beyond the code where he explained how he managed his life working in remote while traveling at the same time. He also gave insights as to how to monitor your time and how to optimize it.</p>\n<blockquote><p>Realizing that such a life was possible; that you could achieve this time of freedom by reclaiming your time was a massive discovery.</p></blockquote>\n<p>The second eye-opening conference for me was Simon&#8217;s lecture on Running an open source. He explained that that undertaking Open Source also meant contributing and collaborating with a community, including your competitors. Simon showed us for 30 minutes that working with competitors was not only beneficial for us agencies, but also for the customer, and for the WordPress community as a whole.</p>\n<h3>Professional WordPress</h3>\n<p>Becoming a strong voice in the professionalisation of WordPress in France and encouraging web agencies to contribute and to exchange more had become priority subjects.</p>\n<p>I have launched a WP Next association for professionals</p>\n<ul>\n<li>To ensure the promotion of WordPress, mainly with professionals, managers of information system, internet director, new media, &#8230; and more generally all IT decision makers.</li>\n<li>To enhance the skills of WordPress professionals with decision-makers,</li>\n<li>Promote French know-how around the WordPress CMS, associated technologies and services</li>\n</ul>\n<p>I also launched with Deborah Donnier a documentary project Think WP to make known WordPress and its community.</p>\n<h3>A new turn</h3>\n<p>With these activities I gradually moved away from the creation of websites. Having so many opportunities tied to WordPress available to me, I decided to take a new turn. During the Wordcamps across Europe, I took great pleasure in exchanging with WP Media. We had kept contact since our first meeting. My profile and experience seemed to like a great fit for a new role in the WP Media adventure. I took a leap and became COO of the startup about a year ago. I manage my agency in parallel.</p>\n<p>I now work 100% remotely and so does a great portion of my agency. As for WP Media, everyone works remotely. Being a remote worker frees me from constraints that are inherent when you live in the Paris region (it’s a city and province in France). Time spent on commuting is used for other activities.</p>\n<p>My experience as a remote worker lets me have greater foresight which in turn allows me to carry out so many activities.</p>\n<p>Today, I can proudly say that I attended the US WordCamp last year and am helping organize this year’s WordCamp Europe with Jenny and Benjamin.I feel like I belong in a global community that thrives thanks to its members and their desire to improve WordPress.</p>\n<p>WordPress helped me along the path to a life full of adventures and long lasting friendships. It offers so many opportunities to forge beautiful projects, stories and more.</p>\n<p>I hope that my story will inspire someone else to get started and find the courage to persevere on the way to a life full of adventures (with or without WordPress). Give yourself time and open yourself to other points of view to help build the life you aspire to.</p>\n<p>Thank you for reading my story and see you at WordCamp Europe 2017!</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: Living A Better Life Thanks To WordPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Living%20A%20Better%20Life%20Thanks%20To%20WordPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fliving-better-life-thanks-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Living A Better Life Thanks To WordPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fliving-better-life-thanks-wordpress%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%2Fliving-better-life-thanks-wordpress%2F&title=Living+A+Better+Life+Thanks+To+WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Living A Better Life Thanks To WordPress\"></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/living-better-life-thanks-wordpress/&media=https://heropress.com/wp-content/uploads/2017/01/011817-150x150.jpg&description=Living A Better Life Thanks To WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Living A Better Life Thanks To WordPress\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/living-better-life-thanks-wordpress/\" title=\"Living A Better Life Thanks To WordPress\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/living-better-life-thanks-wordpress/\">Living A Better Life Thanks To WordPress</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 Jan 2017 12:00:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Emilie Lebrun\";s: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:55:\"WPTavern: How to Add Users to BuddyPress Groups in Bulk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65283\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wptavern.com/how-to-add-users-to-buddypress-groups-in-bulk\";s: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:3220:\"<p>On a site I&#8217;m working on that runs BuddyPress, I created a new group and wanted to add nearly 400 registered users to it. Unfortunately, adding users to BuddyPress groups in bulk is not a core feature. I searched Google for a solution and while the <a href=\"http://www.youngtechleads.com/buddypress-members-import/\">BuddyPress Members Import</a> plugin is recommended in many of the support threads, the feature alone is not worth spending $49.</p>\n<p>Continuing my search, I discovered a <a href=\"https://gist.github.com/rohmann/6151699\">code snippet</a> published by <a href=\"https://premium.wpmudev.org/profile/alexander_rohmann/\">Alexander</a> on the <a href=\"https://premium.wpmudev.org/forums/topic/bulk-adding-buddypress-group-members?replies=14&utm_expid=3606929-94.Ie3dH-CaRwe6MU3VrZsdvw.0&utm_referrer=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fimport-with-buddypress-groups%2F#post-484834\">WPMU DEV forums</a> that works perfectly. To use it, copy the code and add it to a custom WordPress plugin or paste it to your theme&#8217;s functions.php file. I added the code to the top of my theme&#8217;s functions.php file.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/CodeSnippetInThemeFunctionsPHPFile.png?ssl=1\"><img /></a>Code Snippet at the Top of my Theme&#8217;s Functions.php File\n<p>The JavaScript portion of the snippet adds a new item to the Bulk Actions drown-down menu named Add to BP Group.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/AddToBPGroup.png?ssl=1\"><img /></a>Add to BP Group Bulk Action Menu Item\n<p>Select the users you want to add to a group and select Add to BP Group. A prompt appears asking for the Buddy Group ID you want to assign the users to.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/01/EnterBuddyPressGroupIDPrompt.png?ssl=1\"><img /></a>BuddyPress Group ID Prompt\n<p>To locate the Group ID, click on the Groups admin menu and click on the group&#8217;s name. The URL will look something like this admin.php?page=bp-groups&amp;gid=357&amp;action=edit and the ID is the number that appears after gid=. After entering the ID number, click the Ok button. All of the users you selected will be assigned to that group.</p>\n<p>In the comments of the code snippet on GitHub, <a href=\"https://gist.github.com/rohmann/6151699#gistcomment-1580235\">Strand-C said</a> he wasn&#8217;t able to move 165 users at a time and had to move 50 instead. I tested this theory by moving nearly 400 registered users at the same time to a new BuddyPress group and didn&#8217;t encounter any issues. Keep in mind that the site I&#8217;m working on is relatively new, is running WordPress 4.7, and has very little traffic which could explain why I didn&#8217;t have a problem.</p>\n<p>Being able to manage BuddyPress groups in bulk should be a core feature. There is at least one <a href=\"https://buddypress.trac.wordpress.org/ticket/6161\">open ticket on BuddyPress trac</a> to add Bulk Edit options to Groups. Until these features make their way into BuddyPress, the code snippet above is a free work-around that makes adding users to groups in bulk a lot more convenient.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 Jan 2017 22:23:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: SiteGround Auto-Issues Let’s Encrypt Certificates for New Domains\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65204\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/siteground-auto-issues-lets-encrypt-certificates-for-new-domains\";s: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:3373:\"<p>SiteGround is now <a href=\"https://www.siteground.com/blog/https-2017/\" target=\"_blank\">auto-issuing Let&#8217;s Encrypt certificates</a> for every domain hosted on its shared servers. The company has also begun issuing and installing certificates on new accounts automatically after customers register domains or direct new domains to SiteGround&#8217;s servers. This also includes add-on domains added in cPanel. The certificates are also auto-renewed as long as the domains are pointed to the host&#8217;s servers.</p>\n<p>&#8220;Since the launch of Let’s Encrypt our customers have installed nearly 40,000 such certificates,&#8221; said Hristo Pandjarov, WordPress specialist at SiteGround. &#8220;This is less than 10% of the 500,000 domains we host. Together with the paid certificates we may say that 15% of the domains we host were using the HTTPS protocol before we started the auto-issuing procedure.&#8221;</p>\n<p>SiteGround is a sponsor of Let&#8217;s Encrypt and one of the first to auto-issue certificates to self-hosted WordPress customers. Let&#8217;s Encrypt <a href=\"https://wptavern.com/lets-encrypt-passes-20-million-active-certificates-in-2016\" target=\"_blank\">passed 20 million active certificates in 2016</a> and the pressure is on for more sites to adopt SSL in 2017 with Google marking insecure sites in Chrome and using HTTPS as a ranking signal.</p>\n<p>&#8220;What prompted this decision is that we truly believe HTTPS is the future standard for web protocol and we also believe it is the better protocol,&#8221; Pandjarov said. &#8220;This is a good enough motivation for us to take the step of installing it automatically. We have decided to automate the SSL issuance and setup almost right after the appearance of the Let’s Encrypt initiative. Matt Mullenweg’s statement at WordCamp US that issuing SSL certificates will be a very important factor in evaluating a web host, was one more validation that this planned automation was a decision in the right direction.&#8221;</p>\n<p>According to Pandjarov, the vast majority of SiteGround&#8217;s customers are running WordPress. Respondents to the company&#8217;s 2016 client survey indicated that more than two thirds of them use WordPress, which Pandjarov said is a 10% increase in the popularity of WordPress among SiteGround users.</p>\n<h3>Next Step for SiteGround: Pre-Configuring WordPress Installs to Use SSL with One Click </h3>\n<p>Auto-issuing certificates does not guarantee that SiteGround customers will jump through the hoops to configure their sites to use the certificates. Installing a certificate on an existing WordPress site is not as straightforward as a simple click in most cases. SiteGround is working on fully automating this process for its WordPress customers.</p>\n<p>&#8220;If we really want to get closer to 100% HTTPS usage, we need to do more than just automatically issue the certificate,&#8221; Pandjarov said. &#8220;Our next step is to provide a way to pre-configure an active WordPress site, hosted on our servers, to work with the already issued SSL with one click. Additionally, our auto-installer is being updated to install all new WordPress sites as https-ready.&#8221;</p>\n<p>SiteGround doesn&#8217;t yet have an ETA for one-click SSL configuration but Pandjarov said the announcement will be coming soon.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 Jan 2017 21:52: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: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:95:\"WPTavern: Postmatic Basic Rebrands as Replyable, Moves Two-Way Email Commenting to SaaS Product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65245\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/postmatic-basic-rebrands-as-replyable-moves-two-way-email-commenting-to-saas-product\";s: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:5935:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/replyable.png?ssl=1\"><img /></a></p>\n<p>Postmatic is rebranding its WordPress.org <a href=\"https://wordpress.org/plugins/postmatic/\" target=\"_blank\">Postmatic Basic</a> plugin as Replyable and pushing the two-way email commenting feature into <a href=\"https://replyable.com/\" target=\"_blank\">a new SaaS product</a>. After discovering that many users simply want email commenting, without additional post delivery and newsletter features, Postmatic launched <a href=\"https://replyable.com/\" target=\"_blank\">Replyable</a> to offer this starting at $3/month.</p>\n<p>&#8220;Replyable was born out of user feedback,&#8221; founder Jason Lemieux said. &#8220;Postmatic does more than most sites need and the price is squarely mid-market. From the beginning we’ve heard from users that they already use another newsletter service and just want Postmatic to handle comment subscriptions &#8211; but that alone isn’t worth $20 to too many people. With Replyable we can offer it for $3.&#8221;</p>\n<p>Lemieux and his team have now transitioned Postmatic to be purely a Saas product without a presence in the WordPress.org directory.</p>\n<p>&#8220;Postmatic will continue to grow as a complete engagement system and, if anything, become even more complex and go further up market,&#8221; Lemieux said. &#8220;Sites which use Postmatic tend to dive in deeply. It is meant to function as a package. Grow a list, deliver to it, get them talking about your ideas, monetize the results.&#8221;</p>\n<p>The <a href=\"https://wordpress.org/plugins/postmatic/\" target=\"_blank\">Replyable plugin on WordPress.org</a> now simply covers comment subscriptions with all other features available in the commercial products.</p>\n<p>Ripping an existing feature out of a free plugin and making it paid is fairly unusual and can have a negative impact on how users perceive the plugin. However, Postmatic has a plan to allow legacy users to continue using the features they had before by switching to <a href=\"http://docs.replyable.com/article/284-switching-from-postmatic-basic-to-replyable\" target=\"_blank\">Postmatic Labs</a>. It&#8217;s an inconvenient change but is required for those who don&#8217;t want to upgrade to a commercial plan.</p>\n<p>Although WordPress.org says Postmatic has approximately 1,000 active installs, Lemieux estimates there are 8,000 users including those using the commercial plugin or the Labs plugin. He would not share any specific revenue figures but said he learned some important pricing lessons in leading the bootstrapped startup for the past two years.</p>\n<p>&#8220;We aren’t a runaway WordPress success story but we’re alive and loving our jobs,&#8221; Lemieux said. &#8220;About six months ago it became apparent that we needed to get out of the mid market. We had a huge group of people saying, &#8216;I just want email commenting and will totally pay you 5 bucks a month for it,&#8217; and another group saying, &#8216;We pay $6,000 a month sending Mailchimp RSS campaigns but yours are better for only $1500. Why so cheap?&#8217; That’s been a frustrating reality and a big lesson in knowing your audience and pricing appropriately.&#8221;</p>\n<h3>Next on Postmatic&#8217;s Roadmap: Epoch 2</h3>\n<p>In July 2015, <a href=\"https://wptavern.com/postmatic-brings-100-realtime-commenting-to-wordpress-with-epoch-plugin\" target=\"_blank\">Postmatic introduced Epoch</a> as a Disqus alternative, offering 100% realtime commenting for WordPress. The plugin submits comments via AJAX so that they appear instantly without refreshing the page. Lemieux and the team have been working on the second version for nearly a year.</p>\n<p>&#8220;Epoch 2 is a huge step forward,&#8221; Lemieux said. &#8220;We built it on top of the REST API and Angular. It’s fast and incredibly light. Commenting isn’t sexy &#8211; I don’t think it will ever be, but comments are great for SEO, community, and for building brands and authority. Comments aren’t going away. In fact, they are vitally important to keeping the web as a place for discourse, conversation, and the sharing of ideas. We need to continue to make them a better experience. Epoch isn’t groundbreaking in its functionality but it does the job of making sure sites of any size can still run native WordPress comments.&#8221;</p>\n<p>Postmatic continues to innovate with native comments, an aspect of WordPress that doesn&#8217;t have as many commercial players as something like forms or e-commerce. Lemieux attributes this underserved area to the poor reputation of previous non-native solutions.</p>\n<p>&#8220;I think it is because of the rise and fall of third party commenting system,&#8221; Lemieux said. &#8220;Early in WordPress history services like Disqus and Livefyre grabbed huge parts of the comment traffic on WordPress sites by offering more features, better speed, and improved moderation tools (with the hidden cost of selling your users down the river). It was certainly a siren song. But most all of them stagnated, violated user trust, or just plain didn’t work well. And commenting got a bad name. Naturally came the trend in disabling comments and, well, now here we are and people are trying to have conversations 140 characters at a time.&#8221;</p>\n<p>Lemieux said the innovation he sees happening outside WordPress makes him believe that comments can overcome their past reputation.</p>\n<p>&#8220;Things are getting better &#8211; and hopefully more folks will begin to innovate,&#8221; Lemieux said. &#8220;Lucky for us other blogging and publishing platforms are innovating and coming up with interesting ideas all the time. Some of them, like <a href=\"https://wordpress.org/plugins/inline-comments/\" target=\"_blank\">inline commenting</a> from Medium, do make their way back over to WordPress. That makes me optimistic.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Jan 2017 15:49: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: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:84:\"WPTavern: Aaron D. Campbell Replaces Nikolay Bachiyski as WordPress’ Security Czar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65102\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/aaron-d-campbell-replaces-nikolay-bachiyski-as-wordpress-security-czar\";s: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:2535:\"<p><a href=\"https://aarondcampbell.com/\">Aaron D. Campbell</a>, WordPress Core Contributor at GoDaddy, is replacing <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a> as WordPress&#8217; Security Czar or WordPress Core Security Team Lead. The role was <a href=\"https://wptavern.com/short-interview-with-nikolay-bachiyski-wordpress-security-czar\">created in 2015</a> to provide more structure and focus around incident responses.</p>\n<p>&#8220;The responsibilities of the position include, organizing the security team and making sure all security concerns and reports get triaged and ultimately fixed, coordinating the security side of releases, and being a point of contact for any security related things that need one,&#8221; Campbell said.</p>\n<p>Matt Mullenweg, co-creator of the WordPress project, <a href=\"https://make.wordpress.org/core/2017/01/09/aaron-campbell-leading-security/\">thanked Bachiyski</a> for being the first to accept the role and putting the foundation in place for future team leads, &#8220;This is also a good time to thank the dozens of volunteers who participate in the security group, and the researchers and reporters who bring issues to our attention,&#8221; he said.</p>\n<p>Campbell says he plans to finish what Bachiyski started by getting WordPress.org onto HackerOne. &#8220;Nikolay did a lot of work around expanding our team as well as getting the foundation laid for moving over to <a href=\"https://hackerone.com/\">HackerOne</a>,&#8221; he said.</p>\n<p>&#8220;We aren&#8217;t quite ready to make the move completely, but I hope to phase out the security@ E-Mail address in favor of HackerOne in the near future.&#8221;</p>\n<p>In late 2016, GoDaddy <a href=\"https://aarondcampbell.com/2016/09/joining-godaddy-as-a-full-time-wordpress-core-contributor/\">hired Campbell</a> to contribute to WordPress core full-time. The company continues to back his involvement in WordPress, &#8220;The role is completely voluntary,&#8221; Campbell said. &#8220;GoDaddy has truly been extremely hands off while funding me to do all this, and I&#8217;m grateful to have that continue.&#8221;</p>\n<p>If you think you&#8217;ve discovered a security vulnerability with the self-hosted version of WordPress, you&#8217;re encouraged to <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsibly disclose</a> it to the security team by emailing security @ wordpress.org and include as much detail as possible.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 14 Jan 2017 23:53:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: Automattic Releases Free Plugin for Exporting Photos from Lightroom 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=65177\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/automattic-releases-free-plugin-for-exporting-photos-from-lightroom-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:2493:\"<p>Yesterday Automattic <a href=\"https://en.blog.wordpress.com/2017/01/12/wordpress-com-lightroom/\" target=\"_blank\">released</a> a new free plugin the makes it easy for Lightroom users to export their photos to WordPress. <a href=\"http://www.adobe.com/products/photoshop-lightroom.html\" target=\"_blank\">Lightroom</a> is an Adobe product for managing and editing photos, and the plugin works with the software on MacOS and Windows. It is compatible with both WordPress.com and Jetpack-powered sites.</p>\n<p>The <a href=\"https://apps.wordpress.com/lightroom/\" target=\"_blank\">Lightroom plugin</a> requires a WordPress.com account to install. Users can then select photos in Lightroom and export them to a WordPress site with all the standard settings available, such as image resizing, watermarking, output sharpening, and more. The plugin automatically exports titles and captions. A large number of photos can take awhile to export, but once the upload is finished users can find their images in the WordPress media library.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/01/wp-lightroom.png?ssl=1\"><img /></a></p>\n<p>When asked for tips on suggested upload size and compression, Automattic representative John Godley said, &#8220;WordPress.com can handle pretty much anything you throw at it! I personally go for a high quality and large size so it looks good on a HiDPI screen, and then let WordPress resize as necessary to fit the viewers device.&#8221;</p>\n<p>It&#8217;s not yet clear how the release of Automattic&#8217;s free plugin will affect the commercial products that exist for a similar purpose. <a href=\"https://flothemes.com/flo-plugins/\" target=\"_blank\">FloLight</a>, <a href=\"https://meowapps.com/wplr-sync/buy/\" target=\"_blank\">WPLR Sync</a>, and other solutions will need to offer more features with a quicker setup if they want to compete with the new free Lightroom plugin.</p>\n<p>Those who want to use the plugin must already have a Lightroom license (standalone or subscription). Although this is a relatively small subset of overall WordPress users, it saves a great deal of time for photobloggers and those who process a large number of photos with Lightroom before posting online. For most, this <a href=\"https://apps.wordpress.com/lightroom/\" target=\"_blank\">plugin</a> simplifies what was previously a tedious, multi-step process of manually uploading the photos after working with them in Lightroom.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 14 Jan 2017 00:13:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:79:\"WPTavern: Wes Bos Launches JavaScript30, a Free 30-Day Vanilla JS Coding Course\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65209\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/wes-bos-launches-javascript30-a-free-30-day-vanilla-js-coding-course\";s: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:2601:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/01/javascript30.png?ssl=1\"><img /></a></p>\n<p>For those who failed to &#8220;learn JavaScript deeply&#8221; last year, 2017 offers a clean slate for restarting your JavaScript learning goals. <a href=\"http://wesbos.com/\" target=\"_blank\">Wes Bos</a>, a developer and educator known for his high quality video tutorials, recently launched a free 30-day vanilla JS coding challenge course that provides structure for developing a new habit of daily learning.</p>\n<p><a href=\"https://javascript30.com/\" target=\"_blank\">JavaScript30</a> walks users through building 30 things in 30 days with no frameworks, no compilers, no libraries, and no boilerplate. The course is suitable for beginner to intermediate developers and designers who want to get a solid grasp of JavaScript fundamentals. It purposely steers clear of abstractions like frameworks to help students gain a better understanding of browser APIs while working in the DOM without a library.</p>\n<p>Bos designed the course to help students gain competence through building things, the advice he gives to anyone wanting to improve their JavaScript skills.</p>\n<p>&#8220;So, you&#8217;ve done a few courses and read a few books but still don&#8217;t feel great about your relationship with JavaScript,&#8221; Bos said. &#8220;How do you get better? Build things. Lots of things. Build 1,000 things. Keep it up and don&#8217;t stop.&#8221; The course is packed full of quick, interesting, and practical projects.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/javascript30-lessons.png?ssl=1\"><img /></a></p>\n<p>JavaScript30 includes access to 30 videos, 30 days of starter files, and completed HTML, CSS, and JS Solutions for each day. The videos are accessible and ESL-friendly with closed captions provided.</p>\n<p>Bos said he spent more than 300 hours creating the videos as a thank-you to those who have supported his paid courses.</p>\n<p>&#8220;I see a huge need for these videos and I really think it will help many&#8230;become comfortable creating with JavaScript,&#8221; he said.</p>\n<p>Bos is also the author of the free <a href=\"https://wptavern.com/wes-bos-launches-free-react-js-redux-online-course\" target=\"_blank\">Learn Redux</a> course, which includes 2.5 hours of videos that help students get started with React.js, Redux, and React Router. Some of his other popular <a href=\"http://wesbos.com/courses/\" target=\"_blank\">courses</a> include React for Beginners, Learn Redux, and ES6 for Everyone.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Jan 2017 22:05: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: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:61:\"WPTavern: WPWeekly Episode 259 – 2016 Year in Review Part 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:58:\"https://wptavern.com?p=65198&preview=true&preview_id=65198\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/wpweekly-episode-259-2016-year-in-review-part-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:1040:\"<p>In this episode, <a href=\"http://www.marcuscouch.com/\">Marcus Couch</a> and I recap the news that made headlines during the second half of 2016. I explain why there wasn&#8217;t a show last week and we close out the episode with our predictions for 2017. We&#8217;ll be back to our regular show format on Wednesday, January 18th.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, January 18th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #259:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Jan 2017 09:37:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:78:\"WPTavern: 2nd Edition of Producing Open Source Software Now Available for Free\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65181\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/2nd-edition-of-producing-open-source-software-now-available-for-free\";s: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:3579:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/producing-oss.png?ssl=1\"><img /></a></p>\n<p>The second edition of <a href=\"http://www.red-bean.com/kfogel/\" target=\"_blank\">Karl Fogel</a>&#8216;s &#8220;Producing Open Source Software: How to Run a Successful Free Software Project&#8221; is now available for download. Fogel, a partner at <a href=\"https://opentechstrategies.com/\" target=\"_blank\">Open Tech Strategies</a> and OSS contributor since 1997, was a founding developer in the Subversion project. He has worked for more than a decade as an open source specialist, helping businesses and organizations evaluate, launch, and manage open source projects.</p>\n<p><a href=\"http://producingoss.com/\" target=\"_blank\">Producing Open Source Software</a> version 2 was released for free this week under the Attribution-ShareAlike 4.0 International license. The first edition was published in 2005 but the landscape of OSS has changed drastically over the past 12 years. In 2013, Fogel <a href=\"https://www.kickstarter.com/projects/kfogel/updating-producing-open-source-software-for-2nd-ed/description\" target=\"_blank\">successfully raised $15,376</a> towards his $10,000 Kickstarter goal to fund the revision.</p>\n<p>The book includes topics like &#8216;Free&#8217; Versus &#8216;Open Source,&#8217; choosing a license, version control, social and political infrastructure, the economics of open source, culture, and communication. It was written for managers and software developers but can also be informative for newcomers to open source projects.</p>\n<p>Fogel originally planned on finishing the second edition by the end of 2013 but experienced delays due to starting his company. Some chapters also took longer to revise than he anticipated.</p>\n<p>&#8220;In retrospect, if I had understood what the pressures of a young and growing company would be, I would not have started the 2nd edition when I did,&#8221; Fogel said. &#8220;It has been a lesson.&#8221; Fortunately, for the 314 Kickstarter backers  who might have been waiting on his work for four years, progress was immediately available in the public repository for the book. Fogel didn&#8217;t keep any private version of the book elsewhere.</p>\n<p>&#8220;While there are substantial changes throughout the book, the most expanded chapter is probably Chapter 5, &#8216;Participating as a Business, Non-Profit, or Government Agency,\'&#8221; Fogel said. &#8220;That chapter&#8217;s title used to be just &#8216;Money,&#8217; so that gives you some idea of what the new material is.&#8221;</p>\n<p>He also found the third chapter on technical infrastructure to be more time consuming than the others due to all of the changes in the past decade. It took roughly four and a half months to revise it to include modern development tools.</p>\n<p>One of the central focuses of the book is the value of collaboration and the direct benefits it provides to an open source software project.</p>\n<p>&#8220;Competence at cooperation itself is one of the most highly valued skills in free software,&#8221; Fogel wrote in the preface. &#8220;Good free software is a worthy goal in itself&#8230; But beyond that I also hope to convey something of the sheer pleasure to be had from working with a motivated team of open source developers, and from interacting with users in the wonderfully direct way that open source encourages. Participating in a successful free software project is a deep pleasure, and ultimately that&#8217;s what keeps the whole system going.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Jan 2017 23:13: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Post Status: New Year’s resolutions for WordPress developers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=32188\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://poststatus.com/new-years-resolutions-wordpress-developers/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15739:\"<p><em><strong>Editor&#8217;s Note:</strong></em> This is a guest post by <a href=\"https://poststatus.com/profiles/jack-lenox/\">Jack Lenox</a>. Jack is a developer at Automattic and hails from the United Kingdom.</p>\n<p>For just over a year now, I have been working on the <a href=\"https://vip.wordpress.com/\">WordPress.com VIP</a> team at Automattic. I had been working at Automattic for the two years prior to this – and had been developing sites with PHP and WordPress for almost ten years prior to that. So you might imagine that I had a pretty good handle on developing stuff with WordPress.</p>\n<p>And you would be wrong. Getting started with the VIP team was an eye-opening and occasionally terrifying learning experience, occasionally resulting in me thinking: &#8220;please excuse me for a moment while I go and fix some horrible vulnerability in all of my WordPress sites.&#8221;</p>\n<p>Recently, I have cautiously found myself feeling slightly more comfortable with my position on the team. For some time, I have been wanting to document the most interesting and impactful things that I have learned in the past year.</p>\n<p>As some readers may know, a significant part of a developer&#8217;s job on the VIP team is reviewing code. Thus, with us being at the start a new year, I have hereby compiled some of the most interesting best practices I have discovered as a list of New Year&#8217;s Resolutions:</p>\n<h3>1. Use strict comparison operators</h3>\n<p>One of the many quirks of PHP is that it enjoys juggling. In particular, it enjoys <a href=\"http://php.net/manual/en/language.types.type-juggling.php\">juggling types</a>. This means that without explicit instruction, PHP doesn&#8217;t see a difference between a string of &#8220;string&#8221;, an integer of 0, and a boolean value of <code>true</code>.</p>\n<p>So for example this:</p>\n<pre><code>$var = 0;\nif ( $var == \'safe_string\' ) {\n    return true;\n}\n</code></pre>\n<p>Will return true. I know, what?! The easy solution here is to simply use strict comparison operators.</p>\n<p>So that&#8217;s <code>===</code> instead of <code>==</code>, and <code>!==</code> instead of <code>!=</code>. This pops up in a few other places too. By default the <a href=\"http://php.net/manual/en/function.in-array.php\"><code>in_array()</code></a> function has its strict parameter set to false.</p>\n<p>So:</p>\n<pre><code>in_array( 0, [\'safe_value\', \'another string\'] );\n</code></pre>\n<p>Will return true. To fix this, simply pass a third parameter of <code>true</code>.</p>\n<p>While we&#8217;re here, there&#8217;s one other form of comparison we should be aware of, and that&#8217;s <a href=\"http://php.net/manual/en/function.hash-equals.php\"><code>hash_equals()</code></a>. This provides a string comparison that prevents timing attacks.</p>\n<p>While a relatively uncommon form of attack on the web, it&#8217;s worth being aware of a timing attack. What is it? Well, when PHP compares two strings, it compares them one character at a time.</p>\n<p>So in the case of something like this:</p>\n<pre><code>$submitted_password = $_POST[\'password\']; // For argument\'s sake, let\'s say it\'s \"pa45word\"\n$password = \"pa55word\";\n\nif ( $submitted password === $password ) {\n    go_forth();\n}\n</code></pre>\n<p>PHP&#8217;s thought process in human terms is: Is the first character of each string p? Yes it is. Is the second character of each string a? Yes it is. And so on.</p>\n<p>It will do this until it realizes that the third characters differ and at that point it will bail. Thus, with sophisticated timing software, a password can gradually be worked out by calculating how long the process is taking. If the process takes slightly longer with one character than it does with every other character, an attacker will know that they have worked out the first character.</p>\n<p>Automated processes can keep doing this until the entire password is worked out. <code>hash_equals()</code> will compare two values, but will not bail early if it detects a difference.</p>\n<p>In conclusion, if you&#8217;re comparing sensitive values, use <code>hash_equals()</code>!</p>\n<h3>2. Use Yoda condition checks, you must</h3>\n<p>The <a href=\"https://make.wordpress.org/core/handbook/best-practices/coding-standards/php/#yoda-conditions\">WordPress PHP Coding Standards</a> suggest that you should: &#8220;always put the variable on the right side and put constants, literals or function calls on the left side.&#8221; Initially, this might just sound like a bit of pedantry, but it actually has a very practical application.</p>\n<p>Consider how catastrophic the following typo could be:</p>\n<pre><code>if ( $session_authorized = true ) {\n    unleash_the_secrets();\n}\n</code></pre>\n<p>Oh dear, instead of checking that <code>$session_authorized</code> is true, I am instead assigning the value of true to that variable.</p>\n<p>Now the secrets are being unleashed to whoever wants them. This could easily be missed when checking the code for bugs, even by a reviewer.</p>\n<p>Now imagine if the first line was expressed as:</p>\n<pre><code>if ( true = $session_authorized ) {\n</code></pre>\n<p>Well, it doesn&#8217;t. We can&#8217;t assign a variable to the static boolean value of <code>true</code>.</p>\n<p>Hopefully it won&#8217;t take us too long to work out why our code is still broken, but the secrets remain safe. So we&#8217;re good! <img src=\"https://s.w.org/images/core/emoji/2.2.1/72x72/1f600.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<h3>3. ABE. A Always, B Be, E Escaping. Always Be Escaping. ALWAYS Be Escaping.</h3>\n<p>Not having a firm grasp of the concepts of validation, sanitization and escaping can make you a very dangerous developer indeed.</p>\n<p>To the extent that libraries like React escape all output by default and to bypass this functionality, you have to use the attribute: <code>dangerouslySetInnerHTML</code></p>\n<p>Validation is checking that what your code is being passed is even vaguely what it&#8217;s expecting. So for instance, if we&#8217;re expecting an integer, we can use something like: <code>$zipcode = intval( $_POST[\'my-zipcode\'] )</code></p>\n<p>The <code>intval()</code> function returns its input as an integer and defaults to zero if the input was a non-numeric value. So while this won&#8217;t prevent our code from being passed zipcodes that aren&#8217;t valid, it does protect our code from being passed anything that isn&#8217;t a number.</p>\n<p>Naturally, we could go a step further to see if the zipcode actually appears to be valid. For example, 1111111111111 is not a valid zip code, but <code>intval()</code> doesn&#8217;t know that.</p>\n<p>Fortunately, beyond integers, WordPress has <a href=\"https://codex.wordpress.org/Data_Validation#Input_Validation\">a bunch of handy helper functions for almost every data type</a> including my favourite: <code>is_email().</code></p>\n<p>Sanitization is cleaning input to make sure that it&#8217;s safe in the context where we want to use it. This prevents one of the most common forms of security vulnerability, an <a href=\"https://www.owasp.org/index.php/SQL_injection\">SQL injection attack</a>.</p>\n<p>We also sanitize to fix practical things, like checking for invalid UTF-8 characters. WordPress has a class of <a href=\"https://codex.wordpress.org/Data_Validation#Input_Validation\"><code>sanitize_*()</code> helper functions</a>; here&#8217;s an example of how one looks in the wild:</p>\n<pre><code>$title = sanitize_text_field( $_POST[\'title\'] );\nupdate_post_meta( $post-&gt;ID, \'title\', $title );\n</code></pre>\n<p>Therefore no matter what garbage we might have been passed in <code>$_POST[\'title\']</code>, it won&#8217;t cause any real problems.</p>\n<p>Escaping is similar to sanitization, but instead it is cleaning what we&#8217;re sending out, rather than what we&#8217;re taking in. A major reason for doing this is to prevent another of the most common forms of security vulnerability, a <a href=\"https://www.owasp.org/index.php/XSS\">Cross-site Scripting (or XSS) attack</a>.</p>\n<p>We want to clean our output to ensure we aren&#8217;t accidentally echoing out something very dangerous that we didn&#8217;t realize we were inadvertently storing in our database (or perhaps fetched from an API).</p>\n<p>WordPress has <a href=\"https://codex.wordpress.org/Data_Validation#Output_Sanitization\">a bunch of very useful helper functions here</a>. Some common examples of these in the wild are:</p>\n<pre><code>&lt;h4&gt;&lt;?php echo esc_html( $title ); ?&gt;&lt;/h4&gt;\n</code></pre>\n<pre><code>&lt;img alt=\"\" src=\"&lt;?php echo esc_url( $great_user_picture_url ); ?&gt;\" /&gt;\n</code></pre>\n<pre><code>&lt;ul class=\"&lt;?php echo esc_attr( $stored_class ); ?&gt;\"&gt;\n</code></pre>\n<p>There is also <a href=\"https://developer.wordpress.org/reference/functions/wp_kses/\"><code>wp_kses()</code></a> which can be used on everything that is expected to contain HTML, and will filter out elements that are not explicitly allowed.</p>\n<p>As a general rule, the <code>the_*()</code> and <code>get_the_*()</code> theme functions are already escaped. However, the <code>get_bloginfo()</code> function, for example, is not escaped.</p>\n<p>For further information here, I highly recommend checking out the VIP team&#8217;s documentation on <a href=\"https://vip.wordpress.com/documentation/vip/best-practices/security/validating-sanitizing-escaping/\">Validating, Sanitizing, and Escaping</a>.</p>\n<h3>4. Stop trusting everything</h3>\n<p>Don&#8217;t trust user input. Don&#8217;t trust what&#8217;s in your database. Don&#8217;t trust any variables.</p>\n<p>Treat every variable with contempt.</p>\n<p>This way, even if, for example, someone sneaks some dodgy XSS code into your database, it&#8217;ll still get escaped on output and your site will be better protected.</p>\n<h3>5. Avoid inserting HTML directly into the document (when using JavaScript)</h3>\n<p>Doing something like this is dangerous because the data that we&#8217;re using could include many more DOM elements that dramatically alter the anticipated behavior of this code, and make it vulnerable to XSS attacks:</p>\n<pre><code>jQuery.ajax({\n    url: \'http://any-site.com/endpoint.json\'\n}).done( function( data ) {\n    var link = \'&lt;a href=\"\' + data.url + \'\"&gt;\' + data.title + \'&lt;/a&gt;\';\n\njQuery( \'#my-div\' ).html( link );\n});\n</code></pre>\n<p>Instead, we should programmatically create DOM nodes and append them to the DOM. So the above instead becomes this:</p>\n<pre><code>jQuery.ajax({\n    url: \'http://any-site.com/endpoint.json\'\n}).done( function( data ) {\n    var a = jQuery( \'&lt;a /&gt;\' );\n    a.attr( \'href\', data.url );\n    a.text( data.title );\n\njQuery( \'#my-div\' ).append( a );\n});\n</code></pre>\n<p>This is how a library like React does things behind the scenes. You can read more about this in <a href=\"https://vip.wordpress.com/2015/03/25/preventing-xss-in-javascript/\">a wonderful post about preventing XSS attacks in JavaScript</a> by my colleague, Nick Daugherty.</p>\n<h3>6. Review code</h3>\n<p>Have you ever reviewed a plugin before using it? I know, who&#8217;s got time for that right? I&#8217;ll tell you who: you.</p>\n<p>I have come to realize that reviewing code is possibly one of the best exercises for improving as a developer. Even if you&#8217;re quite new to programming or development, and you still feel pretty green, you really should give it a go.</p>\n<p>A great way to start is to review the next plugin you decide to use on your website. Before activating it, pop it open in your text editor of choice, and just spend some time scanning through it to understand what it does.</p>\n<p>A method I like to use here is to interpret each line of the code in simple English. You can even say it loud if you like – assuming you&#8217;re not sitting in a café or co-working space where people might become worried about you.</p>\n<p>You might be surprised at how often you find bugs and quirks in the code, or that the code isn&#8217;t conforming to the best practices outlined above. And if you discover issues, why not create a patch? Or if the plugin is on GitHub, create a pull request.</p>\n<p>You can also review your own code. A great method for doing this is to never deploy code straight into production. Instead, leave it on the day you finish it, and review it line by line in the morning. This method is easiest to adopt if you&#8217;re using something like GitHub where you can create a pull request with the changes, then review the pull request yourself the next day before merging it.</p>\n<p>In this vein, I highly recommend watching my colleague, Ryan Markel&#8217;s, <a href=\"http://wordpress.tv/2016/12/10/ryan-markel-code-review-keeping-things-secure-clean-and-performant/\">fantastic talk on this topic from WordCamp US 2016</a>.</p>\n<h3>7. Upgrade your tools (or at least use PHP_CodeSniffer)</h3>\n<p>There are lots of tools that help make web development easier, but if you&#8217;re doing a lot of WordPress development, the most valuable is probably <a href=\"https://github.com/squizlabs/PHP_CodeSniffer\">PHP<em>CodeSniffer</em></a>. It reads your code and automatically reviews it for bugs and coding standards inconsistencies while you type.</p>\n<p>It&#8217;s kind of like a spell checker, but for code. No matter how good your English is, you still use spell check right? So why wouldn&#8217;t you spell check your code?</p>\n<p>Here&#8217;s a bonus for you: the WordPress VIP Coding Standards are available by default with the <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards\">WordPress Coding Standards for PHPCodeSniffer</a>. So with that, it&#8217;ll check if you&#8217;re following most of the above resolutions.</p>\n<p>As you might imagine, using PHP_CodeSniffer also really helps highlight potential problems when you&#8217;re reviewing plugins and other people&#8217;s code.</p>\n<h3>8. Be curious</h3>\n<p>Far too often, I&#8217;m guilty of searching to try to find out what a particular WordPress function does, or scanning Stack Overflow to see if someone&#8217;s having the same problem as me.</p>\n<p>I have historically had a bad habit of seeing much of what WordPress does as magic, and avoiding getting too deep in the inner workings. But actually, it can be very beneficial to find out answers for yourself, instead of trying to find others who have already done the work.</p>\n<p>In essence, WordPress is quite simple. The code largely consists of functions taking arguments, and doing things with those arguments, and passing the results onto other functions taking arguments, and so on.</p>\n<p>It doesn&#8217;t take much to start unpicking something, and working out exactly what&#8217;s happening behind the scenes. So next time you&#8217;re struggling with a function, try going straight to looking at what the function actually does.</p>\n<p>Personally I find the <a href=\"https://github.com/wordpress/wordpress\">WordPress GitHub repo</a> that mirrors the core SVN repo to be a very useful way of doing this.</p>\n<p>The WordPress strapline is that &#8220;code is poetry&#8221;, and for its flaws I find that on the most part, the WordPress codebase is very readable, if nothing else! <img src=\"https://s.w.org/images/core/emoji/2.2.1/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<p>I&#8217;ll conclude by taking this opportunity to wish you a very happy and prosperous new year!</p>\n<p><strong><em>Note</em>:</strong> Some of the above has been gleefully plagiarized from <a href=\"https://vip.wordpress.com/documentation/vip/code-review-what-we-look-for/\">WordPress.com VIP&#8217;s Code Review documentation</a>. It&#8217;s an Aladdin&#8217;s cave of useful advice, and I highly recommend working your way through it as and when you can.</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 Jan 2017 21:26: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:10:\"Jack Lenox\";s: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:113:\"WPTavern: Tom McFarlin to Launch Marketplace for Blogging Plugins, Finds New Maintainer for WordPress.org Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=64899\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"https://wptavern.com/tom-mcfarlin-to-launch-marketplace-for-blogging-plugins-finds-new-maintainer-for-wordpress-org-plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5189:\"<p>Daily blogger and plugin author Tom McFarlin has found a new maintainer for five of his WordPress.org plugins. Within two days of <a href=\"https://tommcfarlin.com/wordpress-plugin-adoption/\" target=\"_blank\">putting the plugins up for adoption</a>, McFarlin <a href=\"https://tommcfarlin.com/wordpress-plugins-adopted/\" target=\"_blank\">announced</a> that <a href=\"https://twitter.com/philip_arthur\" target=\"_blank\">Philip Arthur Moore</a> will be taking over Category Sticky Post, Comment Tweets, Single Post Message, Tag Sticky Post, and Tipsy Social Icons. Moore, who is currently working as CTO at <a href=\"https://professionalthemes.nyc/\" target=\"_blank\">Professional Themes</a>, has inherited roughly 10,000 users overnight in the transfer of maintainership.</p>\n<p>WordPress.org plugin adoption stories are few and far between. The most common scenario for an orphaned plugin is to languish in the directory until it disappears from search results (with the exception of exact matches) after two years of no updates. In McFarlin&#8217;s case, he was looking to tie up some loose ends before shifting Pressware&#8217;s focus to launching Blogging Plugins, a marketplace for extensions that streamline WordPress for regular bloggers.</p>\n<p>&#8220;Last year, I had a few false starts when trying to launch what was originally called Pressware Plugins,&#8221; McFarlin said. &#8220;Fast-forward a few months and we’re going to focus on something called Blogging Plugins. We already have two free plugins available, though there’s an entire set of plugins, marketplace, and more coming.&#8221;</p>\n<p>Moore&#8217;s adoption of the plugins, which includes the first plugin McFarlin ever wrote, allows Pressware to move forward with its <a href=\"https://tommcfarlin.com/2017-plans/\" target=\"_blank\">2017 objectives</a>. McFarlin said he selected Moore based on the quality of his open source projects and reputation in the WordPress community.</p>\n<p>&#8220;For those of you who aren’t familiar with Philip’s side projects, you may be familiar with <a href=\"https://wordpress.org/plugins/subtitles/\" target=\"_blank\">Subtitles</a>,&#8221; McFarlin said. &#8220;It’s a plugin that falls right in line with my personal ethos of how things should work with WordPress: You activate it, it’s ready to go, and it feels native within the application.&#8221;</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Why would I adopt <a href=\"https://twitter.com/tommcfarlin\">@tommcfarlin</a>\'s work? Because I owe him. He\'s ethical, an amazing man, and a stellar coder: <a href=\"https://t.co/WM66Xu1vm1\">https://t.co/WM66Xu1vm1</a></p>\n<p>&mdash; Philip Arthur Moore (@philip_arthur) <a href=\"https://twitter.com/philip_arthur/status/817399604698173440\">January 6, 2017</a></p></blockquote>\n<p></p>\n<p>The <a href=\"https://wordpress.org/plugins/tags/adopt-me\" target=\"_blank\">adopt-me</a> tag is used on WordPress.org to indicate plugins where the author is looking for a new maintainer. With just two pages of listings, it&#8217;s not yet widely used. Most developers find it easier to fork an open source plugin and WordPress.org has recently made it easier than ever for authors to <a href=\"https://make.wordpress.org/plugins/2016/12/22/want-to-close-your-plugins-email/\" target=\"_blank\">close a plugin</a> by simply emailing the plugin team.</p>\n<p>However, not all orphaned plugins are ready for end of life measures. Circumstances change in plugin authors&#8217; lives, but the strength of the user base is one of the primary indicators of a project that could thrive in new hands. The built-in user base is also one of the main advantages of adopting a plugin as opposed to forking it.</p>\n<p>Developer and ZDNet columnist David Gewirtz discovered the full weight of adopting a plugin&#8217;s users when he <a href=\"http://www.zdnet.com/article/a-year-later-what-happens-when-you-adopt-an-open-source-project/\" target=\"_blank\">took on 10 plugins</a> from the adopt-me section of the directory. Gewirtz, who inherited approximately 50,000 users, said the experience helped him reconnect with real users.</p>\n<p>&#8220;The value I&#8217;ve gained as a columnist, advisor, and educator that has come from interacting with users from so many nations with so many different skill sets and missions has been off the charts,&#8221; Gewirtz said. &#8220;I thought I&#8217;d keep my programming chops up, and I&#8217;ve certainly done that. But I never expected I&#8217;d gain a much broader perspective that I&#8217;d be able to apply to all of the areas of my professional life and meet so many cool people.&#8221;</p>\n<p>Adoption is arguably the healthiest outcome for any orphaned project &#8211; not just for the sake of reducing plugin abandonment but also for continuing support for users. Many of them blindly depend on plugins with no understanding of how they work.</p>\n<p>Once a plugin is downloaded and installed on users&#8217; sites, it gains a life of its own. Adoption strengthens a project&#8217;s history by proving it can weather storms that might otherwise cause the plugin to become obsolete and wipe out the user base.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Jan 2017 07:59: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: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:18:\"Matt: Thirty-Three\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=47034\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ma.tt/2017/01/thirty-three/\";s: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:4279:\"<p>I&#8217;m taking it easy this week, nothing too crazy &#8212; just sharing good meals and wine with friends. Which is probably a good example of my goals for the year: putting family and loved ones first, slowing down (<a href=\"https://ma.tt/2014/10/run-better/\">to go further</a>), and deliciousness. (<a href=\"https://www.singlethreadfarms.com/\">Single Thread Farms</a> blew me away.)</p>\n<p>2016 was a year of incredible contrasts: it was the saddest and most challenged I&#8217;ve ever been with the <a href=\"https://ma.tt/2016/04/in-memoriam-chuck-mullenweg/\">passing of my father</a>, and while that overshadowed everything there were also bright moments of coming closer to family, deepening friendships, and growing professionally with incredible progress from both WordPress and Automattic. That momentum on the professional side is carrying through and right now I&#8217;m the most optimistic I can recall, and thrilled to wake up and get to work every day with the people I do.</p>\n<p>I talked about trying to spend longer stretches of time in fewer places, and that definitely happened. I flew 162k fewer miles than <a href=\"https://ma.tt/2016/01/thirty-two/\">the year before</a>, and visited 35 fewer cities. My blogging decreased a lot too &#8212; from 252 posts in 2015 to 76 posts in 2016, but the posts I did write were at least 50% longer. I made it to 9 more of the Top 50 restaurants and stand currently at 50% of <a href=\"http://www.theworlds50best.com/list/1-50-winners\">the list</a>. I finished <a href=\"https://www.pinterest.com/saxmatt/books-in-2016/\">22 books</a>, including a lot more fiction including my first few graphic novels like Ex Machina, Y: The Last Man, and Watchmen. I watched 35 movies, 9 of which were from the Marvel universe on a single flight from Cape Town to Dubai.</p>\n<p><a href=\"https://ma.tt/2016/01/thirty-two/\">Last year</a> I said, &#8220;it’s exciting to make the most of the opportunity that the volatility, love, loss, glory, failure, inspirations, and setbacks that 2016 will bring.&#8221; I didn&#8217;t know how right I would be, and wish I hadn&#8217;t been.</p>\n<p>This year doesn&#8217;t start with new plans, but rather three intentions continued from a few months ago. I <a href=\"https://ma.tt/2017/01/rebirth-and-yellow-arrows/\">revealed one yesterday</a>, and promised I would expand today on the others, so here they are:</p>\n<ol>\n<li><strong>Symmetry</strong> &#8212; Balance in all things, including my body which is stronger on my right side and much tighter on my left side. We also need symmetry in WordPress between the .org and .com products which differ too much.</li>\n<li><strong>Stillness</strong> &#8212; In echoes <a href=\"https://www.amazon.com/Art-Stillness-Adventures-Going-Nowhere-ebook/dp/B00JSRQSJS\">of Pico Iyer</a>, so much of my life in my 20s was about movement, and &#8220;going places to be moved.&#8221; In my 30s I&#8217;m looking inward. As Saint Augustine said in Book X, chapter 8 of <em>Confessions</em>: &#8220;Men go forth to wonder at the heights of mountains, the huge waves of the sea, the broad flow of the rivers, the vast compass of the ocean, the courses of the stars, and they pass by themselves without wondering.&#8221;</li>\n<li><strong>Yellow Arrows</strong> &#8212; The idea that there are clear indications of where to go next at every fork in the road, and if not you should paint them. I wrote more <a href=\"https://ma.tt/2017/01/rebirth-and-yellow-arrows/\">on this  yesterday</a>.</li>\n</ol>\n<p>Previously: <a href=\"https://ma.tt/2003/01/bday/\">19</a>, <a href=\"https://ma.tt/2004/01/so-im-20/\">20</a>, <a href=\"https://ma.tt/2005/01/hot-barely-legal-matt/\">21</a>, <a href=\"https://ma.tt/2006/01/matt-22/\">22</a>, <a href=\"https://ma.tt/2007/01/twenty-three/\">23</a>, <a href=\"https://ma.tt/2008/01/twenty-four/\">24</a>, <a href=\"https://ma.tt/2009/01/twenty-five/\">25</a>, <a href=\"https://ma.tt/2010/01/twenty-six/\">26</a>, <a href=\"https://ma.tt/2011/01/twenty-seven/\">27</a>, <a href=\"https://ma.tt/2012/01/twenty-eight/\">28</a>, <a href=\"https://ma.tt/2013/01/twenty-nine/\">29</a>, <a href=\"https://ma.tt/2014/01/matt-3-0/\">30</a>, <a href=\"https://ma.tt/2015/01/thirty-one/\">31</a>, and <a href=\"https://ma.tt/2016/01/thirty-two/\">32</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, 12 Jan 2017 07:59:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:53:\"WPTavern: WordPress 4.7.1 Fixes Eight Security Issues\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65100\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wptavern.com/wordpress-4-7-1-fixes-eight-security-issues\";s: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:2146:\"<p>WordPress 4.7.1 <a href=\"https://wordpress.org/news/2017/01/wordpress-4-7-1-security-and-maintenance-release/\">is available</a> for download and fixes eight security issues that affect WordPress 4.7 and below. The PHPMailer library was updated to patch a remote code execution (RCE) vulnerability. WordFence <a href=\"https://www.wordfence.com/blog/2016/12/phpmailer-vulnerability/\">reported the vulnerability</a> last month as critical and that it affects WordPress core.</p>\n<p>However, in the announcement post for 4.7.1, Aaron Campbell, WordPress&#8217; <a href=\"https://make.wordpress.org/core/2017/01/09/aaron-campbell-leading-security/\">new Security Czar</a> says that, &#8220;No specific issue appears to affect WordPress or any of the major plugins we investigated but, out of an abundance of caution, we updated PHPMailer in this release.&#8221; <a href=\"https://legalhackers.com/\">Dawid Golunski</a> and <a href=\"https://twitter.com/Zenexer\">Paul Buonopane</a> are credited with <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsibly disclosing</a> the vulnerability.</p>\n<p>WordPress 4.7.1 also fixes an issue where the REST API exposed user data for all users who authored a post of a public post type. This release limits this ability to only post types which have specified that they should be shown within the API. <a href=\"https://poststatus.com/\">Brian Krogsgard</a> and <a href=\"https://ithemes.com/\">Chris Jean</a> are credited with <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsibly disclosing</a> the vulnerability.</p>\n<p>In addition to patching eight security issues, this release fixes 62 bugs. To see a full list of changes, visit the <a href=\"https://codex.wordpress.org/Version_4.7.1\">release notes</a> page or you can <a href=\"https://core.trac.wordpress.org/query?milestone=4.7.1\">view them on Trac</a>. Sites should update automatically but if you&#8217;d like to update sooner, visit your site&#8217;s Dashboard, select Updates, and click the Update Now button.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Jan 2017 23:19:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:96:\"WPTavern: Facebook Launches Journalism Project, Plans to Expand Monetization of Instant Articles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=65121\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/facebook-launches-journalism-project-plans-to-expand-monetization-of-instant-articles\";s: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:3423:\"<p>After taking heat for the proliferation of &#8220;fake news&#8221; and misinformation on its platform during the US presidential election, Facebook is aiming to strengthen its ties with the news industry.</p>\n<p>&#8220;We care a great deal about making sure that a healthy news ecosystem and journalism can thrive,&#8221; Facebook director of product Fidji Simo said in the <a href=\"https://media.fb.com/2017/01/11/facebook-journalism-project/\" target=\"_blank\">announcement</a> today.</p>\n<p>The new <a href=\"https://www.facebook.com/facebookmedia/get-started/facebook-journalism-project\" target=\"_blank\">Facebook Journalism Project</a> will focus on creating news products with feedback from publishers, providing training and tools for journalists, and promoting news literacy for the public.</p>\n<p>In 2015 Facebook launched Instant Articles to deliver publishers&#8217; content instantly in exchange for advertising revenue. The platform will be expanding the feature to combine multiple Instant Articles in one post, starting January 12, 2017.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/facebook-multiple-instant-articles.png?ssl=1\"><img /></a>image credit: <a href=\"https://media.fb.com/2017/01/11/multiple-instant-articles/\">Facebook</a>\n<p>&#8220;We’ve heard from editors that they want to be able to present packages of stories to their most engaged readers on Facebook,&#8221; Simo said. &#8220;We’re starting to work with several partners on how best to do this. We’re going to start testing this using Instant Articles, so that readers can start to see <a href=\"https://media.fb.com/2017/01/11/multiple-instant-articles/\" target=\"_blank\">multiple stories</a> at a time from their favorite news organizations.&#8221; Facebook is currently testing this feature with BILD, BuzzFeed, El Pais, Fox News, Hindustan Times, The Sun, The Washington Post, and other publishers.</p>\n<p>In April 2016, Automattic partnered with Facebook and VIP-Featured-Partner agency Dekode to develop <a href=\"https://wordpress.org/plugins/fb-instant-articles/\" target=\"_blank\">Instant Articles for WP</a>, a plugin that outputs a compliant feed of posts wrapped in the required markup for Facebook. The plugin passed 10K active installs at the end of 2016, but its star rating continues to plummet due to numerous errors with updates and a lack of support. Only 1 of 42 support threads has been marked resolved in the last two months. Publishers who depend on the plugin may need to have a developer on staff to handle issues with the plugin or select another solution.</p>\n<p>Facebook is also planning to collaborate with publishers on subscription business models for their content. Participation in this feature will require the publisher to make its content available through Instant Articles.</p>\n<p>&#8220;Many of our partners have placed a renewed emphasis on growing their subscription funnel, and we’ve already begun exploring ways we can support these efforts,&#8221; Simo said. &#8220;This month our engineering team in collaboration with the engineering team of the German news organization BILD will launch a test to explore offering free trials to engaged readers, right from within Instant Articles.&#8221; Simo also said they are working on other monetization options for publishing partners, including advertising breaks in regular videos.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Jan 2017 21:49: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:\"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:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"HeroPress: Blogging, Solopreneurship, &amp; Terrorism\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=1563\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://heropress.com/essays/blogging-solopreneurship-terrorism/\";s: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:13067:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/01/011117-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: We will survive this, and this too will pass. You have my word.\" /><p>This story involves me as a blogger, the Prime Minister, me again as a web developer, an Islamic cult attempting a coup d&#8217;état, and me again as a solopreneur. Oh, and WordPress. And ISIS.</p>\n<h2>WordPress: My First Encounter</h2>\n<p>In the beginning of 2006, everyone in Turkey was talking about blogs. It was the hot new thing on the web. Forums were &#8220;out&#8221; and blogs were &#8220;in&#8221;. Anyways, I was getting ready for the ÖSS and studying to get into a university but I was psyched enough to register a blog on WordPress.com, on January 2006. (I moved the blog into a free hosting space the next month, and opened up <a href=\"http://beyn.org\">beyn.org</a> in July 2006.) I was in Kocaeli, the city right next to İstanbul.</p>\n<p>After the registration, I realized that I had nothing to write about. So I wrote about the day I had. The next day, I did the same thing. And the next day. And the next seven and a half years. Of course, I skipped four or five days. But that kind of dedication earned me a reputation and an award for &#8220;Best Personal Blogger of 2008&#8221;.</p>\n<p>But I didn&#8217;t just write about my days. After getting accepted into Ankara University in September 2006, I began to read and think about politics, as nearly all young Turks do in university. Eventually, I started writing about politics as well. Because you know what they say: If you want to learn something, write about it.</p>\n<p>Oh, I learned it pretty well, and I learned it the (somewhat) hard way.</p>\n<h2>Facing Jail Time with a Blog Post</h2>\n<p>2010 was probably my darkest year in my entire life. (2016 is the next candidate.) I was 22 years old, blogging daily, learning about web design and WordPress (more on that later), and keeping up with what&#8217;s going on with the country. Things were crazy back then: A very big prosecution was going on called the Ergenekon Case about military people allegedly planning a coup (Hint: This is not the coup I mentioned in the intro! These guys were all acquitted later.) and a big campaign for a constitutional referandum was more than enough to keep the whole country busy.</p>\n<p>In December 2010, Recep Tayyip Erdoğan, the Prime Minister of the time (and the President since 2014) sued me for one of my blog posts. It was about one of the slogans he used in his referandum rallies (&#8220;The terrorists and the opposition parties are soul mates!&#8221;) and me using the same sentence against him. Like, <em>the exact same sentence</em>. He didn&#8217;t like the way that the slogan was used against him, so he reported me and the state brought charges against me. I was 22 and I was being sued by the most powerful man in the country, because I used his words against him.</p>\n<p>When the Prime Minister sues you, you go to jail. There were little to no instances of winning a case against the government, especially when they were the one suing you. Thankfully, I was one of the few instances: I won the case in my third trial, February 14, 2012. (&#8220;Lovely&#8221; day, isn&#8217;t it?)</p>\n<p>There were one downside though: With the fear of the government suing me, I stopped writing about politics in 2011 and 2012, and even a few months after I won. And to this day, even though that fear is long gone, and even though I&#8217;m writing about politics again on Beyn, I still can&#8217;t write regularly like I did back then.</p>\n<p>Anyways. Moving on with the &#8220;web development&#8221; phase of my life.</p>\n<h2>Learning to Develop WordPress, and Teaching It at the Same Time</h2>\n<p>When I started Beyn, I immediately loved WordPress. I had some experience on HTML and CSS on Dreamweaver (never was a FrontPage guy), and I happily retired DW because I won&#8217;t be able to work on it while I was learning WordPress.</p>\n<p>I don&#8217;t remember trying to learn something with such passion. I loved the idea of plugins and themes extending the core. Beyn became my playground for new tricks, my laboratory for new experiments about WordPress. I installed plugins, edited themes, learned what&#8217;s right and what&#8217;s wrong with what I did&#8230; I probably crashed the website more than a hundred times!</p>\n<p>By 2012, I&#8217;d already started making websites for other people and getting paid. I had developed a few plugins, made a couple of themes from scratch. While still learning what awesome things I&#8217;m able to do with WordPress, I applied for a small writing gig at Wptuts+, which was later renamed <a href=\"https://tutsplus.com/authors/baris-unver\">Tuts+ Code</a>. Because you know what they say: If you want to learn something, write about it.</p>\n<p>That &#8220;small writing gig&#8221; was in fact my biggest source of education. I wasn&#8217;t a WordPress expert, but that gig was the ultimate reason to learn more and more about WordPress. I remember constantly feeling that &#8220;I&#8217;ve finished telling about everything I know about WordPress, so now I have to learn more!&#8221; and doing research on things to write about.</p>\n<p>I was aware that I don&#8217;t have any chance to write a sloppy tutorial, so I nagged my editors (first Japh Thomson, then Tom McFarlin) about my writing style, my choice of topics and of course, my English. They said my English was very good, and my topics are relevant and suitable for publishing on Tuts+. In almost exactly four years (from April 2012 to March 2016), I wrote 134 posts and I&#8217;m very proud of (almost) all my work there.</p>\n<p>While it was sad to leave Tuts+, I had a project in my mind that I put off so long: <a href=\"https://optimocha.com/\">Optimocha</a>.</p>\n<h2>WordPress Speed Optimization with Terrorists, Bombs and Death</h2>\n<p>That title came out grimmer than I expected. Heh. <em>Anyways.</em></p>\n<p>2015 was the year when I first thought about a speed optimization service for WordPress-based websites. Then I thought that I would better use my energy on the upcoming general elections in June. I worked for an NGO called &#8220;Vote and Beyond&#8221; to <a href=\"https://en.wikipedia.org/wiki/Vote_and_Beyond\">ensure transparency in observering of ballot count in the elections</a>.</p>\n<p>2015 was also the year with a whole lot of terrorist attacks. PKK, a terrorist organization <em>pretending</em> to defend Kurds&#8217; rights (while giving a bad name for all Kurds countrywide) and ISIS (you know them) were the most active terrorist organizations in 2015. They killed more than 250 people and injured more than 1000 in a series of shootings and bombings throughout the year.</p>\n<p>Worst year ever, right? <em>Not even close.</em> Let me quickly summarize the hell we&#8217;ve been through:</p>\n<ol>\n<li>ISIS killed 116 people in 5 different attacks.</li>\n<li>PKK killed 176 people in 15 different attacks.</li>\n<li>TAK, PKK&#8217;s even uglier cousin, killed 43 people in 4 different attacks.</li>\n<li>FETO killed 248 people across the country in their coup d&#8217;état attempt on July 15.</li>\n</ol>\n<p>583 people killed in terrorist attacks in 2016. <em>So, just a few more than all those lovely celebrities.</em></p>\n<p>What&#8217;s that FETO sticking out among the others, attempting a coup? That&#8217;s <strong>FE</strong>thullahist <strong>T</strong>errorist <strong>O</strong>rganization: The organization of Fethullah Gülen, an Islamic cult leader comfortably residing in Pennsylvania, plotting to take over the government for (I kid you not) over 40 years. Even I had made peace with the President because of the much needed &#8220;purges&#8221; to scrape his crypto-disciples in the government organizations. FETO is one of the enemies that can let you make peace with the ones against your values.</p>\n<p>(By the way: While celebrating that we got rid off that horror show of 2016, ISIS killed 39 more people with an AK-47 in a New Year party on January 1, in the middle of the night.)</p>\n<p>Still waiting for the part where I founded Optimocha, right? Sorry it took a bit long.</p>\n<p>April 2016 was the month I registered my company by paying for the usual fees to register a sole proprietorship, accountant fees, rent for an office (because by law, you can&#8217;t register a company without an office), some paperwork. All my funds vanished, leaving me with nothing to spend on marketing.</p>\n<p>PayPal halted operations in Turkey on June, because of conflicts with the government. 2CheckOut followed. I was going to use 2CO, so I was left with no payment gateway provider. Along with the terrorist attacks, I decided to spend Ramadan (the holy month for Muslims, passed on June 2016) sleeping, lying and moping around with depression.</p>\n<p>At the beginning of July, I was ready to work again, amped up for success! Except the coup attempt happened. Bombs and sonic booms in my city. Back to depression.</p>\n<p>By October, I was almost ready to go live with <a href=\"https://optimocha.com/\">the website</a>. I didn&#8217;t. I forced myself to finish it in November, before Black Friday. <em>I did!</em> People responded to my emails, said they&#8217;ll publish my deal on their blogs. People who saw the deal also responded and purchased my services. Yay.</p>\n<h2>Conclusion</h2>\n<p>Blogging is hard. Blogging with the most powerful man in your country trying to lock you up is the hardest.</p>\n<p>Solopreneurship is hard. Solopreneurship with several, highly active terrorist organizations killing people next to you is the hardest.</p>\n<p>Yet, <em>and I&#8217;m sure this is going to sound cheesy</em>, I have hope. This is the price we have to pay in order to get rid of the scum in the world. Turkey isn&#8217;t the worst country in the world suffering from terror&#8211;we&#8217;re just a country stuck between Europe, Russia, the Middle East and Africa. (Talk about a rock and a hard place&#8230;) We will survive this, and this too will pass.</p>\n<p>Turkey may be viewed as &#8220;yet another Middle Eastern country&#8221;, but it was founded almost a hundred years ago with the heritage of the Ottoman Empire, but also with a Western, secular mindset. <em>Even today</em>, you can&#8217;t find a sensible person talking trash about Mustafa Kemal Atatürk, who declined the Ottoman monarchy to set the foundation of a democratic republic in a time of dictatorships across Europe and Asia. Emphasis on the words &#8220;even today&#8221;, because the principles of his <em>vision</em> of the Republic of Turkey is in danger, a very large portion of the country has the confidence and equipment to defend those principles.</p>\n<p>Again: We will survive this, and this too will pass. You have my word.</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: Blogging, Solopreneurship, & Terrorism\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Blogging%2C%20Solopreneurship%2C%20%26%20Terrorism&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fblogging-solopreneurship-terrorism%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Blogging, Solopreneurship, & Terrorism\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fblogging-solopreneurship-terrorism%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%2Fblogging-solopreneurship-terrorism%2F&title=Blogging%2C+Solopreneurship%2C+%26%23038%3B+Terrorism\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Blogging, Solopreneurship, & Terrorism\"></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/blogging-solopreneurship-terrorism/&media=https://heropress.com/wp-content/uploads/2017/01/011117-150x150.jpg&description=Blogging, Solopreneurship, & Terrorism\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Blogging, Solopreneurship, & Terrorism\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/blogging-solopreneurship-terrorism/\" title=\"Blogging, Solopreneurship, & Terrorism\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/blogging-solopreneurship-terrorism/\">Blogging, Solopreneurship, &#038; Terrorism</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 Jan 2017 12:00:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Barış Ünver\";s: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:58:\"Dev Blog: WordPress 4.7.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4650\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2017/01/wordpress-4-7-1-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6519:\"<p>WordPress 4.7 has been <a href=\"https://wordpress.org/download/counter/\">downloaded over 10 million times</a> since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7 and earlier are affected by eight security issues:</p>\n<ol>\n<li>Remote code execution (RCE) in PHPMailer &#8211; <em>No specific issue appears to affect WordPress</em> or any of the major plugins we investigated but, out of an abundance of caution, we updated PHPMailer in this release. This issue was fixed in PHPMailer thanks to <a href=\"https://legalhackers.com/\">Dawid Golunski</a> and <a href=\"https://twitter.com/Zenexer\">Paul Buonopane</a>.</li>\n<li>The REST API exposed user data for all users who had authored a post of a public post type. WordPress 4.7.1 limits this to only post types which have specified that they should be shown within the REST API. Reported by <a href=\"https://poststatus.com/\">Krogsgard</a> and <a href=\"https://ithemes.com/\">Chris Jean</a>.</li>\n<li>Cross-site scripting (XSS) via the plugin name or version header on <code>update-core.php</code>. Reported by <a href=\"https://dominikschilling.de/\">Dominik Schilling</a> of the WordPress Security Team.</li>\n<li>Cross-site request forgery (CSRF) bypass via uploading a Flash file. Reported by <a href=\"https://twitter.com/Abdulahhusam\">Abdullah Hussam</a>.</li>\n<li>Cross-site scripting (XSS) via theme name fallback. Reported by <a href=\"https://pentest.blog/\">Mehmet Ince</a>.</li>\n<li>Post via email checks <code>mail.example.com</code> if default settings aren&#8217;t changed. Reported by John Blackbourn of the WordPress Security Team.</li>\n<li>A cross-site request forgery (CSRF) was discovered in the accessibility mode of widget editing. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronnie Skansing</a>.</li>\n<li>Weak cryptographic security for multisite activation key. Reported by <a href=\"https://itsjack.cc/\">Jack</a>.</li>\n</ol>\n<p>Thank you to the reporters for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.1 fixes 62 bugs from 4.7. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.1\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?milestone=4.7.1\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.1</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.1.</p>\n<p>Thanks to everyone who contributed to 4.7.1: <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/chandrapatel/\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/christian1012/\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/dreamon11/\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/chopinbach/\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella van Dorpe</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/hristo-sg/\">Hristo Pandjarov</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry/\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver/\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">monikarao</a>, <a href=\"https://profiles.wordpress.org/natereist/\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nikschavan/\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nullvariable/\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/sirbrillig/\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/sanketparmar/\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sfpt/\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom/\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/timph/\">timph</a>, <a href=\"https://profiles.wordpress.org/voldemortensen/\">voldemortensen</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Jan 2017 03:53:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:\"\";}}}}}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:31:\"Matt: Rebirth and Yellow Arrows\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=47020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://ma.tt/2017/01/rebirth-and-yellow-arrows/\";s: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:2464:\"<p>My friend <a href=\"https://www.amazon.com/Rebirth-Fable-Forgiveness-Following-Heart/dp/0316312282/\">Kamal Ravikant has a new book out, Rebirth, which I highly recommend</a>. I had the good fortune to read it a few months ago and the story of the Camino de Santiago touched and inspired me.</p>\n<p>Because of the impact of the book, I ended up adopting a few New Year&#8217;s intentions long before January 1st &#8212; things to ruminate on and keep in mind as the year wound down. The outlook of the world seemed uncertain, and I&#8217;m learning to navigate the world without my father.</p>\n<p><img /></p>\n<h3>Yellow Arrows</h3>\n<p>The Camino de Santiago is a pilgrimage path in Spain that people have walked since the 9th century AD. The 500 mile path winds through mountains, fields, and sometimes cities, and many pilgrims take a month or more on it. In some ways it is similar to <a href=\"http://walkkumano.com/\">the Kumano Kodo walk I did with Dan and Craig last year</a>.</p>\n<p>There are places where the path isn&#8217;t exactly clear, either because the trail isn&#8217;t strong, there&#8217;s been growth, or you might be in a crowded urban area like a city. Over the years pilgrims and people who live on the trail have marked it with yellow arrows pointing the way. If someone gets lost or confused, it&#8217;s an opportunity for an additional sign to bring them back on track.</p>\n<p>When you know the path, is it clear where someone else walking it should go next? It&#8217;s an interesting concept that applies across life. In your relationships, does your friend, loved one, or partner know what to expect, and where you&#8217;re headed together? Even in WordPress I feel like there are too many places where we bring someone to a fork in the road and there is no clear indication which way they should take.</p>\n<p>Give some thought to the yellow arrows in your life, and I&#8217;ll write more about the other two things I&#8217;ve been thinking about tomorrow. Also don&#8217;t forget <a href=\"https://www.amazon.com/Rebirth-Fable-Forgiveness-Following-Heart/dp/0316312282/\">to pick up a copy of Kamal&#8217;s book</a>. I loved it and I think it will be one I&#8217;m recommending to many friends.</p>\n<p><a href=\"https://www.amazon.com/Rebirth-Fable-Forgiveness-Following-Heart/dp/0316312282/\"><img /></a></p>\n<p>(Image from <a href=\"http://caminotravelcenter.com/who-was-elias-valina-follow-the-yellow-arrow/\">Camino Travel Center</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 Jan 2017 03:48:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:85:\"WPTavern: Year in WP Creates a Personalized Review of WordPress Contributions in 2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=64884\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/year-in-wp-creates-a-personalized-review-of-wordpress-contributions-in-2016\";s: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:4911:\"<p><a href=\"https://yearinwp.com/\">Year In WP </a>is a new site by <span class=\"DMUpdateName-name DMConversation-name u-textTruncate\"><a href=\"http://jespervanengelen.com/\">Jesper van Engelen</a> that creates a personalized review of a user&#8217;s contributions to WordPress in 2016. Entering the WordPress.org username of a plugin or theme author or a WordPress core contributor into the field generates a list of statistics that includes:</span></p>\n<ul>\n<li>Profile information</li>\n<li>Number of times their plugins and themes were downloaded</li>\n<li>Most downloaded plugins and themes</li>\n<li>Average number of downloads per week</li>\n<li>Plugin and theme review rating average</li>\n<li>Percentage of five-star ratings</li>\n<li>A selection of five-star reviews</li>\n<li>Number of commits, changes, and comments to WordPress core</li>\n<li>Number of WordPress releases contributed to</li>\n</ul>\n<p>Engelen got the idea to create the site in 2014 after Spotify launched its &#8216;<a href=\"https://news.spotify.com/us/2014/12/03/2014-a-year-in-music/\">Year in Music</a>&#8216; that highlighted trends based on what 50 million users listened too.</p>\n<p>&#8220;I’d been active in the WordPress plugin market for about four years at that point, and I figured it would be really cool to get some year-over-year insight into your WordPress plugins,&#8221; Engelen said.</p>\n<p>&#8220;Having become a partner at Admin Columns (a freemium WordPress plugin) in 2014, I found out that I really liked analyzing statistics of downloads, sales and other data, and that, properly grouped and reported, they could have a pretty big influence on decision-making from a business perspective.&#8221;</p>\n<p>Engelen started the site by experimenting with fetching data from WordPress.org through its API that would show the change in the number of downloads to a user&#8217;s plugins.</p>\n<p>&#8220;That is basically what lead to the &#8216;Your most popular plugins&#8217; overview page,&#8221; Engelen said. &#8220;Spending some free hours each week on working on the project, more and more ideas of data to include popped up.&#8221;</p>\n<p><img /></p>\n<p>The site displays a lot of data, but it doesn&#8217;t include everything. Engelen would like to eventually display sections for contributions to WordPress translations, plugins, themes, core, design, etc.</p>\n<h2>The Technical Details</h2>\n<p>The data displayed on Year in WordPress is gathered using the <a href=\"https://codex.wordpress.org/WordPress.org_API\">WordPress.org API</a>, subversion, and web scraping. Engelen would have used the WordPress REST API but it was not available at the time, &#8220;Fetching the reviews and support topics yielded quite a bit of annoyance, as they’re done by scraping,&#8221; he said.</p>\n<p>He uses a Python framework to fetch relevant data in parallel. The data is stored in an SQL database, which is accessed by a front-end tool. The front-end of the site features a design that was reused from <a href=\"https://www.admincolumns.com/\">AdminColumns.com</a>.</p>\n<p>&#8220;jQuery, combined with Chart.js and Fullpage.js power the interactive portion of Year in WordPress. I’ve also written some simple sentiment analysis code for filtering out the most popular reviews to show for each plugin/theme developer,&#8221; Engelen said.</p>\n<h2>Fun Facts about Year in WordPress</h2>\n<p>Engelen provided the Tavern with these fun facts related to Year in WordPress:</p>\n<ul>\n<li>There’s a Year in Review for about 100,000 users on WordPress.org — or all users who have contributed to a plugin or theme, created a review or a support ticket, or contributed to WordPress core.</li>\n<li>The full database takes about 500MB of space.</li>\n<li>There were 364,763,308 plugin/theme downloads in 2015, and 434,865,745 in 2016. That’s 19.2% growth!</li>\n<li>2016 was the first year where the number of new core Trac tickets shrunk (4,044 in 2014; 4,392 in 2015; 4,028 in 2016)</li>\n<li>73% of all plugins received zero reviews in 2016</li>\n</ul>\n<h2>Year in WordPress 2017 Is Not Guaranteed</h2>\n<p>Engelen is not making any promises for continued development in 2017 as it&#8217;s contingent on his free time. However, the main thing he would like to change is to include a wider spectrum of data.</p>\n<p>&#8220;When I pitched the idea of Year in WordPress to a core committer and showed the beta version, he said &#8216;there&#8217;s so much more than core itself&#8217; and that stuck with me,&#8221; he said.</p>\n<p>&#8220;The perfect &#8216;Year in WordPress&#8217; would feature cool statistics about all types of contributions people make to WordPress — whether it’s creating plugins and themes, writing code for core, translating or testing. Furthermore, I’m really looking forward to making use of all of the REST API’s that I can use this time around.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Jan 2017 22:11: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:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WPTavern: Say What Plugin Passes 10K Active Installs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=64778\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wptavern.com/say-what-plugin-passes-10k-active-installs\";s: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:5220:\"<p>WordPress core doesn&#8217;t make it easy to edit text strings, but a little plugin called <a href=\"https://wordpress.org/plugins/say-what/\" target=\"_blank\">Say What?</a> has been quietly gaining a solid user base by providing this functionality. It allows users to edit text strings without editing WordPress core or plugin code. Lee Willis released Say What in 2013, but the plugin had a significant jump in users in 2016, doubling the number of active installs from 5,000 to 10,000 sites.</p>\n<p>Willis, who is the author of <a href=\"https://profiles.wordpress.org/leewillis77/#content-plugins\" target=\"_blank\">22 plugins</a> hosted on WordPress.org and many more commercial extensions, created Say What while working as a Drupal developer.</p>\n<p>&#8220;One of our must-install Drupal modules was called String Overrides, which inspired Say What?&#8221; he said. &#8220;At the agency I was working at we used it regularly on virtually every site build to override plugin, theme, and core strings in a &#8216;non-hacky&#8217; way. Given that, I knew that the problem was there to be solved on WordPress, and that something that worked well would be useful to people.&#8221;</p>\n<p>Say What adds a new screen for editing text under Tools > Text changes for configuring string replacements. Users enter the current string, text domain, and replacement text.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/12/say-what-text-edits.png?ssl=1\"><img /></a></p>\n<p>This plugin is a good option for those who are not comfortable sifting through PHP files and adding a filter to change the text. If you just have a handful of strings to replace, it&#8217;s more convenient than using a translation tool like POEDIT to edit the language files. All of the text changes are listed together in the Say What admin panel, so they can be easily changed at any time without editing any files.</p>\n<p>Willis said users don&#8217;t often experience conflicts with themes and plugins, as there is so little frontend functionality included in the plugin.</p>\n<p>&#8220;The main areas of support tend to be around locating particular strings, or issues where broken custom code is breaking the filters that Say What uses,&#8221; Willis said. After speaking with friends at a WordCamp in March 2015, he decided to create a commercial version to address this issue and a number of other feature requests.</p>\n<p>&#8220;The free version was out for about two years before I launched the <a href=\"https://plugins.leewillis.co.uk/downloads/say-what-pro/\" target=\"_blank\">Pro version</a>,&#8221; Willis said. &#8220;The only issue people tended to have with the free version was around finding the information they needed for the &#8216;original string,&#8217; so I decided to build out the String Discovery feature as the first feature of the Pro version. This lets users search for the string using autocomplete functionality, making it much easier to set up replacements without delving through theme or plugin code.&#8221;</p>\n<p>Say What increased in popularity in 2016 and has maintained a 4.6-star rating on WordPress.org. It is becoming more frequently recommended by support teams of other plugins when customers ask about how to change text strings.</p>\n<p>&#8220;It&#8217;s great to know that it&#8217;s being used to help people build more future-proof sites without resorting to hacking plugin or core code just to change strings,&#8221; Willis said. &#8220;Even for people familiar with plugin and theme code, the String Discovery feature makes it a lot easier and quicker to set up replacements. It&#8217;s had a few new features over the last year, including support for multi-line, and single/plural style replacements.&#8221;</p>\n<p>Willis said his Pro version proved to be fairly popular during 2016 and became one of his highest selling plugins. He recently added support for multilingual sites, the most often requested feature, allowing users to set up different replacements for different languages.</p>\n<p>Willis does not have an extensive roadmap for the plugin, as he prefers to keep it uncomplicated and free of clutter. &#8220;I&#8217;m a big believer in plugins that do one thing, and do it well,&#8221; he said.</p>\n<p>Say What is another successful instance of a developer solving one of his own problems and striking upon a successful commercial product. Willis said he didn&#8217;t fully anticipate how popular the plugin would become.</p>\n<p>&#8220;As with most of my plugins it was also built to solve a problem that I personally was having at the time,&#8221; he said. &#8220;That said, I&#8217;m always (pleasantly) surprised when something does get popular.&#8221;</p>\n<p>After testing <a href=\"https://wordpress.org/plugins/say-what/\" target=\"_blank\">Say What</a> I found that Willis&#8217; implementation is the simplest way for non-technical users to make a few simple string changes without the risk of breaking their websites. He is also very responsive on the support forums. The success of the Pro version is a good indication that Willis will be able to continue support and maintenance on the free plugin for the foreseeable future.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Jan 2017 21:26: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: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:67:\"WPTavern: How Laravel Forge Can Help You Run WordPress in the Cloud\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=64940\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/how-laravel-forge-can-help-you-run-wordpress-in-the-cloud\";s: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:7837:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/petersuhm.jpeg?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/petersuhm.jpeg?resize=150%2C150&ssl=1\" alt=\"petersuhm\" class=\"alignright size-thumbnail wp-image-43613\" /></a>This opinion piece was contributed by guest author <a href=\"https://twitter.com/petersuhm\" target=\"_blank\">Peter Suhm</a>. Peter is a web developer from the Land of the Danes. He is the creator of <a href=\"https://wppusher.com/\" target=\"_blank\">WP Pusher</a> and a huge travel addict, bringing his work along with him as he goes.<br />\n&nbsp;</p>\n<hr />\n<p><a href=\"http://forge.laravel.com/\" target=\"_blank\">Laravel Forge</a> is a server and application provisioning tool that was originally built to serve the Laravel PHP crowd. Recently, it has been made available to WordPress developers too, with the introduction of 1-click installs of WordPress on Digital Ocean, Linode and AWS cloud servers. In this post, I&#8217;ll give you a brief introduction to Laravel Forge and show you how you can use it to manage all of your WordPress installations in the cloud.</p>\n<h3>Laravel Forge is good news for WordPress developers</h3>\n<p>Because so many WordPress developers are used to managed hosting, the thought of running their own servers seem quite intimidating. That&#8217;s a shame with so many great cloud server companies offering virtual servers for very low costs. Unless your traffic is very heavy, a small ($5 to $10 per month) server can run quite a few WordPress websites. Laravel Forge takes care of provisioning your servers and can even setup your database and install WordPress for you. This makes cloud hosting much more available to WordPress developers at a low cost (Laravel Forge is $15 per month for unlimited servers), compared to many of the existing options.</p>\n<p>Here are a few reasons why I think Laravel Forge is great for WordPress hosting:</p>\n<ul>\n<li>Your servers are configured in a secure way by default, with SSH authentication, firewalls, automatic security updates and free SSL certificates from Let&#8217;s Encrypt</li>\n<li>Your servers are going to be really fast with PHP 7</li>\n<li>You can run a lot of WordPress installs on 1 single server *</li>\n<li>You can scale your servers if you need more horse power *</li>\n</ul>\n<p><em>* Goes for the cloud in general</em></p>\n<h3>Creating a new server</h3>\n<p>Here is how the &#8220;Create Server&#8221; screen looks in Forge:</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/01/create-server-e1483980109591.png?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/01/create-server-e1483980109591.png?resize=1025%2C416&ssl=1\" alt=\"\" class=\"aligncenter size-full wp-image-64946\" /></a></p>\n<p>If you use Digital Ocean, Forge can also create your servers. If you use another provider like Linode or AWS, Forge can only do the provisioning part.</p>\n<p>For Digital Ocean servers, here are the options you can configure:</p>\n<ul>\n<li>Which credentials to use, if you are managing multiple Digital Ocean accounts</li>\n<li>The server name</li>\n<li>The server size</li>\n<li>The server region</li>\n<li>The PHP version</li>\n<li>The default database name</li>\n</ul>\n<p>You can then choose to:</p>\n<ul>\n<li>Configure the server as a load balancer (if you have really heavy traffic and is running WordPress across multiple servers)</li>\n<li>Install <a href=\"https://mariadb.org/\" target=\"_blank\">MariaDB</a> instead of MySQL, which is a drop-in, faster replacement</li>\n<li>Enable weekly backups on Digital Ocean</li>\n</ul>\n<p>When Laravel Forge is done with the provisioning, your server is ready to go.</p>\n<h3>Setting up a database</h3>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/set-up-database-e1483980726266.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/set-up-database-e1483980726266.png?resize=1025%2C484&ssl=1\" alt=\"\" class=\"aligncenter size-full wp-image-64949\" /></a></p>\n<p>Once your server has been created, setting up a database for your WordPress installation is very easy. You can create the user at the same time you&#8217;re creating the database, or you can create the user afterwards.</p>\n<h3>Installing WordPress</h3>\n<p>Before you install WordPress, you need to create a new &#8220;site&#8221; on your server. You can just stick with the defaults:</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/01/new-site-e1483981223250.png?ssl=1\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/01/new-site-e1483981223250.png?resize=1025%2C453&ssl=1\" alt=\"\" class=\"aligncenter size-full wp-image-64951\" /></a></p>\n<p>For the &#8220;Root Domain&#8221;, you need to add the domain name of the site you are setting up. Remember that you need to add a DNS record for your domain that points to the IP address of your newly created server. If you are just testing, you can always add a record in your computer&#8217;s <code>hosts</code> file with a test domain that points to your server. Something like this:</p>\n<p><code># /etc/hosts</code></p>\n<p><code># Replace xx.xx.xx.xx with your server\'s IP address<br />\nxx.xx.xx.xx wordpress-forge.test</code></p>\n<p>Once you click the &#8220;Add Site&#8221; button, you will see a spinning wheel while Forge is setting up your site&#8217;s nginx configuration.</p>\n<p>When the installation is done, you need to click the &#8220;Manage&#8221; icon next to your site in order to install WordPress. The first screen you will be presented with gives you the option to install an &#8220;App&#8221; on your site. Click the &#8220;WordPress&#8221; button, select your database and user from the previous step and relax while Laravel Forge completes the installation. Fun fact: Laravel Forge is actually using WP-CLI to install WordPress on your server.</p>\n<p>When the installation has completed, visit your site in a browser and you&#8217;ll be met with something familiar:</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/01/wp-install-e1483984375432.png?ssl=1\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/01/wp-install-e1483984375432.png?resize=1025%2C625&ssl=1\" alt=\"\" class=\"aligncenter size-full wp-image-64962\" /></a></p>\n<h3>Setting up a free SSL certificate</h3>\n<p>Finally, you should set up SSL for your WordPress site. It&#8217;s more secure and Google likes it!</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/ssl-setup.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/ssl-setup.png?resize=1025%2C288&ssl=1\" alt=\"\" class=\"aligncenter size-full wp-image-64963\" /></a></p>\n<p>Head over on the &#8220;SSL&#8221; tab and click the &#8220;LetsEncrypt (Beta)&#8221; button. Click the &#8220;Obtain Certificate&#8221; button and wait while Forge creates and installs the certificate. Once the certificate is installed, click the &#8220;Activate&#8221; icon and voila! Your site is now all set up and secured with SSL.</p>\n<p>That&#8217;s how easy it is to setup WordPress on a cloud server with Laravel Forge. I hope to see a lot of more products and tools like this that can help us building better, faster, and more secure WordPress websites. In fact, Laravel Forge was the original inspiration for my own product <a href=\"https://wppusher.com/\" target=\"_blank\">WP Pusher</a>. I wanted to create a similar experience, but for WordPress plugins and themes instead.</p>\n<h3>Note on backups and security</h3>\n<p><em>Please note that even though Laravel Forge makes for a great starting point, ultimately you are the one in charge of the security of your servers. You should always try to educate yourself about security and have a backup strategy for your data.</em></p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Jan 2017 18:44:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:45:\"Post Status: Contributing to Twenty Seventeen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=31886\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/contributing-to-twenty-seventeen-theme/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11882:\"<p><em><strong>Editor&#8217;s Note</strong>: This is a guest post by <a href=\"https://poststatus.com/profiles/sami-keijonen/\">Sami Keijonen</a>. Sami is a developer, the owner of the <a href=\"https://foxland.fi/\">Foxland theme and plugin shop</a>, and hails from Finland.</em></p>\n<p>Every year since 2010, WordPress has shipped with a new default theme, breaking the cycle of Kubrick being the primary default theme for years before that.</p>\n<p>In 2010, the default theme was called Twenty Ten. In 2011, the default theme was called Twenty Eleven. You get the idea.</p>\n<p>While every default theme has been unique in its own way, <a href=\"https://wordpress.org/themes/twentyseventeen/\">Twenty Seventeen</a> was particularly compelling in a way we haven’t seen in a default theme since Twenty Fourteen.</p>\n<p><a href=\"https://wordpress.org/themes/twentyfourteen/\">Twenty Fourteen</a> was the first theme that really made people think WordPress could be used for more than “just a blog” on a mass scale. It is a magazine theme.</p>\n<p>Twenty Seventeen &#8212; <a href=\"https://poststatus.com/wordpress-4-7-released/\">released with WordPress 4.7</a> &#8212; is the first theme that really made people think WordPress could be used for more than “just publishing content” on a mass scale. It is a business theme.</p>\n<p><img /></p>\n<p>Prior to WordPress 4.7, I contributed by helping out in the support forums and building <a href=\"https://foxland.fi/downloads/category/themes/\">accessible themes</a>. But I had never contributed to core before.</p>\n<p>When I saw the <a href=\"https://make.wordpress.org/core/2016/09/09/say-hello-to-twenty-seventeen-%25F0%259F%2591%258B%25F0%259F%258F%25BD/\">previews</a>, I knew I wanted to contribute, and began to follow development on GitHub to see if there was anything that I could lend my talents to and eventually make my first core contributions.</p>\n<p>When I saw Morten Rand-Hendriksen <a href=\"https://github.com/WordPress/twentyseventeen/issues/60\">open an issue</a> about replacing icon fonts with SVG icons, I knew I had found the perfect “in” to start contributing to core.</p>\n<h3>Contributing SVG icons system to Twenty Seventeen</h3>\n<p><img /></p>\n<p>I had already <a href=\"https://foxland.fi/switch-away-icon-fonts-svg/\">switched from icon fonts to SVG icons</a> in my public themes, so this was something I immediately felt confident in contributing to core.</p>\n<p>Development started in <a href=\"https://github.com/WordPress/twentyseventeen/\">GitHub</a>, where fellow contributors would create issues and submit pull requests.</p>\n<p>Then, everything moved to <a href=\"https://core.trac.wordpress.org/browser/trunk\">WordPress SVN</a>, where new patches were submitted.</p>\n<p>I’ll summarize what I learned in the process.</p>\n<h3>What I learned about contributing</h3>\n<p>I regret not keeping a diary. Not necessarily to keep track of what I contributed, since that’s all documented in the open.</p>\n<p>But rather things like my emotional state. My feelings ranged from despair to overwhelming joy throughout my contribution experience.</p>\n<p>I learned new things about code and collaborating with others in GitHub and SVN. Again, something not necessarily documented in patches and the like.</p>\n<h4>Git workflow</h4>\n<p>I’m not good with Git, and still don’t fully understand how rebasing works. I messed up my commits a couple of times. Not a big deal, but I got different error messages no matter which workflow I tried. I realized that I need to know more about Git, and be more patient.</p>\n<p>Eventually I understood enough to get my contributions through the door, but I’m still confused about <a href=\"https://github.com/edx/edx-platform/wiki/How-to-Rebase-a-Pull-Request\">how to rebase a pull request</a>.</p>\n<h4>Follow the development through to the end, and beyond</h4>\n<p>I started out by replacing only the social link icon fonts to SVG icons. Soon, I realized that a step-by-step process was not going to work because of new related commits coming in all the time that potentially conflicted with my code.</p>\n<p>It was better to replace all icon fonts, not just the social ones, with SVGs, and then work from there. I was also keeping track of style changes in RTL languages and IE8.</p>\n<p>At this point, the work was just getting started.</p>\n<p>Once you start contributing, you shouldn&#8217;t just disappear with no explanation. If you’re running low on time or have other obligations, it’s totally understandable, but be sure to politely inform others you can’t continue anymore, so they can pick up where you left off.</p>\n<p>As the <a href=\"https://geto2.com/\">o2</a> slogan states: &#8220;Communication is oxygen.&#8221;</p>\n<h4>Coding standards and automated tests</h4>\n<p>After several commits and iterations, <a>my first pull request was accepted</a>.</p>\n<p>As you can see in my first commits, I didn’t pass the WordPress coding standards. I needed to be more precise and follow the coding standards to the tee. With enough practice, I’m sure it’s possible to write standards-compliant code “naturally” but I was looking for a way to automate the code checks.</p>\n<p>I tried to get Atom to evaluate my code on the fly, but I just couldn’t get it to work. Like my Git experience, I got different error messages no matter what I tried.</p>\n<p>Eventually, I was able to use <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards\">PHPCS</a> via the command line, and fixed any issues discovered manually. But it would’ve been nice to have those checks automated.</p>\n<h4>Working with batches in SVN</h4>\n<p>Once the development moved to SVN, I began to get a little worried. As I described earlier, not too long ago, I was struggling just to use Git. However, thanks to the following tutorials I quickly got up to speed.</p>\n<ul>\n<li><a href=\"https://make.wordpress.org/core/handbook/tutorials/installing-wordpress-locally/from-svn/\">Installing via SVN</a></li>\n<li><a href=\"https://make.wordpress.org/core/handbook/tutorials/installing-a-vcs/%23installing-tortoisesvn\">Installing TortoiseSVN</a> (I use Windows)</li>\n<li><a href=\"https://make.wordpress.org/core/handbook/tutorials/trac/submitting-a-patch/\">Submitting a Patch</a></li>\n<li><a href=\"https://make.wordpress.org/core/handbook/tutorials/working-with-patches/%23creating-a-patch-with-tortoisesvn\">Creating a Patch with TortoiseSVN</a></li>\n</ul>\n<p>Turns out, it wasn’t much to be worried about. Although I didn’t quite understand the concept of branches and tags in my local environments, and jumping between them like I know how to do with Git.</p>\n<p>Anyway, I eventually got <a href=\"https://core.trac.wordpress.org/changeset/39072\">my first props</a> with the help of others.</p>\n<h3>Technical overview of the SVG icons system</h3>\n<p>I adapted this contribution from the code and concepts first presented by others.</p>\n<ol>\n<li><a href=\"https://webdevstudios.com/\">WebDevStudios</a> has their own starter theme called <a href=\"https://github.com/WebDevStudios/wd_s\">wd_s</a>. I really like how they set up SVG icons and we fine-tuned them in Twenty Seventeen. Perhaps they will integrate those improvements back into their own project. Again, open source rocks.</li>\n<li><a href=\"http://themehybrid.com/\">Justin Tadlock</a> invented the <a href=\"http://justintadlock.com/archives/2013/08/14/social-nav-menus-part-2\">social links menu</a> concept. I just took that concept and applied it to SVG icons rather than icon fonts.</li>\n</ol>\n<p>All the main SVG-related functions can be found in the <a href=\"https://core.trac.wordpress.org/browser/trunk/src/wp-content/themes/twentyseventeen/inc/icon-functions.php\">inc/icon-functions.php file</a>. It’s well-documented in the code, but here’s a summary:</p>\n<ul>\n<li>Include the SVG sprite file via the <code>wp_footer</code> hook.</li>\n<li><code>twentyseventeen_get_svg()</code> function returns the SVG icon markup. In most cases, the SVG icon is injected in template files or via hooks and filters. In some cases, the SVG icon is injected via JavaScript.</li>\n<li>Default markup looks like this: <code>&lt;svg class=\"icon icon-name\" aria-hidden=\"true\" role=\"img\"&gt; &lt;use href=\"#icon-name\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"#icon-name\"&gt;&lt;/use&gt; &lt;/svg&gt;</code>.</li>\n<li>Note that we could use the absolute path to the SVG file in the <code>href</code> attribute of the use element. In that case:\n<ul>\n<li>there is no need to inject icons via the <code>wp_footer</code> hook.</li>\n<li>The <a href=\"https://github.com/Keyamoon/svgxuse\">svgxuse</a> JS polyfill must be used, because Internet Explorer doesn’t support external files referenced in the <code>&lt;use&gt;</code> element.</li>\n<li>This method helps caching the SVG sprite file.</li>\n</ul>\n</li>\n<li>By default, all icons are decorative, but I insisted we show how to use non-decorative icons in an accessible way. Check the examples in the aforementioned <code>twentyseventeen_get_svg()</code> function.</li>\n<li>We replace the default icon for supported social media links by using the <code>walker_nav_menu_start_el</code> filter.</li>\n</ul>\n<h3>Open source rocks</h3>\n<p>WordPress default themes are one of the best themes out there and they set an example how to use new WordPress features. The reason for this is simple.</p>\n<ul>\n<li>Default themes gets lots of love and attention.</li>\n<li>Many talented people contribute to default themes. <a href=\"https://davidakennedy.com/2016/12/07/dear-twenty-seventeen-contributors/\">Twenty Seventeen had over 100 contributors</a> and we thank you all!</li>\n<li>Default themes are tested before release in many platforms and browsers. And default themes are used on so many sites that any remaining bugs will be found after the release.</li>\n</ul>\n<p>Building default themes really is a community driven project. I&#8217;d like to say extra thanks for couple of people.</p>\n<h4>Special thank you</h4>\n<p>Any web project needs good leadership, design, and code. Those were all covered in Twenty Seventeen.</p>\n<ul>\n<li><a href=\"https://twitter.com/DavidAKennedy\">David A. Kennedy</a> was leading the project and kept everything rolling. He had a really friendly touch and he was open to ideas. At the same time he wasn&#8217;t afraid to make decisions; for example, a flexbox layout was rejected for this theme.</li>\n<li><a href=\"https://twitter.com/melchoyce\">Mel Choyce</a> created the modern, business looking design. She wrote a great article <a href=\"https://choycedesign.com/2016/12/07/behind-the-scenes-of-twenty-seventeen/\">with her behind the scenes take</a>.</li>\n<li><a href=\"https://twitter.com/laurelfulford\">Laurel Fulford</a> was the primary coding lead. She seem to have a solution for every new feature and brought Mel&#8217;s design to life with detailed code.</li>\n</ul>\n<p>Last but not least, remember <a href=\"http://mor10.com/\">Morten Rand-Hendriksen</a>, the one that opened the SVG icon issue that caught my eye?</p>\n<p>He was pretty happy with the end result.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/brad_frost\">@brad_frost</a> the SVG icon system solution by <a href=\"https://twitter.com/samikeijonen\">@samikeijonen</a> embedded in the new Twenty Seventeen theme in <a href=\"https://twitter.com/hashtag/WordPress?src=hash\">#WordPress</a> is pure genius</p>\n<p>&mdash; MortenRandHendriksen (@mor10) <a href=\"https://twitter.com/mor10/status/805808154520883200\">December 5, 2016</a></p></blockquote>\n<p></p>\n<p>Who knows if I would’ve contributed if it wasn’t for him posting that. Remember, reporting issues and bugs is contributing too, and can inspire first-time contributors like me to stop sitting on the sidelines and finally get started with core contributions.</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, 07 Jan 2017 22:42: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:\"Sami Keijonen\";s: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:71:\"WPTavern: Let’s Encrypt Passes 20 Million Active Certificates in 2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=64815\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/lets-encrypt-passes-20-million-active-certificates-in-2016\";s: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:5050:\"<p>Let&#8217;s Encrypt has just closed out its first full year as a certificate authority with more than <a href=\"https://letsencrypt.org/2017/01/06/le-2016-in-review.html\" target=\"_blank\">20 million active certificates</a>. The free and open certificate authority focuses on lowering the complexity of setting up TLS encryption by making the process more automated. It came <a href=\"https://wptavern.com/lets-encrypt-is-now-out-of-beta\" target=\"_blank\">out of beta</a> in April 2016 and the number of certificates issued per day has grown steadily since then.</p>\n<p>&#8220;At the start of 2016, Let’s Encrypt certificates had been available to the public for less than a month and we were supporting approximately 240,000 active (unexpired) certificates,&#8221; said Josh Aas, Executive Director of the non-profit Internet Security Research Group (ISRG). &#8220;Now we’re frequently issuing that many new certificates in a single day while supporting more than 20,000,000 active certificates in total. We’ve issued more than a million certificates in a single day a few times recently.&#8221;</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/01/lets-encrypt-2016.png?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/01/lets-encrypt-2016.png?resize=1025%2C503&ssl=1\" alt=\"\" class=\"aligncenter size-full wp-image-64920\" /></a></p>\n<p>Let&#8217;s Encrypt operates as a 501(c)(3) nonprofit and has received more than three dozen corporate <a href=\"https://letsencrypt.org/sponsors/\" target=\"_blank\">sponsorships</a> and grants, but funds for the coming year have fallen short. In November, Let&#8217;s Encrypt launched a <a href=\"https://www.generosity.com/community-fundraising/make-a-more-secure-web-with-let-s-encrypt\" target=\"_blank\">crowdfunding campaign</a> to cover the cost of one month of operating expenses. So far, the campaign has raised more than $100K towards its $200K fundraising goal.</p>\n<h3>Let&#8217;s Encrypt is Growing Fastest with Smaller, Previously-Unencrypted Sites</h3>\n<p>Let&#8217;s Encrypt is used with some larger organizations, such as WordPress.com, OVH, Shopify, Akamai, and Dreamhost, but the vast majority of users are smaller entities that were not previously encrypted. According to the Electronic Frontier Foundation (EFF), a founding sponsor of the certificate authority, most of Let&#8217;s Encrypt&#8217;s growth has not come from taking customers away from competitors:</p>\n<blockquote><p>\nOne of the ways Let&#8217;s Encrypt has been helping to secure the web is by making it easy and affordable for sites that have never had certs before to turn on secure HTTPS connections, and for software systems to start enabling HTTPS automatically and by default. Our free certificates may be more likely to be left unused than expensive certificates, and less expert webmasters may accidentally duplicate certificates—but that’s part of making HTTPS integration available to more webmasters across a range of resource and skill levels. Statistics suggest that most of our growth has come not at the expense of other CAs, but from giving previously unencrypted sites their first-ever certificates.</p></blockquote>\n<p>EFF analyzed various sources of usage statistics and estimates that <a href=\"https://www.eff.org/deeplinks/2016/10/lets-encrypt-largest-certificate-authority-web\" target=\"_blank\">Let&#8217;s Encrypt is now the largest certificate authority on the web</a>. Its rapid adoption has spurred impressive progress towards getting the entire web encrypted. Let&#8217;s Encrypt tracks progress by measuring the percentage of page loads using HTTPS, as seen by browsers.</p>\n<p>&#8220;According to Firefox Telemetry, the Web has gone from approximately 39% of page loads using HTTPS each day to just about 49% during the past year,&#8221; Aas said in Let&#8217;s Encrypt&#8217;s <a href=\"https://letsencrypt.org/2017/01/06/le-2016-in-review.html\" target=\"_blank\">2016 in Review</a> report. &#8220;We’re incredibly close to a Web that is more encrypted than not.&#8221;</p>\n<p>The proliferation of Let&#8217;s Encrypt <a href=\"https://letsencrypt.org/docs/client-options/\" target=\"_blank\">client options</a> in 2016 puts the certificate authority in an even better position to continue driving web encryption in 2017. Aas attributes last year&#8217;s progress to many organizations advocating for HTTPS and working to get their sites encrypted. His team has grown from four full-time employees to nine, and he anticipates that 2017 will be a year of even greater growth.</p>\n<p>&#8220;Much of the infrastructure and many of the plans necessary for a 100% encrypted Web came into being or solidified in 2016,&#8221; Aas said. &#8220;More and more hosting providers and CDNs are supporting HTTPS with one click or by default, often without additional fees. It has never been easier for people and organizations running their own sites to find the tools, services, and information they need to move to HTTPS.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 07 Jan 2017 21:42:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WPTavern: How Do You Educate People New 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=64890\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wptavern.com/how-do-you-educate-people-new-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:5213:\"<p>When a friend of mine asked for suggestions on what he should use to create a new site, I suggested WordPress. It is well supported, has an amazing community, and a ton of free themes and plugins to choose from. After getting WordPress installed on a new webhosting account, I left him be to see what issues he would run into and how he would configure the site.</p>\n<p>After noticing the site was loading slowly three weeks later, I obtained admin access to try to determine what the problem was. The first thing I did was check which plugins he installed. One of the plugins added the ability to embed YouTube videos on the site using shortcodes. My friend was unaware that WordPress has <a href=\"https://codex.wordpress.org/Embeds\">oEmbed support</a> which allows users to easily embed videos by pasting the URL into the editor.</p>\n<p>He also installed a couple of other plugins that mimicked core functionality. He was unaware that WordPress does most of the things he wants without the need for plugins.</p>\n<h2>Page Builder Shenanigans</h2>\n<p>After activating a theme that was compatible with the <a href=\"https://wordpress.org/plugins/sportspress/\">SportsPress</a> plugin, he installed the <a href=\"http://www.getmotopress.com/plugins/content-editor/\">MotoPress Content Editor</a>. MotoPress Content Editor is a front-end page builder that enables users to visually construct pages. The front page of the site was a long vertical column filled with information that mimicked blog posts.</p>\n<p>Because he didn&#8217;t understand how WordPress works, he forgot to configure the site to display the latest posts instead of using a front page. What he ended up doing is recreating the blog post layout on the static front page using the MotoPress Content Editor. He also added a lot of page builder elements such as YouTube videos to the page which was a contributing factor to the site&#8217;s poor loading times.</p>\n<p>Page builders are a tool that can make building sites and pages more convenient, but in the wrong hands, they can help users <a href=\"https://wptavern.com/wordpress-visual-page-and-website-builders-make-it-easy-to-create-ugly-sites\">ruin their sites</a>. I replaced the video elements with a text widget that displays the latest video from a YouTube channel. Since he was mimicking the blog post layout on a static page, I configured the site to display the latest blog posts first.</p>\n<p>Once I fixed these issues, I removed the page builder and explained to my friend why it was unnecessary. He was recreating WordPress functionality and doing unnecessary work without realizing it.</p>\n<p>This experience makes me wonder how many other newer WordPress users end up in a similar situation. They don&#8217;t know what WordPress is capable of out-of-the-box and they end up installing a myriad of plugins with descriptions that sound similar to the features they want. I spent about a week undoing all of the work my friend did in three. Had I not stepped in, the site would likely not scale and its performance would decrease further.</p>\n<h2>Getting New Users Started on the Right Track</h2>\n<p>In early 2015, a community initiative dubbed <a href=\"https://make.wordpress.org/core/2015/02/05/4-2-community-initiative-nux-working-group/\">NUX Working Group</a> was created to brainstorm ideas on how to improve the new user experiences throughout the WordPress admin. While the group initially had a head of steam, it lost a lot of momentum last year. I&#8217;d like to see it re-emerge and work in concert with the <a href=\"https://wptavern.com/matt-mullenweg-announces-tech-and-design-leads-for-new-focus-based-development-cycle\">focus-based approach</a> to developing WordPress this year.</p>\n<p>How can WordPress explain to new users what its capable of without drowning them in technical information? Is it feasible to create something that caters to the majority without explaining every feature in detail? <a href=\"https://codex.wordpress.org/Version_3.3\">Admin Pointers</a> were introduced in WordPress 3.3 and while they&#8217;re typically used to introduce new features in a release, they don&#8217;t act as a guided tour to what WordPress can do.</p>\n<p>Education is likely a key component to improving the new user experience. WordPress.com has a <a href=\"https://learn.wordpress.com/get-started/\">12-step beginner&#8217;s guide</a> that walks people through the process of configuring and customizing their sites. For self-hosted WordPress users, there&#8217;s a <a href=\"https://codex.wordpress.org/New_To_WordPress_-_Where_to_Start\">New to WordPress &#8211; Where to Start guide</a> that covers what WordPress is, choosing a host, and considerations to keep in mind. However, much of the information is technical in nature.</p>\n<p>If you&#8217;re a consultant or coach who works with people new to WordPress, how do you handle the educational part of your projects? What are the most common roadblocks that they encounter? Do you have a custom-made getting started guide or do you forward them to a site with video tutorials like <a href=\"https://wordpress.tv/\">WordPress.TV</a> or <a href=\"https://www.wp101.com/\">WP101</a>?</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Jan 2017 19:19:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:47:\"WPTavern: Incubator WordCamp Denpasar 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=64903\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/incubator-wordcamp-denpasar-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:4625:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/taylor-lovett.jpg?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/taylor-lovett.jpg?resize=150%2C150&ssl=1\" alt=\"\" class=\"alignright size-thumbnail wp-image-64907\" /></a>This post was contributed by guest author Taylor Lovett. Lovett is based in the Washington DC area, is the Director of Web Engineering at <a href=\"https://10up.com\" target=\"_blank\">10up</a>, creator of ElasticPress, and general open source enthusiast.<br />\n&nbsp;</p>\n<hr />\n<p>In February 2016, the <a href=\"http://wordpressfoundation.org/\" target=\"_blank\">WordPress Foundation</a> announced the <a href=\"https://wordpress.org/news/2016/02/experiment-wordcamp-incubator/\" target=\"_blank\">WordCamp incubator program</a>, focused on spreading WordPress and open source values to remote areas of the world through extra hands-on support to first time WordCamps. WordCamp Denpasar, which took place in Bali’s capital city, is the first of three camps to be supported as a part of the program — other WordCamps include Harare and Medellín. As Director of Web Engineering at <a href=\"https://10up.com\" target=\"_blank\">10up</a>, I was sent to attend and speak at the inaugural event. Our company values open source projects and the WordPress community, so we’re proud to support emerging communities by attending events like this.</p>\n<p>The incubator program supports WordCamps by providing them with an experienced organizer. In Denpasar’s case, Rocio Valdivia, a Community Wrangler for Automattic, was the WordCamp Incubator sponsored organizer. According to Ivan Kristianto, the lead organizer for WordCamp Denpasar, “Rocio was a hands-on consultant provided by the WordPress Foundation to help incubate the camp. She helped [us] in budgeting, managing the organizers, submission timelines, and more”.</p>\n<p>WordCamp Denpasar attracted 180 attendees, twice the initial goal. Many attendees came from other parts of Indonesia to attend the Camp, which bubbled with an aura of excitement as Indonesia has not had a WordCamp in over three years. The venue, the <a href=\"http://www.sofitel.com/gb/hotel-5551-the-royal-beach-seminyak-bali-mgallery-collection/index.shtml\" target=\"_blank\">Royal Beach Seminyak Hotel</a>, was of ample size and served the crowd well. There was a single session track, mixed with user, business, and developer topics. Lunch included a nice buffet featuring local Balinese cuisine. Overall, the WordCamp attendance, venue, and amenities were quite impressive.</p>\n<p>The speaker lineup was diverse, with speakers from Indonesia, Australia, Europe, Japan, and the United States. Attendees were extremely enthusiastic throughout the sessions and actively engaged in questions. I was last to speak, presenting on <a href=\"https://10up.com/blog/2016/twenty-sixteen-react-nodeifywp/\" target=\"_blank\">NodeifyWP and Twenty Sixteen React</a>. WordCamp Denpasar was the debut presentation of our new isomorphic JavaScript framework. The crowd was extremely excited to hear my presentation and attendees were grateful 10up choose Bali as a first occasion to show the framework. After my talk, I received more questions than could fit in the allotted time slot.</p>\n<p>In the weeks after the Camp, I talked with Rocio about the overall success of the event and Incubator program as a whole. Rocio believed the WordCamp went extremely well. She cited some key events that followed the inaugural camp:</p>\n<ol>\n<li>The local Indonesian meetup group has grown to more than 50 new members across different groups.</li>\n<li>The existing WP Meetup Bekasi group in Indonesia has applied to join the Meetup chapter program.</li>\n<li>The non-active WP Meetup of Jakarta has now two members interested in re-activating the group and have applied to join the chapter program. They are also interested in organizing WordCamp Jakarta 2017.</li>\n<li>The WordPress Foundation has received an application for organizing WordCamp Ubud in 2017 (one hour from Denpasar) which is in pre-planning now.</li>\n<li>A WP Indonesia Slack channel is being created to connect the whole community in the country.</li>\n</ol>\n<p>Clearly, WordCamp Denpasar has had a positive effect on the Indonesian WordPress community. As more areas of the world getting involved contributing to and using WordPress, the project’s internationalization and diversity improves. If Denpasar is any indication, expanding the incubator program to more areas of the world will have long-lasting benefits within the entire WordPress community.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Jan 2017 18:59: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:\"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: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: Matt Mullenweg Announces Tech and Design Leads for New Focus-Based Development Cycle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=64862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/matt-mullenweg-announces-tech-and-design-leads-for-new-focus-based-development-cycle\";s: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:7237:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/01/sharpened-pencil.jpg?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/01/sharpened-pencil.jpg?resize=960%2C542&ssl=1\" alt=\"\" class=\"size-full wp-image-64886\" /></a>photo credit: <a href=\"https://stocksnap.io/photo/JLXDNN5BNE\">Angelina Litvin</a>\n<p>WordPress core development is kicking off in 2017 with the new focus-based development process that Matt Mullenweg announced during the <a href=\"https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle\" target=\"_blank\">2016 State of the Word</a>. The new approach to releases shifts WordPress from the familiar time-based release cycle to one that is more project-based. The idea is that design and user testing will lead the way and upcoming releases will ship when significant user-facing improvements are ready.</p>\n<p>Mullenweg, who will serve as the overall product lead for 2017, <a href=\"https://make.wordpress.org/core/2017/01/04/focus-tech-and-design-leads/\" target=\"_blank\">announced</a> tech and design leads for each of the three focus areas: the REST API, the editor, and the customizer.</p>\n<p>&#8220;For the REST API we’re going to work on getting first party wp-admin usage of the new endpoints, and hopefully replace all of the core places where we still use admin-ajax,&#8221; Mullenweg said. The REST API team nominated Ryan McCue and K.Adam White to take the lead on the objectives Mullenweg outlined, as well as infrastructure and endpoint performance, security, and improvements to authentication options and documentation.</p>\n<p>&#8220;The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has &#8216;blocks&#8217; to make it easy what today might take shortcodes, custom HTML, or &#8216;mystery meat&#8217; embed discovery,&#8221; Mullenweg said. Automattic employees Matias Ventura and Joen Asmussen will be taking point on the editor.</p>\n<p>The <a href=\"https://wordpress.org/plugins/shortcode-ui/\" target=\"_blank\">Shortcake UI</a> feature plugin is one attempt at giving the existing shortcodes feature a more user-friendly interface, but contributors are also exploring other ideas for simplifying the experience of adding rich content to posts. Ella Van Dorpe recently posted an idea for <a href=\"https://make.wordpress.org/core/2016/12/24/idea-uniform-resource-identifiers-as-an-alternative-to-shortcodes/\" target=\"_blank\">using uniform resource identifiers as an alternative to shortcodes</a> in certain use cases. This would work similar to <a href=\"https://codex.wordpress.org/Embeds\" target=\"_blank\">WordPress&#8217; implementation of oEmbed</a> where data is stored elsewhere and embedded in a post using a URL.</p>\n<p>Mullenweg&#8217;s proposed direction for the customizer team is to &#8220;help out the editor at first, then shift to bring those fundamental building blocks into something that could allow customization &#8216;outside of the box&#8217; of post_content, including sidebars and possibly even an entire theme.&#8221; Weston Ruter and Mel Choyce will be taking the lead on the customizer focus.</p>\n<p>Ruter and contributors have been working on a project called <a href=\"https://github.com/xwp/wp-js-widgets\" target=\"_blank\">JS Widgets</a> that uses the Customize API to power the next generation of JavaScript-widgets in core. It opens the door for managing widgets via the REST API and ties in nicely with all three focus areas.</p>\n<p>A preliminary discussion on upcoming Customizer priorities cropped up in the comments. Nick Halsey, co-maintainer of the customize component, <a href=\"https://make.wordpress.org/core/2017/01/04/focus-tech-and-design-leads/#comment-31891\" target=\"_blank\">responded</a> to the proposal of having the customizer help out the editor at first. He believes the best approach is to create the new editor within the Customize API, giving it live previews from the start.</p>\n<p>&#8220;Improving the editor within an &#8216;admin&#8217; interface that lacks live preview doesn’t address the fundamental problems with the current content editing experience and creates something that still has to be entirely rebuilt and reimagined within a live preview context eventually,&#8221; Halsey said. &#8220;If the editor is built on the Customize API first, rather than rethinking the editor and then bringing it into the live preview API, the customize and editor contributors would be able to join forces to focus on improving the content editing experience much more effectively.&#8221;</p>\n<p>It will be interesting to see what direction Mullenweg and the leads decide to take in the foundational task of architecting the new editing experience. Mullenweg made it clear in the State of the Word address that he would like to see Calypso or a similar interface replace wp-admin in the future. However, Calypso was not built using the Customize API, WordPress&#8217; own single page application admin interface that plugins and themes already widely support.</p>\n<p>After WordCamp US, I asked Mullenweg about his intentions for Calypso in relationship to WordPress core. He said the application was &#8220;designed to be in core someday,&#8221; which is one reason they selected the same license and made it open source.</p>\n<p>&#8220;My real hope is that it is something that is ready for core someday &#8211; both Calypso the interface and the concept.&#8221; Mullenweg said. &#8220;That&#8217;s why I said Calypso or something like it. There&#8217;s obviously a lot of WordPress.com stuff in Calypso that will never be in core. If we think of a wp-admin replacement, it would be replacing wp-admin with the parts that Calypso does that are the same thing, kind of more of the my sites section of it. But I do believe the future of a great wp-admin experience is JavaScript &#8211; probably React, talking to APIs, super fast, and maybe even working offline.&#8221;</p>\n<p>Automattic is actively recruiting popular plugin authors to make their plugins Calypso-aware. Demonstrating the application&#8217;s interoperability with the WordPress plugin ecosystem is a must before Calypso can be considered a promising replacement for the WordPress admin. In the meantime, the foundation for a new page and post building experience is being laid with consideration for how the customizer can improve the editor.</p>\n<p>Mullenweg responded to comments on the post indicating that feature plugins or other improvements to WordPress outside of the three focus areas would need to continue on as plugins for the time being. However, performance improvements may be included in minor releases.</p>\n<p>&#8220;What goes in a minor release will broaden a bit, which I know is something we have to approach carefully, but performance is very important and improvements will be something I will consider for being in a minor release,&#8221; Mullenweg said. Contributors are currently working on <a href=\"https://make.wordpress.org/core/tag/4-7-1/\" target=\"_blank\">WordPress 4.7.1</a>, which is planned for release on Tuesday, January 10.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Jan 2017 00:00:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"\";}}}}}}}}}}}}}}}}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:\"Wed, 08 Feb 2017 07:10:24 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Wed, 08 Feb 2017 07:00:10 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20161206192635\";}','no'),(750,'ninja_forms_allow_tracking','1','yes'),(763,'_site_transient_browser_e962b733612dd4249c54f83e15b3b715','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"56.0.2924.87\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(770,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1486581024','no'),(771,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1486537824','no'),(776,'_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b','1486581024','no'),(777,'_transient_dash_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2017/01/wordpress-4-7-2-security-release/\'>WordPress 4.7.2 Security Release</a> <span class=\"rss-date\">January 26, 2017</span><div class=\"rssSummary\">WordPress 4.7.2 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.1 and earlier are affected by three security issues: The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. [&hellip;]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/wp-super-cache-1-4-9-patches-multiple-xss-vulnerabilities\'>WPTavern: WP Super Cache 1.4.9 Patches Multiple XSS Vulnerabilities</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-for-android-closes-google-community-for-beta-testers\'>WPTavern: WordPress for Android Closes Google+ Community for Beta Testers</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/google-updates-amp-to-allow-sharing-of-canonical-url\'>WPTavern: Google Updates AMP to Allow Sharing of Canonical URL</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\"dashboard-news-plugin\"><span>Popular Plugin:</span> Google Analytics Dashboard for WP&nbsp;<a href=\"plugin-install.php?tab=plugin-information&amp;plugin=google-analytics-dashboard-for-wp&amp;_wpnonce=d592fd3d5a&amp;TB_iframe=true&amp;width=600&amp;height=800\" class=\"thickbox open-plugin-details-modal\" aria-label=\"Install Google Analytics Dashboard for WP\">(Install)</a></li></ul></div>','no'),(808,'_transient_hmbkp_database_size','5505288','no'),(784,'wpseo','a:21:{s:14:\"blocking_files\";a:0:{}s:15:\"ms_defaults_set\";b:0;s:7:\"version\";s:5:\"4.2.1\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:0:\"\";s:20:\"disableadvanced_meta\";b:1;s:19:\"onpage_indexability\";b:1;s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:12:\"website_name\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";b:0;s:16:\"environment_type\";s:0:\"\";s:20:\"enable_setting_pages\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1486538576;}','yes'),(785,'wpseo_permalinks','a:9:{s:15:\"cleanpermalinks\";b:0;s:24:\"cleanpermalink-extravars\";s:0:\"\";s:29:\"cleanpermalink-googlecampaign\";b:0;s:31:\"cleanpermalink-googlesitesearch\";b:0;s:15:\"cleanreplytocom\";b:0;s:10:\"cleanslugs\";b:1;s:18:\"redirectattachment\";b:0;s:17:\"stripcategorybase\";b:0;s:13:\"trailingslash\";b:0;}','yes'),(786,'wpseo_titles','a:77:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:23:\"content-analysis-active\";b:1;s:23:\"keyword-analysis-active\";b:1;s:9:\"separator\";s:7:\"sc-dash\";s:5:\"noodp\";b:0;s:15:\"usemetakeywords\";b:0;s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:18:\"metakey-home-wpseo\";s:0:\"\";s:20:\"metakey-author-wpseo\";s:0:\"\";s:22:\"noindex-subpages-wpseo\";b:0;s:20:\"noindex-author-wpseo\";b:0;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"metakey-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:16:\"hideeditbox-post\";b:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"metakey-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:16:\"hideeditbox-page\";b:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"metakey-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:22:\"hideeditbox-attachment\";b:0;s:13:\"title-project\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-project\";s:0:\"\";s:15:\"metakey-project\";s:0:\"\";s:15:\"noindex-project\";b:0;s:16:\"showdate-project\";b:0;s:19:\"hideeditbox-project\";b:0;s:23:\"title-ptarchive-project\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-ptarchive-project\";s:0:\"\";s:25:\"metakey-ptarchive-project\";s:0:\"\";s:25:\"bctitle-ptarchive-project\";s:0:\"\";s:25:\"noindex-ptarchive-project\";b:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:20:\"metakey-tax-category\";s:0:\"\";s:24:\"hideeditbox-tax-category\";b:0;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:20:\"metakey-tax-post_tag\";s:0:\"\";s:24:\"hideeditbox-tax-post_tag\";b:0;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:23:\"metakey-tax-post_format\";s:0:\"\";s:27:\"hideeditbox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;s:26:\"title-tax-project_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:29:\"metadesc-tax-project_category\";s:0:\"\";s:28:\"metakey-tax-project_category\";s:0:\"\";s:32:\"hideeditbox-tax-project_category\";b:0;s:28:\"noindex-tax-project_category\";b:0;s:21:\"title-tax-project_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-project_tag\";s:0:\"\";s:23:\"metakey-tax-project_tag\";s:0:\"\";s:27:\"hideeditbox-tax-project_tag\";b:0;s:23:\"noindex-tax-project_tag\";b:0;}','yes'),(586,'_site_transient_timeout_browser_2aad636b88dc962213164bdfda73a25e','1486801670','no'),(587,'_site_transient_browser_2aad636b88dc962213164bdfda73a25e','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:6:\"10.0.3\";s:10:\"update_url\";s:28:\"http://www.apple.com/safari/\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/safari.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/safari.png\";s:15:\"current_version\";s:1:\"5\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no');
INSERT INTO `wp_upmt_options` VALUES (765,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Feb 2017 15:58: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:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=4.8-alpha-40040\";s:7:\"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:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 4.7.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2017/01/wordpress-4-7-2-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Jan 2017 19:34:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4676\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:357:\"WordPress 4.7.2 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.1 and earlier are affected by three security issues: The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2142:\"<p>WordPress 4.7.2 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.1 and earlier are affected by three security issues:</p>\n<ol>\n<li>The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. Reported by David Herrera of <a href=\"https://www.alleyinteractive.com/\">Alley Interactive</a>.</li>\n<li><code>WP_Query</code> is vulnerable to a SQL injection (SQLi) when passing unsafe data. WordPress core is not directly vulnerable to this issue, but we&#8217;ve added hardening to prevent plugins and themes from accidentally causing a vulnerability. Reported by <a href=\"https://github.com/mjangda\">Mo Jangda</a> (batmoo).</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the posts list table. Reported by <a href=\"https://iandunn.name/\">Ian Dunn</a> of the WordPress Security Team.</li>\n<li>An unauthenticated privilege escalation vulnerability was discovered in a REST API endpoint. Reported by <a href=\"https://twitter.com/MarcS0h\">Marc-Alexandre Montpas</a> of Sucuri Security. *</li>\n</ol>\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.2</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.2.</p>\n<p>Thanks to everyone who contributed to 4.7.2.</p>\n<p>* Update: An additional serious vulnerability was fixed in this release and public disclosure was delayed. For more information on this vulnerability, additional mitigation steps taken, and an explanation for why disclosure was delayed, please read <a href=\"https://make.wordpress.org/core/2017/02/01/disclosure-of-additional-security-fix-in-wordpress-4-7-2/\">Disclosure of Additional Security Fix in WordPress 4.7.2</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4676\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.7.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2017/01/wordpress-4-7-1-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Jan 2017 03:53:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4650\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:375:\"WordPress 4.7 has been downloaded over 10 million times since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7 and earlier are affected by eight security issues: [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6520:\"<p>WordPress 4.7 has been <a href=\"https://wordpress.org/download/counter/\">downloaded over 10 million times</a> since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7 and earlier are affected by eight security issues:</p>\n<ol>\n<li>Remote code execution (RCE) in PHPMailer &#8211; <em>No specific issue appears to affect WordPress</em> or any of the major plugins we investigated but, out of an abundance of caution, we updated PHPMailer in this release. This issue was fixed in PHPMailer thanks to <a href=\"https://legalhackers.com/\">Dawid Golunski</a> and <a href=\"https://twitter.com/Zenexer\">Paul Buonopane</a>.</li>\n<li>The REST API exposed user data for all users who had authored a post of a public post type. WordPress 4.7.1 limits this to only post types which have specified that they should be shown within the REST API. Reported by <a href=\"https://poststatus.com/\">Krogsgard</a> and <a href=\"https://ithemes.com/\">Chris Jean</a>.</li>\n<li>Cross-site scripting (XSS) via the plugin name or version header on <code>update-core.php</code>. Reported by <a href=\"https://dominikschilling.de/\">Dominik Schilling</a> of the WordPress Security Team.</li>\n<li>Cross-site request forgery (CSRF) bypass via uploading a Flash file. Reported by <a href=\"https://twitter.com/Abdulahhusam\">Abdullah Hussam</a>.</li>\n<li>Cross-site scripting (XSS) via theme name fallback. Reported by <a href=\"https://pentest.blog/\">Mehmet Ince</a>.</li>\n<li>Post via email checks <code>mail.example.com</code> if default settings aren&#8217;t changed. Reported by John Blackbourn of the WordPress Security Team.</li>\n<li>A cross-site request forgery (CSRF) was discovered in the accessibility mode of widget editing. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronnie Skansing</a>.</li>\n<li>Weak cryptographic security for multisite activation key. Reported by <a href=\"https://itsjack.cc/\">Jack</a>.</li>\n</ol>\n<p>Thank you to the reporters for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.1 fixes 62 bugs from 4.7. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.1\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?milestone=4.7.1\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.1</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.1.</p>\n<p>Thanks to everyone who contributed to 4.7.1: <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/chandrapatel/\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/christian1012/\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/dreamon11/\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/chopinbach/\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella van Dorpe</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/hristo-sg/\">Hristo Pandjarov</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry/\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver/\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">monikarao</a>, <a href=\"https://profiles.wordpress.org/natereist/\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nikschavan/\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nullvariable/\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/sirbrillig/\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/sanketparmar/\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sfpt/\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom/\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/timph/\">timph</a>, <a href=\"https://profiles.wordpress.org/voldemortensen/\">voldemortensen</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4650\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n	\n\n\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WordPress 4.7 “Vaughan”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://wordpress.org/news/2016/12/vaughan/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Dec 2016 19:27:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4596\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:240:\"Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah \"Sassy\" Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:3:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2016/12/starter-content.mp4\";s:6:\"length\";s:7:\"3736020\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:59:\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4\";s:6:\"length\";s:7:\"1127483\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:58:\"https://wordpress.org/news/files/2016/12/video-headers.mp4\";s:6:\"length\";s:7:\"1549803\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:45498:\"<p>Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah &#8220;Sassy&#8221; Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.</p>\n<div id=\"v-AHz0Ca46-1\" class=\"video-player\"><video id=\"v-AHz0Ca46-1-video\" width=\"632\" height=\"354\" poster=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_scruberthumbnail_0.jpg\" controls=\"true\" preload=\"metadata\" dir=\"ltr\" lang=\"en\"><source src=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_dvd.mp4\" type=\"video/mp4; codecs=&quot;avc1.64001E, mp4a.40.2&quot;\" /><source src=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_fmt1.ogv\" type=\"video/ogg; codecs=&quot;theora, vorbis&quot;\" /><div><img alt=\"Introducing WordPress 4.7\" src=\"https://i1.wp.com/videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_scruberthumbnail_0.jpg?resize=632%2C354&#038;ssl=1\" data-recalc-dims=\"1\" /></div><p>Introducing WordPress 4.7</p></video></div>\n<hr />\n<h2 style=\"text-align:center\">Presenting Twenty Seventeen</h2>\n<p>A brand new default theme brings your site to life with immersive featured images and video headers.</p>\n<p><img class=\"alignnone wp-image-4618 size-large\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=632%2C356&#038;ssl=1\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=300%2C169&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=768%2C432&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?w=1600&amp;ssl=1 1600w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Twenty Seventeen focuses on business sites and features a customizable front page with multiple sections. Personalize it with widgets, navigation, social menus, a logo, custom colors, and more. Our default theme for 2017 works great in many languages, on any device, and for a wide range of users.</p>\n<hr />\n<h2 style=\"text-align:center\">Your Site, Your Way</h2>\n<p>WordPress 4.7 adds new features to the customizer to help take you through the initial setup of a theme, with non-destructive live previews of all your changes in one uninterrupted workflow.</p>\n<h3>Theme Starter Content</h3>\n<div style=\"width: 632px;\" class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<video class=\"wp-video-shortcode\" id=\"video-4596-1\" width=\"632\" height=\"346\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://wordpress.org/news/files/2016/12/starter-content.mp4?_=1\" /><a href=\"https://wordpress.org/news/files/2016/12/starter-content.mp4\">https://wordpress.org/news/files/2016/12/starter-content.mp4</a></video></div>\n<p>To help give you a solid base to build from, individual themes can provide starter content that appears when you go to customize your brand new site. This can range from placing a business information widget in the best location to providing a sample menu with social icon links to a static front page complete with beautiful images. Don’t worry &#8211; nothing new will appear on the live site until you’re ready to save and publish your initial theme setup.</p>\n<div style=\"float: left;width: 48%;margin: 0\">\n<h3>Edit Shortcuts</h3>\n<div style=\"width: 300px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-4596-2\" width=\"300\" height=\"173\" poster=\"https://wordpress.org/news/files/2016/12/4.7-—-Edit-Shortcuts.jpg\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4?_=2\" /><a href=\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4\">https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4</a></video></div>\n<p>Visible icons appear to show you which parts of your site can be customized while live previewing. Click on a shortcut and get straight to editing. Paired with starter content, getting started with customizing your site is faster than ever.</p>\n</div>\n<div style=\"float: right;width: 48%;margin: 0\">\n<h3>Video Headers</h3>\n<div style=\"width: 300px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-4596-3\" width=\"300\" height=\"173\" poster=\"https://wordpress.org/news/files/2016/12/4.7-—-Header-Video.jpg\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://wordpress.org/news/files/2016/12/video-headers.mp4?_=3\" /><a href=\"https://wordpress.org/news/files/2016/12/video-headers.mp4\">https://wordpress.org/news/files/2016/12/video-headers.mp4</a></video></div>\n<p>Sometimes a big atmospheric video as a moving header image is just what you need to showcase your wares; go ahead and try it out with Twenty Seventeen. Need some video inspiration? Try searching for sites with video headers available for download and use.</p>\n</div>\n<div style=\"clear: both\"></div>\n<div style=\"float: left;width: 48%;margin: 0\">\n<h3>Smoother Menu Building</h3>\n<p><img class=\"wp-image-4606 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?resize=300%2C158&#038;ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?resize=300%2C158&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?w=760&amp;ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Many menus for sites contain links to the pages of your site, but what happens when you don’t have any pages yet? Now you can add new pages while building menus instead of leaving the customizer and abandoning your changes. Once you’ve published your customizations, you’ll have new pages ready for you to fill with content.</p>\n</div>\n<div style=\"float: right;width: 48%;margin: 0\">\n<h3>Custom CSS</h3>\n<p><img class=\"wp-image-4607 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?resize=300%2C158&#038;ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?resize=300%2C158&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?w=760&amp;ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Sometimes you just need a few visual tweaks to make your site perfect. WordPress 4.7 allows you to add custom CSS and instantly see how your changes affect your site. The live preview allows you to work quickly without page refreshes slowing you down.</p>\n</div>\n<div style=\"clear: both\"></div>\n<hr />\n<div style=\"float: left;width: 48%;margin: 0\">\n<h3>PDF Thumbnail Previews</h3>\n<p><img class=\"wp-image-4609 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?resize=300%2C158&#038;ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?resize=300%2C158&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?w=760&amp;ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Managing your document collection is easier with WordPress 4.7. Uploading PDFs will generate thumbnail images so you can more easily distinguish between all your documents.</p>\n</div>\n<div style=\"float: right;width: 48%;margin: 0\">\n<h3>Dashboard in your language</h3>\n<p><img class=\"wp-image-4608 size-medium alignright\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?resize=300%2C158&#038;ssl=1\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?resize=300%2C158&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?w=760&amp;ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Just because your site is in one language doesn’t mean that everybody helping manage it prefers that language for their admin. Add more languages to your site and a user language option will show up in your user’s profiles.</p>\n</div>\n<div style=\"clear: both\"></div>\n<hr />\n<h2 style=\"text-align:center\">Introducing REST API Content Endpoints</h2>\n<p>WordPress 4.7 comes with REST API endpoints for posts, comments, terms, users, meta, and settings.</p>\n<p><img class=\"size-large wp-image-4600 alignnone\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=632%2C205&#038;ssl=1\" alt=\"\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=1024%2C332&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=300%2C97&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=768%2C249&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Content endpoints provide machine-readable external access to your WordPress site with a clear, standards-driven interface, paving the way for new and innovative methods of interacting with sites through plugins, themes, apps, and beyond. Ready to get started with development? <a href=\"https://developer.wordpress.org/rest-api/reference/\">Check out the REST API reference.</a></p>\n<hr />\n<h2 style=\"text-align:center\">Even More Developer Happiness <img src=\"https://s.w.org/images/core/emoji/2.2.1/72x72/1f60a.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></h2>\n<h3><a href=\"https://make.wordpress.org/core/2016/11/03/post-type-templates-in-4-7/\">Post Type Templates</a></h3>\n<p>By opening up the page template functionality to all post types, theme developers have even more flexibility with the WordPress template hierarchy.</p>\n<h3>More Theme API Goodies</h3>\n<p>WordPress 4.7 includes <a href=\"https://make.wordpress.org/core/2016/09/09/new-functions-hooks-and-behaviour-for-theme-developers-in-wordpress-4-7/\">new functions, hooks, and behavior</a> for theme developers.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/10/04/custom-bulk-actions/\">Custom Bulk Actions</a></h3>\n<p>List tables, now with more than bulk edit and delete.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/09/08/wp_hook-next-generation-actions-and-filters/\"><code>WP_Hook</code></a></h3>\n<p>The code that lies beneath actions and filters has been overhauled and modernized, fixing bugs along the way.</p>\n<h3>Settings Registration API</h3>\n<p>register_setting() <a href=\"https://make.wordpress.org/core/2016/10/26/registering-your-settings-in-wordpress-4-7/\">has been enhanced</a> to include type, description, and REST API visibility.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/10/12/customize-changesets-technical-design-decisions/\">Customize Changesets</a></h3>\n<p>Customize changesets make changes in the customizer persistent, like autosave drafts. They also make exciting new features like starter content possible.</p>\n<hr />\n<h2 style=\"text-align:center\">The Squad</h2>\n<p>This release was led by <a href=\"https://helen.blog\">Helen Hou-Sandí</a>, backed up by <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a> and <a href=\"http://aaron.jorb.in/\">Aaron Jorbin</a> as Release Deputies, and with the help of these fine individuals. There are 482 contributors with props in this release—the most ever—with 205 of them contributing for the first time. Pull up some sassy Sarah Vaughan on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/abrightclearweb\">abrightclearweb</a>, <a href=\"https://profiles.wordpress.org/ibachal\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/achbed\">achbed</a>, <a href=\"https://profiles.wordpress.org/acmethemes\">Acme Themes</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adammacias\">adammacias</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/ahmadawais\">ahmadawais</a>, <a href=\"https://profiles.wordpress.org/airesvsg\">airesvsg</a>, <a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Bj&#246;rklund</a>, <a href=\"https://profiles.wordpress.org/akshayvinchurkar\">akshayvinchurkar</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/xavortm\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/ironpaperweight\">Alex Hon</a>, <a href=\"https://profiles.wordpress.org/alex27\">alex27</a>, <a href=\"https://profiles.wordpress.org/allancole\">allancole</a>, <a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andrewp-2\">Andreas Panag</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/kelderic\">Andy Mercer</a>, <a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/aniketpant\">Aniket Pant</a>, <a href=\"https://profiles.wordpress.org/anilbasnet\">Anil Basnet</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ahortin\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/antisilent\">antisilent</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/zuige\">Antti Kuosmanen</a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">apokalyptik</a>, <a href=\"https://profiles.wordpress.org/artoliukkonen\">artoliukkonen</a>, <a href=\"https://profiles.wordpress.org/ideag\">Arunas Liuiza</a>, <a href=\"https://profiles.wordpress.org/attitude\">attitude</a>, <a href=\"https://profiles.wordpress.org/backermann\">backermann</a>, <a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/binarymoon\">BinaryMoon</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boblinthorst\">boblinthorst</a>, <a href=\"https://profiles.wordpress.org/boboudreau\">boboudreau</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/brainstormforce\">Brainstorm Force</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brianhogg\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>, <a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"https://profiles.wordpress.org/chandrapatel\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/chaos-engine\">Chaos Engine</a>, <a href=\"https://profiles.wordpress.org/cheeserolls\">cheeserolls</a>, <a href=\"https://profiles.wordpress.org/chesio\">chesio</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/choongsavvii\">choong</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chredd\">chredd</a>, <a href=\"https://profiles.wordpress.org/chrisjean\">Chris Jean</a>, <a href=\"https://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>, <a href=\"https://profiles.wordpress.org/chris_d2d\">Chris Smith</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriswiegman\">Chris Wiegman</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"https://profiles.wordpress.org/christian1012\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/cwpnolen\">Christian Nolen</a>, <a href=\"https://profiles.wordpress.org/needle\">Christian Wach</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/clarionwpdeveloper\">Clarion Technologies</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiosmweb\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiolabarbera\">ClaudioLaBarbera</a>, <a href=\"https://profiles.wordpress.org/codemovementpk\">codemovement.pk</a>, <a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>, <a href=\"https://profiles.wordpress.org/codfish\">codfish</a>, <a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>, <a href=\"https://profiles.wordpress.org/curdin\">Curdin Krummenacher</a>, <a href=\"https://profiles.wordpress.org/cgrymala\">Curtiss Grymala</a>, <a href=\"https://profiles.wordpress.org/cdog\">Cătălin Dogaru</a>, <a href=\"https://profiles.wordpress.org/danhgilmore\">danhgilmore</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber </a>, <a href=\"https://profiles.wordpress.org/danielkanchev\">Daniel Kanchev</a>, <a href=\"https://profiles.wordpress.org/danielpietrasik\">Daniel Pietrasik</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>, <a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>, <a href=\"https://profiles.wordpress.org/goto10\">Dave Romsey (goto10)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/turtlepod\">David Chandra Purnama</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dglingren\">David Lingren</a>, <a href=\"https://profiles.wordpress.org/davidmosterd\">David Mosterd</a>, <a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/davidbhayes\">davidbhayes</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/deeptiboddapati\">deeptiboddapati</a>, <a href=\"https://profiles.wordpress.org/delphinus\">delphinus</a>, <a href=\"https://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/pcfreak30\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/derrickkoo\">Derrick Koo</a>, <a href=\"https://profiles.wordpress.org/dimchik\">dimchik</a>, <a href=\"https://profiles.wordpress.org/dineshc\">Dinesh Chouhan</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipeshkakadiya</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dotancohen\">Dotan Cohen</a>, <a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/doughamlin\">doughamlin</a>, <a href=\"https://profiles.wordpress.org/dreamon11\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/duncanjbrown\">duncanjbrown</a>, <a href=\"https://profiles.wordpress.org/dungengronovius\">dungengronovius</a>, <a href=\"https://profiles.wordpress.org/dylanauty\">DylanAuty</a>, <a href=\"https://profiles.wordpress.org/hurtige\">Eddie Hurtig</a>, <a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>, <a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elyobo\">elyobo</a>, <a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>, <a href=\"https://profiles.wordpress.org/enshrined\">enshrined</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/pushred\">Eric Lanehart</a>, <a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fencer04\">Fencer04</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/foliovision\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/fomenkoandrey\">fomenkoandrey</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fjarrett\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/frankiet\">frankiet</a>, <a href=\"https://profiles.wordpress.org/akeif\">Fred</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/fuscata\">fuscata</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geekysoft\">Geeky Software</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/goranseric\">Goran &#352;erić</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/grantderepas\">Grant Derepas</a>, <a href=\"https://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/hiddenpearls\">hiddenpearls</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hristo-sg\">Hristo Pandjarov</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>, <a href=\"https://profiles.wordpress.org/iamjolly\">iamjolly</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianedington\">Ian Edington</a>, <a href=\"https://profiles.wordpress.org/idealien\">idealien</a>, <a href=\"https://profiles.wordpress.org/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/imnok\">Imnok</a>, <a href=\"https://profiles.wordpress.org/implenton\">implenton</a>, <a href=\"https://profiles.wordpress.org/ionutst\">Ionut Stanciu</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/krstarica\">Ivan</a>, <a href=\"https://profiles.wordpress.org/ivdimova\">ivdimova</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakept\">Jacob Peattie</a>, <a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesacero\">jamesacero</a>, <a href=\"https://profiles.wordpress.org/japh\">Japh</a>, <a href=\"https://profiles.wordpress.org/jaredcobb\">Jared Cobb</a>, <a href=\"https://profiles.wordpress.org/jayarjo\">jayarjo</a>, <a href=\"https://profiles.wordpress.org/jdolan\">jdolan</a>, <a href=\"https://profiles.wordpress.org/jdoubleu\">jdoubleu</a>, <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jimt\">jimt</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jmusal\">jmusal</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelcj91\">Joel James</a>, <a href=\"https://profiles.wordpress.org/johanmynhardt\">johanmynhardt</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/zyphonic\">John Dittmar</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"https://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/kenshino\">Jon (Kenshino)</a>, <a href=\"https://profiles.wordpress.org/jonathanbardo\">Jonathan Bardo</a>, <a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>, <a href=\"https://profiles.wordpress.org/daggerhart\">Jonathan Daggerhart</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnyauk\">jonnyauk</a>, <a href=\"https://profiles.wordpress.org/jordesign\">jordesign</a>, <a href=\"https://profiles.wordpress.org/jorritschippers\">JorritSchippers</a>, <a href=\"https://profiles.wordpress.org/joefusco\">Joseph Fusco</a>, <a href=\"https://profiles.wordpress.org/jjeaton\">Josh Eaton</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshcummingsdesign\">joshcummingsdesign</a>, <a href=\"https://profiles.wordpress.org/joshkadis\">joshkadis</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jrgould\">JRGould</a>, <a href=\"https://profiles.wordpress.org/juanfra\">Juanfra Aldasoro</a>, <a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/nukaga\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/justinbusa\">Justin Busa</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jshreve\">Justin Shreve</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kacperszurek\">kacperszurek</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kalenjohnson\">KalenJohnson</a>, <a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/kellbot\">kellbot</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/khag7\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</a>, <a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/koenschipper\">koenschipper</a>, <a href=\"https://profiles.wordpress.org/kokarn\">kokarn</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kouratoras\">Konstantinos Kouratoras</a>, <a href=\"https://profiles.wordpress.org/kuchenundkakao\">kuchenundkakao</a>, <a href=\"https://profiles.wordpress.org/kuldipem\">kuldipem</a>, <a href=\"https://profiles.wordpress.org/laurelfulford\">Laurel Fulford</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/leobaiano\">Leo Baiano</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">LittleBigThings (Csaba)</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">lukepettway</a>, <a href=\"https://profiles.wordpress.org/lyubomir_popov\">lyubomir_popov</a>, <a href=\"https://profiles.wordpress.org/mageshp\">mageshp</a>, <a href=\"https://profiles.wordpress.org/mahesh901122\">Mahesh Waghmare</a>, <a href=\"https://profiles.wordpress.org/mangeshp\">Mangesh Parte</a>, <a href=\"https://profiles.wordpress.org/manishsongirkar36\">Manish Songirkar</a>, <a href=\"https://profiles.wordpress.org/mantismamita\">mantismamita</a>, <a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/mariovalney\">Mario Valney</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">Mark Root-Wiley</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/markshep\">markshep</a>, <a href=\"https://profiles.wordpress.org/matrixik\">matrixik</a>, <a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"https://profiles.wordpress.org/jaworskimatt\">Matt Jaworski</a>, <a href=\"https://profiles.wordpress.org/mattking5000\">Matt King</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/mbelchev\">mbelchev</a>, <a href=\"https://profiles.wordpress.org/mckernanin\">mckernanin</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mhowell\">mhowell</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michaelarestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/mauteri\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeviele\">Mike Viele</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/modemlooper\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/deremohan\">Mohan Dere</a>, <a href=\"https://profiles.wordpress.org/monikarao\">monikarao</a>, <a href=\"https://profiles.wordpress.org/morettigeorgiev\">morettigeorgiev</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrbobbybryant\">mrbobbybryant</a>, <a href=\"https://profiles.wordpress.org/nnaimov\">Naim Naimov</a>, <a href=\"https://profiles.wordpress.org/natereist\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/natewr\">NateWr</a>, <a href=\"https://profiles.wordpress.org/nathanrice\">nathanrice</a>, <a href=\"https://profiles.wordpress.org/nazgul\">Nazgul</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </a>, <a href=\"https://profiles.wordpress.org/nikeo\">Nicolas GUILLAUME</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/noplanman\">noplanman</a>, <a href=\"https://profiles.wordpress.org/nullvariable\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/odie2\">odie2</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/orvils\">orvils</a>, <a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>, <a href=\"https://profiles.wordpress.org/ottok\">Otto Kek&#228;l&#228;inen</a>, <a href=\"https://profiles.wordpress.org/ovann86\">ovann86</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patilvikasj\">patilvikasj</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/pdufour\">pdufour</a>, <a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/phh\">phh</a>, <a href=\"https://profiles.wordpress.org/php\">php</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/pippinsplugins\">pippinsplugins</a>, <a href=\"https://profiles.wordpress.org/pjgalbraith\">pjgalbraith</a>, <a href=\"https://profiles.wordpress.org/pkevan\">pkevan</a>, <a href=\"https://profiles.wordpress.org/pratikchaskar\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pressionate\">Pressionate</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/procodewp\">procodewp</a>, <a href=\"https://profiles.wordpress.org/quasel\">quasel</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/superpoincare\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramiabraham\">ramiabraham</a>, <a href=\"https://profiles.wordpress.org/ranh\">ranh</a>, <a href=\"https://profiles.wordpress.org/redsand\">Red Sand Media Group</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/rpayne7264\">Robert D Payne</a>, <a href=\"https://profiles.wordpress.org/rnoakes3rd\">Robert Noakes</a>, <a href=\"https://profiles.wordpress.org/d4z_c0nf\">Rocco Aliberti</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/rommelxcastro\">Rommel Castro</a>, <a href=\"https://profiles.wordpress.org/fronaldaraujo\">Ronald Ara&#250;jo</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/guavaworks\">Roy Sivan</a>, <a href=\"https://profiles.wordpress.org/ryankienstra\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/ryanplas\">Ryan Plas</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/sandesh055\">Sandesh</a>, <a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>, <a href=\"https://profiles.wordpress.org/sanketparmar\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/pollyplummer\">Sarah Gooding</a>, <a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/schrapel\">schrapel</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scrappyhuborg\">scrappy@hub.org</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/seancjones\">seancjones</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sgr33n\">Sergio De Falco</a>, <a href=\"https://profiles.wordpress.org/sfpt\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shayanys\">shayanys</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/shprink\">shprink</a>, <a href=\"https://profiles.wordpress.org/simonlampen\">simonlampen</a>, <a href=\"https://profiles.wordpress.org/skippy\">skippy</a>, <a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>, <a href=\"https://profiles.wordpress.org/snacking\">snacking</a>, <a href=\"https://profiles.wordpress.org/soean\">Soeren Wrede</a>, <a href=\"https://profiles.wordpress.org/solal\">solal</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/sharkomatic\">Steph</a>, <a href=\"https://profiles.wordpress.org/sswells\">Steph Wells</a>, <a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stevenlinx\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/stubgo\">stubgo</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/patilswapnilv\">Swapnil V. Patil</a>, <a href=\"https://profiles.wordpress.org/swapnild\">swapnild</a>, <a href=\"https://profiles.wordpress.org/szaqal21\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki\">Takahashi Fumiki</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tapsboy\">tapsboy</a>, <a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/team\">team</a>, <a href=\"https://profiles.wordpress.org/tg29359\">tg29359</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/the\">the</a>, <a href=\"https://profiles.wordpress.org/themeshaper\">themeshaper</a>, <a href=\"https://profiles.wordpress.org/thenbrent\">thenbrent</a>, <a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/tierra\">tierra</a>, <a href=\"https://profiles.wordpress.org/tnash\">Tim Nash</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph\">timph</a>, <a href=\"https://profiles.wordpress.org/tkama\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tnegri\">tnegri</a>, <a href=\"https://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a href=\"https://profiles.wordpress.org/traversal\">traversal</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</a>, <a href=\"https://profiles.wordpress.org/trishasalas\">Trisha Salas</a>, <a href=\"https://profiles.wordpress.org/tristangemus\">tristangemus</a>, <a href=\"https://profiles.wordpress.org/truongwp\">Truong Giang</a>, <a href=\"https://profiles.wordpress.org/tsl143\">tsl143</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>, <a href=\"https://profiles.wordpress.org/valeriutihai\">Valeriu Tihai</a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">voldemortensen</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/vrundakansara-1\">Vrunda Kansara</a>, <a href=\"https://profiles.wordpress.org/webbgaraget\">webbgaraget</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design &#124; Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/websupporter\">websupporter</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>, <a href=\"https://profiles.wordpress.org/wolly\">Wolly aka Paolo Valenti</a>, <a href=\"https://profiles.wordpress.org/wraithkenny\">WraithKenny</a>, <a href=\"https://profiles.wordpress.org/yale01\">yale01</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yogasukma\">Yoga Sukma</a>, <a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>, <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, <a href=\"https://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>, <a href=\"https://profiles.wordpress.org/zhildzik\">zhildzik</a>, and <a href=\"https://profiles.wordpress.org/zsusag\">zsusag</a>.\n<p>&nbsp;<br />\nSpecial thanks go to <a href=\"https://ramiabraham.com/\">Rami Abraham</a> for producing the release video and the many fine haiku we saw in the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">beta</a> and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-release-candidate/\">RC</a> announcement posts.</p>\n<p>Finally, thanks to all the community translators who worked on WordPress 4.7. Their efforts bring WordPress 4.7 fully translated to 52 languages at release time with more on the way. Additionally, the WordPress 4.7 release video has been captioned into 44 languages.</p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress &#8211; we hope you enjoy!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4596\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Moving Toward SSL\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2016/12/moving-toward-ssl/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Dec 2016 17:20:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4588\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:327:\"We’re at a turning point: 2017 is going to be the year that we’re going to see features in WordPress which require hosts to have HTTPS available. Just as JavaScript is a near necessity for smoother user experiences and more modern PHP versions are critical for performance, SSL just makes sense as the next hurdle [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1627:\"<p>We’re at a turning point: 2017 is going to be the year that we’re going to see features in WordPress which require hosts to have HTTPS available. Just as JavaScript is a near necessity for smoother user experiences and more modern PHP versions are critical for performance, SSL just makes sense as the next hurdle our users are going to face.</p>\n<p>SSL basically means the link between your browser and the server is encrypted. SSL used to be difficult to implement, and often expensive or slow. Modern browsers, and the incredible success of projects like <a href=\"https://letsencrypt.org/\">Let&#8217;s Encrypt</a> have made getting a certificate to secure your site fast, free, and something we think every host should support by default, especially in a post-Snowden era. Google also weighs <a href=\"https://security.googleblog.com/2014/08/https-as-ranking-signal_6.html\">SSL as a search engine ranking factor</a> and will begin <a href=\"http://motherboard.vice.com/read/google-will-soon-shame-all-websites-that-are-unencrypted-chrome-https\">flagging unencrypted sites in Chrome</a>.</p>\n<p>First, early in 2017, we will only promote hosting partners that provide a SSL certificate by default in their accounts. Later we will begin to assess which features, such as API authentication, would benefit the most from SSL and make them only enabled when SSL is there.</p>\n<p>Separately, I also think the performance improvements in PHP7 are particularly impressive, and major kudos to everyone who worked on that. We will consider whether hosts use PHP7 by default for new accounts next year as well.</p>\n<p>&nbsp;</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4588\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.7 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2016/11/wordpress-4-7-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Nov 2016 04:26:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4579\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:328:\"The release candidate for WordPress 4.7 is now available. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.7 on Tuesday, December 6, but we need your help to get there. If you haven’t tested 4.7 yet, [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4331:\"<p>The release candidate for WordPress 4.7 is now available.</p>\n<p>RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.7 on <strong>Tuesday, December 6</strong>, but we need <em>your</em> help to get there. If you haven’t tested 4.7 yet, now is the time! To test WordPress 4.7, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.7-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>WordPress 4.7 is a jam-packed release, with a number of features focused on getting a theme set up for the first time. Highlights include a <a href=\"http://2017.wordpress.net/\">new default theme</a>, video headers, custom CSS, customizer edit shortcuts, PDF thumbnail previews, user admin languages, REST API content endpoints, post type templates, and more.</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=39353&amp;stop_rev=39263&amp;limit=200&amp;verbose=on&amp;sfp_email=&amp;sfph_mail=\">quite a few refinements</a> since releasing Beta 4 a week ago, including usability and accessibility enhancements for video headers, media and page template support in starter content, and polishing of how custom CSS can be migrated to and extended by plugins and themes. The REST API endpoints saw a number of bugfixes and notably now have anonymous comment off by default.</p>\n<p>Not sure where to start with testing? Try setting up a fresh site on a new installation with Twenty Seventeen (hint: head into customizing your site before touching any pages or widgets) and taking notes on what you enjoyed and what got you stuck. For more details about what&#8217;s new in version 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.7 and update your plugin’s <em>Tested up to</em> version in the readme to 4.7. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we work hard to avoid breaking things. An in-depth field guide to developer-focused changes is coming soon on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> And if you haven&#8217;t yet done so, now is a great time to <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey\">take the Annual WordPress Survey</a> and send it on to your friends.</p>\n<p>Happy testing! And now for another <a href=\"https://profiles.wordpress.org/ramiabraham\">Rami Abraham</a> haiku break.</p>\n<p><em>Select your language</em><br />\n<em>Then let your users choose theirs</em><br />\n<em><code>get_user_locale()</code></em></p>\n<p><em>Theme authors rejoice</em><br />\n<em>Any option may employ</em><br />\n<em>Selective refresh</em></p>\n<p><em>Custom header video</em><br />\n<em>Make sure to <code>add_theme_support</code></em><br />\n<em>Bling above the fold</em></p>\n<p><em>A new template dawns</em><br />\n<em>A hierarchy member</em><br />\n<em>Post-type templates live</em></p>\n<p><em>PDF updates</em><br />\n<em>Pack a parade of polish</em><br />\n<em>Prettier previews</em></p>\n<p><em>Template Post Type: New</em><br />\n<em>Template Post Type: And Useful</em><br />\n<em>Template Post Type: Thing</em></p>\n<p><em>Let lists live lively</em><br />\n<em>Laud <code>wp_list_sort()</code></em><br />\n<em>Less laconic lists</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4579\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:20:\"WordPress 4.7 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Nov 2016 01:51:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4576\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.7 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2019:\"<p>WordPress 4.7 Beta 4 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta4.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1,</a> <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\">Beta 3</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-7+dev-notes/\">in-depth developer guides on make/core</a>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=39262&amp;stop_rev=39201&amp;limit=200&amp;verbose=on&amp;sfp_email=&amp;sfph_mail=\">about 60 changes</a> in the last few days for beta 4, including tweaks to Twenty Seventeen, custom CSS, and the REST API content endpoints.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>We are almost there<br />\nPlease test your plugins and themes<br />\nRC coming soon<br />\n</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4576\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:34:\"WordCamp US 2017-2018 in Nashville\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2016/11/wordcamp-us-2017-2018-in-nashville/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Nov 2016 23:24:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4571\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:330:\"The title says it all. We had some great applications for cities to host WordCamp US after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is Nashville, Tennessee. Based on the other great applications we got I&#8217;m also excited about the pipeline of communities that could host it in future [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1022:\"<p><img class=\"aligncenter\" src=\"https://i0.wp.com/wpdotorg.files.wordpress.com/2008/07/27492741871_c6fcebcad3_k-e1479248587522.jpg?resize=632%2C253&#038;ssl=1\" data-recalc-dims=\"1\" /></p>\n<p>The title says it all. We had some great applications for cities to host <a href=\"http://us.wordcamp.org/\">WordCamp US</a> after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is <strong>Nashville, Tennessee</strong>.</p>\n<p>Based on the other great applications we got I&#8217;m also excited about the pipeline of communities that could host it in future years as WordCamp US travels across the United States and gives us an opportunity to learn and love a new city, as we have with Philadelphia.</p>\n<p>By the way, if you haven&#8217;t yet, now is a great time to <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey\">take the Annual WordPress Survey</a> and ask your friends to as well.</p>\n<p><a href=\"https://www.flickr.com/photos/143951935@N07/27492741871\">Photo Credit</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4571\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.7 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Nov 2016 03:30:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4566\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.7 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3120:\"<p>WordPress 4.7 Beta 3 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta3.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-7+dev-notes/\">in-depth field guides on make/core</a>. Some of the changes in Beta 3 include:</p>\n<ul>\n<li><strong>REST API:</strong> The <code>unfiltered_html</code> capability is now respected and <code>rest_base</code> has been added to response objects of <code>wp/v2/taxonomies</code> and <code>wp/v2/types</code>, while <code>get_allowed_query_vars()</code> and the <code>rest_get_post</code> filter have been removed.</li>\n<li><strong>Roles/Capabilities:</strong> Added meta-caps for comment, term, and user meta, which are currently only used in the REST API.</li>\n<li><strong>I18N:</strong> Added the ability to change user&#8217;s locale back to site&#8217;s locale. (<a href=\"https://core.trac.wordpress.org/ticket/38632\">#38632</a>)</li>\n<li><strong>Custom CSS:</strong> Renamed the <code>unfiltered_css</code> meta capability to <code>edit_css</code> and added revisions support to the <code>custom_css</code> post type.</li>\n<li><strong>Edit shortcuts:</strong> Theme authors should take a look at <a href=\"https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/\">the developer guide to the customizer preview&#8217;s visible edit shortcuts</a> and update their themes to take advantage of them if not already implementing selective refresh.</li>\n<li><strong>Various bug fixes:</strong> We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=39200&amp;stop_rev=39143&amp;limit=200&amp;verbose=on&amp;sfp_email=&amp;sfph_mail=\">over 50 changes</a> in the last week.</li>\n</ul>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>Building the future</em><br />\n<em>A global community</em><br />\n<em>Stronger together</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4566\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.7 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Nov 2016 17:39:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4552\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.7 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4240:\"<p>WordPress 4.7 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta2.zip\">download the beta here</a> (zip).</p>\n<p>Notable changes since WordPress 4.7 Beta 1:</p>\n<ul>\n<li><strong>Twenty Seventeen:</strong> The theme wasn&#8217;t being installed on upgrades &#8211; sorry about that! Now you should see it if you&#8217;re upgrading an existing site. There are also plenty of fixes, especially for the header and small screen views.</li>\n<li><strong>Edit shortcuts:</strong> These are always visible while editing (hide them on bigger screens by collapsing the controls) and should now work properly in Firefox. (<a href=\"https://core.trac.wordpress.org/ticket/27403\">#27403</a> and <a href=\"https://core.trac.wordpress.org/ticket/38532\">#38532</a>)</li>\n<li><strong>REST API endpoints:</strong> There have been a number of changes over the past week; your attention is requested on the following:\n<ul>\n<li>The <code>DELETE</code> response format has changed and may need to be accounted for. (<a href=\"https://core.trac.wordpress.org/ticket/38494\">#38494</a>)</li>\n<li>Enabled querying by multiple post statuses. (<a href=\"https://core.trac.wordpress.org/ticket/38420\">#38420</a>)</li>\n<li>Return an error when JSON decoding fails. (<a href=\"https://core.trac.wordpress.org/ticket/38547\">#38547</a>)</li>\n</ul>\n</li>\n<li><strong>More developer notes</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2016/10/28/fine-grained-capabilities-for-taxonomy-terms-in-4-7/\">Fine grained capabilities for taxonomy terms</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/10/29/wp_taxonomy-in-4-7/\"><code>WP_Taxonomy</code></a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/02/wp_list_sort-and-wp_list_util-in-4-7/\"><code>wp_list_sort()</code> and <code>WP_List_Util</code></a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/post-type-templates-in-4-7/\">Post type templates</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/new-post-type-labels-in-4-7/\">New post type labels</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/attributes-for-resource-hints-in-4-7/\">Attributes for resource hints</a></li>\n</ul>\n</li>\n<li><strong>Various bug fixes:</strong> We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=39142&amp;stop_rev=38995&amp;limit=200&amp;verbose=on&amp;sfp_email=&amp;sfph_mail=\">almost 150 changes</a> in the last week.</li>\n</ul>\n<p>For more of what’s new in version 4.7, <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">check out the Beta 1 blog post</a>.</p>\n<p>If you want a more in-depth view of what major changes have made it into 4.7, <a href=\"https://make.wordpress.org/core/tag/4-7/\">check out posts tagged with 4.7 on the main development blog</a>, or look at a <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=4.7&amp;group=component&amp;order=priority\">list of everything</a> that’s changed. There will be more developer notes to come, so keep an eye out for those as well.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p>Happy testing!</p>\n<p><em>Ya es la hora</em><br />\n<em> Time for another beta</em><br />\n请您帮下忙!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4552\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.7 Beta 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Oct 2016 04:30: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4535\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.7 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6895:\"<p>WordPress 4.7 Beta 1 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta1.zip\">download the beta here</a> (zip).</p>\n<p>WordPress 4.7 is slated for release on <a href=\"https://make.wordpress.org/core/4-7/\">December 6</a>, but we need your help to get there. We&#8217;ve been working on a lot of things, many of them to make getting your site set up the way you want it much easier. Here are some of the bigger items to test and help us find as many bugs as possible in the coming weeks:</p>\n<ul>\n<li><a href=\"http://2017.wordpress.net/\"><strong>Twenty Seventeen</strong></a> &#8211; A brand new default theme brings your site to life with immersive featured images, video headers, and subtle animations. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.</li>\n<li><strong>Video Headers</strong> &#8211; Sometimes a big atmospheric video as a moving header image is just what you need to showcase your wares; go ahead and try it out with Twenty Seventeen. Need some video inspiration? Try searching for sites with video headers available for download and use.</li>\n<li><strong>Set up your site in one flow</strong> &#8211; From finding and installing themes right inside the customizer, to automatically staged theme-specific starter content, to clickable shortcuts that jump directly to editing an item from the preview pane, to adding pages while you&#8217;re building a nav menu or setting a static front page: getting a new site spun up and ready to share with a friend or a coworker is faster and easier than it&#8217;s ever been. Note: starter content appears when live previewing brand new sites and is currently only available in Twenty Seventeen. We&#8217;ll be expanding this to other bundled themes very soon, and perhaps to sites with existing content in future releases of WordPress.</li>\n<li><strong>Custom CSS with live previews</strong> &#8211; Ever needed to hide or tweak the look of something in your theme or from a plugin? Now you can do it with CSS and live preview the results while customizing your site. CSS can be a powerful tool; you may find that you won&#8217;t need the theme editor or child themes anymore.</li>\n<li><strong>User admin languages</strong> &#8211; Just because your site is in one language doesn&#8217;t mean that everybody helping manage it prefers that language for their admin. To try this out, you&#8217;ll need to have more than one language installed, which will make a user language option available in your profile.</li>\n<li><strong>PDF thumbnail previews</strong> &#8211; Uploading PDFs will now generate thumbnail images so you can more easily distinguish between all your documents.</li>\n</ul>\n<p>As always, there have been exciting changes for developers to explore as well, such as:</p>\n<ul>\n<li><strong>REST API content endpoints</strong> &#8211; If you only test one thing as a developer, please test these. This phase is particularly helpful for people building plugins, themes, and in-admin interfaces. Can you build the things you need? Are these ready for release, and is the world ready for them? (<a href=\"https://core.trac.wordpress.org/ticket/38373\">#38373</a>)</li>\n<li><strong><code>WP_Hook</code></strong> &#8211; The code that lies beneath actions and filters has been overhauled. You likely aren&#8217;t affected, but if you&#8217;ve done things to the <code>$wp_filter</code> global or experienced funky recursion bugs in the past, <a href=\"https://make.wordpress.org/core/2016/09/08/wp_hook-next-generation-actions-and-filters/\">please take a moment to read the dev note</a> and test your code.</li>\n<li><a href=\"https://make.wordpress.org/core/2016/10/04/custom-bulk-actions/\"><strong>Custom bulk actions</strong></a> &#8211; List tables, now with more than bulk edit and delete.</li>\n<li>Expanded <a href=\"https://make.wordpress.org/core/2016/10/26/registering-your-settings-in-wordpress-4-7/\"><strong>Settings Registration API</strong></a> via <code>register_setting()</code>.</li>\n<li>For theme developers: <strong>Post type templates</strong> (<a href=\"https://core.trac.wordpress.org/ticket/18375\">#18375</a>)</li>\n<li><strong><a href=\"https://make.wordpress.org/core/2016/09/09/new-functions-hooks-and-behaviour-for-theme-developers-in-wordpress-4-7/\">More goodies for theme developers!</a></strong></li>\n<li><strong>Locale switching</strong> (<a href=\"https://core.trac.wordpress.org/ticket/26511\">#26511</a>)</li>\n<li><a href=\"https://make.wordpress.org/core/2016/10/11/comment-allowed-checks-in-wordpress-4-7/\"><strong>Comment allowed checks</strong></a> have the potential for a back-compat break.</li>\n</ul>\n<p>If you want a more in-depth view of what major changes have made it into 4.7, <a href=\"https://make.wordpress.org/core/tag/4-7/\">check out posts tagged with 4.7 on the main development blog</a>, or look at a <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=4.7&amp;group=component&amp;order=priority\">list of everything</a> that’s changed. There will be more developer notes to come, so keep an eye out for those as well.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p>Happy testing, and please enjoy this extended haiku break, courtesy of <a href=\"https://profiles.wordpress.org/ramiabraham\">Rami Abraham</a><em>.</em></p>\n<p><em>Exquisite endpoints</em><br />\n<em>Extol epic exabytes</em><br />\n<em>Enabling earthlings</em></p>\n<p><em>Careful interfaces</em><br />\n<em>Considerately conjured</em><br />\n<em>Customizer chic</em></p>\n<p><em>Ring in the new year</em><br />\n<em>With elegance and balance</em><br />\n<em>Twenty Seventeen</em></p>\n<p><em>Hooks hook healthily</em><br />\n<em>17817</em><br />\n<em>Sane iterations</em></p>\n<p><em>Admin in your tongue<br />\nOne site, many languages<br />\nWe all speak WordPress</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:\"4535\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 08 Feb 2017 07:10:23 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:\"Wed, 01 Feb 2017 15:58:56 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}}s:5:\"build\";s:14:\"20161206192635\";}','no'),(809,'_transient_timeout_hmbkp_root_size','1486625144','no'),(810,'_transient_hmbkp_root_size','103474296','no'),(799,'hmbkp_schedule_1486538729','a:6:{s:11:\"max_backups\";i:7;s:8:\"excludes\";a:0:{}s:4:\"type\";s:8:\"complete\";s:12:\"reoccurrence\";s:11:\"fortnightly\";s:19:\"schedule_start_time\";i:1486594800;s:5:\"email\";a:1:{s:5:\"email\";s:18:\"tielag@hotmail.com\";}}','yes'),(734,'_transient_timeout_epc_nocache_pages','1486550733','no'),(735,'_transient_epc_nocache_pages','a:8:{i:0;s:16:\"/demo/tiela/dev/\";i:1;s:25:\"/demo/tiela/dev/services/\";i:2;s:25:\"/demo/tiela/dev/about-me/\";i:3;s:25:\"/demo/tiela/dev/approach/\";i:4;s:29:\"/demo/tiela/dev/testimonials/\";i:5;s:45:\"/demo/tiela/dev/what-is-spiritual-counseling/\";i:6;s:21:\"/demo/tiela/dev/blog/\";i:7;s:27:\"/demo/tiela/dev/contact-me/\";}','no'),(648,'_site_transient_timeout_browser_18a8c10e1e3c2976f02500874a9237de','1487013736','no'),(649,'_site_transient_browser_18a8c10e1e3c2976f02500874a9237de','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:6:\"10.0.2\";s:10:\"update_url\";s:28:\"http://www.apple.com/safari/\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/safari.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/safari.png\";s:15:\"current_version\";s:1:\"5\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(681,'category_children','a:0:{}','yes'),(778,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1486549344','no'),(779,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','a:100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"6169\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"3786\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"3779\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"3309\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2890\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"2591\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"2256\";}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";s:4:\"2191\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"2161\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"2143\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"2105\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"2071\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"2004\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1965\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:4:\"1793\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:4:\"1691\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1668\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:4:\"1492\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:4:\"1407\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:4:\"1315\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:4:\"1305\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:4:\"1175\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:4:\"1149\";}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";s:4:\"1088\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:4:\"1035\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:4:\"1033\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"993\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"993\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"982\";}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";s:3:\"965\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"944\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"919\";}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";s:3:\"877\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"875\";}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";s:3:\"874\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"840\";}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"Share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";s:3:\"800\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"795\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"794\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"777\";}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";s:3:\"771\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"771\";}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";s:3:\"770\";}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"CSS\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";s:3:\"760\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"759\";}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";s:3:\"747\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"743\";}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";s:3:\"739\";}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";s:3:\"738\";}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";s:3:\"731\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"717\";}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";s:3:\"661\";}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";s:3:\"660\";}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";s:3:\"653\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"648\";}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";s:3:\"639\";}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";s:3:\"634\";}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";s:3:\"630\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"621\";}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";s:3:\"618\";}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";s:3:\"605\";}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";s:3:\"603\";}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";s:3:\"597\";}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";s:3:\"597\";}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";s:3:\"590\";}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";s:3:\"583\";}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";s:3:\"569\";}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";s:3:\"563\";}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";s:3:\"556\";}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";s:3:\"552\";}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";s:3:\"550\";}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";s:3:\"546\";}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";s:3:\"542\";}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";s:3:\"539\";}s:4:\"shop\";a:3:{s:4:\"name\";s:4:\"shop\";s:4:\"slug\";s:4:\"shop\";s:5:\"count\";s:3:\"537\";}s:7:\"picture\";a:3:{s:4:\"name\";s:7:\"picture\";s:4:\"slug\";s:7:\"picture\";s:5:\"count\";s:3:\"527\";}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";s:3:\"522\";}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";s:3:\"514\";}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";s:3:\"494\";}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";s:3:\"479\";}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";s:3:\"474\";}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";s:3:\"471\";}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";s:3:\"469\";}s:8:\"pictures\";a:3:{s:4:\"name\";s:8:\"pictures\";s:4:\"slug\";s:8:\"pictures\";s:5:\"count\";s:3:\"468\";}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";s:3:\"458\";}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";s:3:\"457\";}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";s:3:\"446\";}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";s:3:\"444\";}s:8:\"lightbox\";a:3:{s:4:\"name\";s:8:\"lightbox\";s:4:\"slug\";s:8:\"lightbox\";s:5:\"count\";s:3:\"440\";}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";s:3:\"440\";}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s:3:\"tag\";s:5:\"count\";s:3:\"436\";}s:6:\"paypal\";a:3:{s:4:\"name\";s:6:\"paypal\";s:4:\"slug\";s:6:\"paypal\";s:5:\"count\";s:3:\"431\";}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";s:3:\"431\";}s:9:\"thumbnail\";a:3:{s:4:\"name\";s:9:\"thumbnail\";s:4:\"slug\";s:9:\"thumbnail\";s:5:\"count\";s:3:\"430\";}s:6:\"upload\";a:3:{s:4:\"name\";s:6:\"upload\";s:4:\"slug\";s:6:\"upload\";s:5:\"count\";s:3:\"428\";}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"News\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";s:3:\"427\";}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";s:3:\"424\";}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";s:3:\"424\";}s:7:\"sharing\";a:3:{s:4:\"name\";s:7:\"sharing\";s:4:\"slug\";s:7:\"sharing\";s:5:\"count\";s:3:\"423\";}s:8:\"linkedin\";a:3:{s:4:\"name\";s:8:\"linkedin\";s:4:\"slug\";s:8:\"linkedin\";s:5:\"count\";s:3:\"421\";}}','no'),(812,'_transient_hmbkp_wp_cron_test_beacon','1','no'),(815,'_transient_timeout_hm_backdrop-878e5c068aaee49781d2fd56aa20','1486539096','no'),(807,'_transient_timeout_hmbkp_database_size','1487143539','no'),(701,'et_account_status','active','yes'),(702,'_site_transient_et_update_themes','O:8:\"stdClass\":3:{s:7:\"checked\";a:2:{s:4:\"Divi\";s:6:\"3.0.23\";s:15:\"twentyseventeen\";s:3:\"1.0\";}s:8:\"response\";a:1:{s:4:\"Divi\";a:2:{s:11:\"new_version\";s:6:\"3.0.33\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";}}s:12:\"last_checked\";i:1486538720;}','no'),(704,'_site_transient_et_update_all_plugins','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1486538727;}','no'),(705,'ninja_forms_version','3.0.27','yes'),(706,'ninja_forms_settings','a:7:{s:11:\"date_format\";s:5:\"m/d/Y\";s:8:\"currency\";s:3:\"USD\";s:18:\"recaptcha_site_key\";s:0:\"\";s:20:\"recaptcha_secret_key\";s:0:\"\";s:14:\"recaptcha_lang\";s:0:\"\";s:19:\"delete_on_uninstall\";i:0;s:21:\"disable_admin_notices\";i:0;}','yes'),(710,'widget_ninja_forms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(709,'nf_form_1','a:4:{s:2:\"id\";s:1:\"1\";s:6:\"fields\";a:4:{i:0;a:2:{s:2:\"id\";s:1:\"1\";s:8:\"settings\";a:70:{s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:4:\"name\";s:9:\"parent_id\";s:1:\"1\";s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3277\";}}i:1;a:2:{s:2:\"id\";s:1:\"2\";s:8:\"settings\";a:62:{s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:5:\"email\";s:9:\"parent_id\";s:1:\"1\";s:4:\"type\";s:5:\"email\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"2\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3281\";}}i:2;a:2:{s:2:\"id\";s:1:\"3\";s:8:\"settings\";a:71:{s:5:\"label\";s:7:\"Message\";s:3:\"key\";s:7:\"message\";s:9:\"parent_id\";s:1:\"1\";s:4:\"type\";s:8:\"textarea\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"3\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3284\";}}i:3;a:2:{s:2:\"id\";s:1:\"4\";s:8:\"settings\";a:69:{s:5:\"label\";s:6:\"Submit\";s:3:\"key\";s:6:\"submit\";s:9:\"parent_id\";s:1:\"1\";s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:16:\"processing_label\";s:10:\"Processing\";s:5:\"order\";s:1:\"5\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:44:\"submit_element_hover_styles_background-color\";s:0:\"\";s:34:\"submit_element_hover_styles_border\";s:0:\"\";s:40:\"submit_element_hover_styles_border-style\";s:0:\"\";s:40:\"submit_element_hover_styles_border-color\";s:0:\"\";s:33:\"submit_element_hover_styles_color\";s:0:\"\";s:34:\"submit_element_hover_styles_height\";s:0:\"\";s:33:\"submit_element_hover_styles_width\";s:0:\"\";s:37:\"submit_element_hover_styles_font-size\";s:0:\"\";s:34:\"submit_element_hover_styles_margin\";s:0:\"\";s:35:\"submit_element_hover_styles_padding\";s:0:\"\";s:35:\"submit_element_hover_styles_display\";s:0:\"\";s:33:\"submit_element_hover_styles_float\";s:0:\"\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:36:\"submit_element_hover_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3287\";}}}s:7:\"actions\";a:4:{i:0;a:2:{s:2:\"id\";s:1:\"1\";s:8:\"settings\";a:25:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:5:\"label\";s:16:\"Save to Database\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:13:\"email_message\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";}}i:1;a:2:{s:2:\"id\";s:1:\"2\";s:8:\"settings\";a:26:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:5:\"label\";s:18:\"Email Confirmation\";s:2:\"to\";s:13:\"{field:email}\";s:7:\"subject\";s:24:\"This is an email action.\";s:7:\"message\";s:19:\"Hello, Ninja Forms!\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:24:\"Submission Confirmation \";s:13:\"email_message\";s:29:\"<p>{field:all_fields}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";}}i:2;a:2:{s:2:\"id\";s:1:\"3\";s:8:\"settings\";a:24:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-24 16:47:39\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:5:\"label\";s:18:\"Email Notification\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:20:\"{system:admin_email}\";s:13:\"email_subject\";s:29:\"New message from {field:name}\";s:13:\"email_message\";s:67:\"<p>{field:message}</p><p>-Â {field:name} (Â {field:email} )</p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:13:\"{field:email}\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:1:\"0\";s:19:\"email_message_plain\";s:0:\"\";}}i:3;a:2:{s:2:\"id\";s:1:\"4\";s:8:\"settings\";a:27:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:5:\"label\";s:15:\"Success Message\";s:7:\"message\";s:47:\"Thank you {field:name} for filling out my form!\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:13:\"email_message\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:11:\"success_msg\";s:88:\"<p>Form submitted successfully.</p><p>A confirmation email was sent to{field:email}.</p>\";s:19:\"email_message_plain\";s:0:\"\";}}}s:8:\"settings\";a:100:{s:5:\"title\";s:10:\"Contact Me\";s:3:\"key\";s:0:\"\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:17:\"default_label_pos\";s:5:\"above\";s:8:\"_seq_num\";s:1:\"3\";s:10:\"conditions\";a:0:{}s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";s:0:\"\";s:10:\"show_title\";s:1:\"1\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"add_submit\";s:1:\"1\";s:9:\"logged_in\";s:0:\"\";s:17:\"not_logged_in_msg\";s:0:\"\";s:16:\"sub_limit_number\";s:0:\"\";s:13:\"sub_limit_msg\";s:0:\"\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:4:{i:0;a:2:{s:5:\"order\";s:1:\"0\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:4:\"name\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";s:1:\"1\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:5:\"email\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";s:1:\"2\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:7:\"message\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";s:1:\"3\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:6:\"submit\";}s:5:\"width\";s:3:\"100\";}}}}s:33:\"container_styles_background-color\";s:0:\"\";s:23:\"container_styles_border\";s:0:\"\";s:29:\"container_styles_border-style\";s:0:\"\";s:29:\"container_styles_border-color\";s:0:\"\";s:22:\"container_styles_color\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:22:\"container_styles_width\";s:0:\"\";s:26:\"container_styles_font-size\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:24:\"container_styles_display\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:34:\"container_styles_show_advanced_css\";s:1:\"0\";s:25:\"container_styles_advanced\";s:0:\"\";s:29:\"title_styles_background-color\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:25:\"title_styles_border-style\";s:0:\"\";s:25:\"title_styles_border-color\";s:0:\"\";s:18:\"title_styles_color\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:20:\"title_styles_display\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:21:\"title_styles_advanced\";s:0:\"\";s:27:\"row_styles_background-color\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:23:\"row_styles_border-style\";s:0:\"\";s:23:\"row_styles_border-color\";s:0:\"\";s:16:\"row_styles_color\";s:0:\"\";s:17:\"row_styles_height\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:18:\"row_styles_display\";s:0:\"\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:19:\"row_styles_advanced\";s:0:\"\";s:31:\"row-odd_styles_background-color\";s:0:\"\";s:21:\"row-odd_styles_border\";s:0:\"\";s:27:\"row-odd_styles_border-style\";s:0:\"\";s:27:\"row-odd_styles_border-color\";s:0:\"\";s:20:\"row-odd_styles_color\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:22:\"row-odd_styles_display\";s:0:\"\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:23:\"row-odd_styles_advanced\";s:0:\"\";s:35:\"success-msg_styles_background-color\";s:0:\"\";s:25:\"success-msg_styles_border\";s:0:\"\";s:31:\"success-msg_styles_border-style\";s:0:\"\";s:31:\"success-msg_styles_border-color\";s:0:\"\";s:24:\"success-msg_styles_color\";s:0:\"\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:0:\"\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:26:\"success-msg_styles_display\";s:0:\"\";s:36:\"success-msg_styles_show_advanced_css\";s:1:\"0\";s:27:\"success-msg_styles_advanced\";s:0:\"\";s:33:\"error_msg_styles_background-color\";s:0:\"\";s:23:\"error_msg_styles_border\";s:0:\"\";s:29:\"error_msg_styles_border-style\";s:0:\"\";s:29:\"error_msg_styles_border-color\";s:0:\"\";s:22:\"error_msg_styles_color\";s:0:\"\";s:23:\"error_msg_styles_height\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";s:24:\"error_msg_styles_display\";s:0:\"\";s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:25:\"error_msg_styles_advanced\";s:0:\"\";}}','yes'),(721,'_site_transient_timeout_available_translations','1486474244','no'),(722,'_site_transient_available_translations','a:108:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:38:06\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:49:08\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-22 18:59:07\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-01 08:27:29\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:53:38\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-04 16:58:43\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-05 09:44:12\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-04 20:20:28\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:07\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 08:46:26\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:12:\"Čeština‎\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:49:29\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:49:25\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Forts&#230;t\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:03\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:59\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/4.7.2/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:17\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.7.2/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:21\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 13:41:24\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:51:11\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:30\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:49:34\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 00:40:28\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:53:43\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:07\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:28\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:41:05\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:37\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_GT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:37\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_CO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:53:56\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_VE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-28 20:09:49\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:41:31\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_AR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 16:37:11\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:33\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:24\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:25\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:53:51\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:32\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:30\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:27\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:07\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:45\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:41\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:13\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:39\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:27\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 15:18:24\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:22\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:17\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:24\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:13\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-07 02:07:59\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:53\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:25\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:34\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 07:09:15\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:41\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:37\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:49\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.14\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.14/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:31\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:31\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:49:13\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:48\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-10-14 13:24:10\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.7.2/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:57\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-02 13:47:38\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:18\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.14\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.14/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:15\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:53\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:42:11\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:09:16\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:41:00\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:49:04\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:49\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:41:03\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:40:55\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:43\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-30 02:38:08\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:59\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-05 09:23:39\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 19:24:08\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:36:52\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:02\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:35\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:55:14\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:54:45\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:55:10\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),(714,'nf_form_2','a:7:{s:2:\"id\";i:2;s:20:\"show_publish_options\";b:0;s:6:\"fields\";a:6:{i:0;a:2:{s:8:\"settings\";a:17:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:1;s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:4:\"name\";s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3277\";s:10:\"manual_key\";b:0;}s:2:\"id\";s:1:\"5\";}i:1;a:2:{s:8:\"settings\";a:14:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:2;s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:5:\"email\";s:4:\"type\";s:5:\"email\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3281\";}s:2:\"id\";s:1:\"6\";}i:2;a:2:{s:8:\"settings\";a:12:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:3;s:4:\"type\";s:5:\"phone\";s:5:\"label\";s:5:\"Phone\";s:3:\"key\";s:19:\"phone_1486461957338\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";b:0;s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";b:0;}s:2:\"id\";i:9;}i:3;a:2:{s:8:\"settings\";a:10:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:4;s:4:\"type\";s:10:\"listselect\";s:5:\"label\";s:17:\"I\'m interested in\";s:3:\"key\";s:31:\"i_m_interested_in_1486462025034\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";i:1;s:7:\"options\";a:3:{i:0;a:7:{s:6:\"errors\";a:0:{}s:5:\"label\";s:22:\"Individual Counselling\";s:5:\"value\";s:22:\"individual-counselling\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:7:{s:6:\"errors\";a:0:{}s:5:\"label\";s:19:\"Couples Counselling\";s:5:\"value\";s:19:\"couples-counselling\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:2;a:7:{s:6:\"errors\";a:0:{}s:5:\"label\";s:15:\"Public Speaking\";s:5:\"value\";s:15:\"public-speaking\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}}s:2:\"id\";i:10;}i:4;a:2:{s:8:\"settings\";a:17:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:5;s:5:\"label\";s:7:\"Message\";s:3:\"key\";s:7:\"message\";s:4:\"type\";s:8:\"textarea\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3284\";s:10:\"manual_key\";b:0;}s:2:\"id\";s:1:\"7\";}i:5;a:2:{s:8:\"settings\";a:14:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:6;s:5:\"label\";s:6:\"Submit\";s:3:\"key\";s:6:\"submit\";s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:16:\"processing_label\";s:10:\"Processing\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:7:\"cellcid\";s:5:\"c3287\";}s:2:\"id\";s:1:\"8\";}}s:7:\"actions\";a:4:{i:0;a:2:{s:8:\"settings\";a:25:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:5:\"label\";s:16:\"Save to Database\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:13:\"email_message\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:5;}i:1;a:2:{s:8:\"settings\";a:27:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:5:\"label\";s:15:\"Success Message\";s:7:\"message\";s:47:\"Thank you {field:name} for filling out my form!\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:13:\"email_message\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:11:\"success_msg\";s:88:\"<p>Form submitted successfully.</p><p>A confirmation email was sent to{field:email}.</p>\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:8;}i:2;a:2:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:5:\"label\";s:18:\"Email Confirmation\";s:2:\"to\";s:13:\"{field:email}\";s:7:\"subject\";s:24:\"This is an email action.\";s:7:\"message\";s:19:\"Hello, Ninja Forms!\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:24:\"Submission Confirmation \";s:13:\"email_message\";s:29:\"<p>{field:all_fields}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:6;}i:3;a:2:{s:8:\"settings\";a:24:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-24 16:47:39\";s:5:\"label\";s:18:\"Email Notification\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:20:\"{system:admin_email}\";s:13:\"email_subject\";s:29:\"New message from {field:name}\";s:13:\"email_message\";s:67:\"<p>{field:message}</p><p>-Â {field:name} (Â {field:email} )</p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:13:\"{field:email}\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:1:\"0\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:7;}}s:8:\"settings\";a:101:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";s:0:\"\";s:5:\"title\";s:10:\"Contact Me\";s:3:\"key\";s:0:\"\";s:10:\"created_at\";s:19:\"2016-08-24 16:39:20\";s:17:\"default_label_pos\";s:5:\"above\";s:8:\"_seq_num\";s:1:\"3\";s:10:\"conditions\";a:0:{}s:10:\"show_title\";s:1:\"1\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"add_submit\";s:1:\"1\";s:9:\"logged_in\";s:0:\"\";s:17:\"not_logged_in_msg\";s:0:\"\";s:16:\"sub_limit_number\";s:0:\"\";s:13:\"sub_limit_msg\";s:0:\"\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:6:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:19:\"phone_1486461957338\";i:3;s:31:\"i_m_interested_in_1486462025034\";i:4;s:7:\"message\";i:5;s:6:\"submit\";}s:33:\"container_styles_background-color\";s:0:\"\";s:23:\"container_styles_border\";s:0:\"\";s:29:\"container_styles_border-style\";s:0:\"\";s:29:\"container_styles_border-color\";s:0:\"\";s:22:\"container_styles_color\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:22:\"container_styles_width\";s:0:\"\";s:26:\"container_styles_font-size\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:24:\"container_styles_display\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:34:\"container_styles_show_advanced_css\";s:1:\"0\";s:25:\"container_styles_advanced\";s:0:\"\";s:29:\"title_styles_background-color\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:25:\"title_styles_border-style\";s:0:\"\";s:25:\"title_styles_border-color\";s:0:\"\";s:18:\"title_styles_color\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:20:\"title_styles_display\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:21:\"title_styles_advanced\";s:0:\"\";s:27:\"row_styles_background-color\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:23:\"row_styles_border-style\";s:0:\"\";s:23:\"row_styles_border-color\";s:0:\"\";s:16:\"row_styles_color\";s:0:\"\";s:17:\"row_styles_height\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:18:\"row_styles_display\";s:0:\"\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:19:\"row_styles_advanced\";s:0:\"\";s:31:\"row-odd_styles_background-color\";s:0:\"\";s:21:\"row-odd_styles_border\";s:0:\"\";s:27:\"row-odd_styles_border-style\";s:0:\"\";s:27:\"row-odd_styles_border-color\";s:0:\"\";s:20:\"row-odd_styles_color\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:22:\"row-odd_styles_display\";s:0:\"\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:23:\"row-odd_styles_advanced\";s:0:\"\";s:35:\"success-msg_styles_background-color\";s:0:\"\";s:25:\"success-msg_styles_border\";s:0:\"\";s:31:\"success-msg_styles_border-style\";s:0:\"\";s:31:\"success-msg_styles_border-color\";s:0:\"\";s:24:\"success-msg_styles_color\";s:0:\"\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:0:\"\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:26:\"success-msg_styles_display\";s:0:\"\";s:36:\"success-msg_styles_show_advanced_css\";s:1:\"0\";s:27:\"success-msg_styles_advanced\";s:0:\"\";s:33:\"error_msg_styles_background-color\";s:0:\"\";s:23:\"error_msg_styles_border\";s:0:\"\";s:29:\"error_msg_styles_border-style\";s:0:\"\";s:29:\"error_msg_styles_border-color\";s:0:\"\";s:22:\"error_msg_styles_color\";s:0:\"\";s:23:\"error_msg_styles_height\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";s:24:\"error_msg_styles_display\";s:0:\"\";s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:25:\"error_msg_styles_advanced\";s:0:\"\";s:8:\"currency\";s:0:\"\";}s:14:\"deleted_fields\";a:0:{}s:15:\"deleted_actions\";a:0:{}}','yes'),(723,'WPLANG','','yes'),(787,'wpseo_social','a:20:{s:9:\"fb_admins\";a:0:{}s:12:\"fbconnectkey\";s:32:\"30bbb6a38a228fefc2b668c464097c41\";s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:14:\"plus-publisher\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:7:\"summary\";s:11:\"youtube_url\";s:0:\"\";s:15:\"google_plus_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}','yes'),(788,'wpseo_rss','a:2:{s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";}','yes'),(789,'wpseo_internallinks','a:13:{s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:23:\"breadcrumbs-blog-remove\";b:0;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"&raquo;\";s:23:\"post_types-post-maintax\";i:0;s:26:\"post_types-project-maintax\";i:0;s:34:\"taxonomy-project_category-ptparent\";i:0;s:29:\"taxonomy-project_tag-ptparent\";i:0;}','yes'),(790,'wpseo_xml','a:19:{s:22:\"disable_author_sitemap\";b:1;s:22:\"disable_author_noposts\";b:1;s:16:\"enablexmlsitemap\";b:1;s:16:\"entries-per-page\";i:1000;s:14:\"excluded-posts\";s:0:\"\";s:38:\"user_role-administrator-not_in_sitemap\";b:0;s:31:\"user_role-editor-not_in_sitemap\";b:0;s:31:\"user_role-author-not_in_sitemap\";b:0;s:36:\"user_role-contributor-not_in_sitemap\";b:0;s:35:\"user_role-subscriber-not_in_sitemap\";b:0;s:30:\"post_types-post-not_in_sitemap\";b:0;s:30:\"post_types-page-not_in_sitemap\";b:0;s:36:\"post_types-attachment-not_in_sitemap\";b:1;s:33:\"post_types-project-not_in_sitemap\";b:0;s:34:\"taxonomies-category-not_in_sitemap\";b:0;s:34:\"taxonomies-post_tag-not_in_sitemap\";b:0;s:37:\"taxonomies-post_format-not_in_sitemap\";b:0;s:42:\"taxonomies-project_category-not_in_sitemap\";b:0;s:37:\"taxonomies-project_tag-not_in_sitemap\";b:0;}','yes'),(791,'wpseo_flush_rewrite','1','yes'),(795,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1486538726;s:7:\"checked\";a:5:{s:19:\"akismet/akismet.php\";s:3:\"3.2\";s:35:\"backupwordpress/backupwordpress.php\";s:7:\"3.6.3.1\";s:19:\"jetpack/jetpack.php\";s:5:\"4.4.2\";s:27:\"ninja-forms/ninja-forms.php\";s:6:\"3.0.27\";s:24:\"wordpress-seo/wp-seo.php\";s:5:\"4.2.1\";}s:8:\"response\";a:1:{s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:5:\"20101\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:3:\"4.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.4.6.zip\";s:6:\"tested\";s:5:\"4.7.2\";s:13:\"compatibility\";O:8:\"stdClass\":1:{s:6:\"scalar\";O:8:\"stdClass\":1:{s:6:\"scalar\";b:0;}}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:4:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"3.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.3.2.zip\";}s:35:\"backupwordpress/backupwordpress.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"885\";s:4:\"slug\";s:15:\"backupwordpress\";s:6:\"plugin\";s:35:\"backupwordpress/backupwordpress.php\";s:11:\"new_version\";s:7:\"3.6.3.1\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/backupwordpress/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/backupwordpress.3.6.3.1.zip\";}s:27:\"ninja-forms/ninja-forms.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"27901\";s:4:\"slug\";s:11:\"ninja-forms\";s:6:\"plugin\";s:27:\"ninja-forms/ninja-forms.php\";s:11:\"new_version\";s:6:\"3.0.27\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/ninja-forms/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/ninja-forms.3.0.27.zip\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"5899\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:5:\"4.2.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.4.2.1.zip\";}}}','no'),(796,'hmbkp_plugin_version','3.6.3.1','yes'),(762,'_site_transient_timeout_browser_e962b733612dd4249c54f83e15b3b715','1487142620','no');
/*!40000 ALTER TABLE `wp_upmt_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_upmt_postmeta`
--

DROP TABLE IF EXISTS `wp_upmt_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=586 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_postmeta`
--

LOCK TABLES `wp_upmt_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_upmt_postmeta` DISABLE KEYS */;
INSERT INTO `wp_upmt_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,4,'_et_pb_predefined_layout','on'),(3,4,'_et_pb_built_for_post_type','page'),(4,5,'_et_pb_predefined_layout','on'),(5,5,'_et_pb_built_for_post_type','page'),(6,6,'_et_pb_predefined_layout','on'),(7,6,'_et_pb_built_for_post_type','page'),(8,7,'_et_pb_predefined_layout','on'),(9,7,'_et_pb_built_for_post_type','page'),(10,8,'_et_pb_predefined_layout','on'),(11,8,'_et_pb_built_for_post_type','page'),(12,9,'_et_pb_predefined_layout','on'),(13,9,'_et_pb_built_for_post_type','page'),(14,10,'_et_pb_predefined_layout','on'),(15,10,'_et_pb_built_for_post_type','page'),(16,11,'_et_pb_predefined_layout','on'),(17,11,'_et_pb_built_for_post_type','page'),(18,12,'_et_pb_predefined_layout','on'),(19,12,'_et_pb_built_for_post_type','page'),(20,13,'_et_pb_predefined_layout','on'),(21,13,'_et_pb_built_for_post_type','page'),(22,14,'_et_pb_predefined_layout','on'),(23,14,'_et_pb_built_for_post_type','page'),(24,15,'_et_pb_predefined_layout','on'),(25,15,'_et_pb_built_for_post_type','page'),(26,16,'_et_pb_predefined_layout','on'),(27,16,'_et_pb_built_for_post_type','page'),(28,17,'_et_pb_predefined_layout','on'),(29,17,'_et_pb_built_for_post_type','page'),(30,18,'_et_pb_predefined_layout','on'),(31,18,'_et_pb_built_for_post_type','page'),(32,19,'_et_pb_predefined_layout','on'),(33,19,'_et_pb_built_for_post_type','page'),(34,20,'_et_pb_predefined_layout','on'),(35,20,'_et_pb_built_for_post_type','page'),(36,21,'_et_pb_predefined_layout','on'),(37,21,'_et_pb_built_for_post_type','page'),(38,22,'_et_pb_predefined_layout','on'),(39,22,'_et_pb_built_for_post_type','page'),(40,23,'_et_pb_predefined_layout','on'),(41,23,'_et_pb_built_for_post_type','page'),(42,24,'_et_pb_predefined_layout','on'),(43,24,'_et_pb_built_for_post_type','page'),(44,25,'_et_pb_predefined_layout','on'),(45,25,'_et_pb_built_for_post_type','page'),(46,26,'_et_pb_predefined_layout','on'),(47,26,'_et_pb_built_for_post_type','page'),(48,27,'_et_pb_predefined_layout','on'),(49,27,'_et_pb_built_for_post_type','page'),(50,28,'_et_pb_predefined_layout','on'),(51,28,'_et_pb_built_for_post_type','page'),(52,29,'_et_pb_predefined_layout','on'),(53,29,'_et_pb_built_for_post_type','page'),(54,30,'_et_pb_predefined_layout','on'),(55,30,'_et_pb_built_for_post_type','page'),(56,31,'_et_pb_predefined_layout','on'),(57,31,'_et_pb_built_for_post_type','page'),(58,32,'_et_pb_predefined_layout','on'),(59,32,'_et_pb_built_for_post_type','page'),(60,33,'_et_pb_predefined_layout','on'),(61,33,'_et_pb_built_for_post_type','page'),(62,34,'_et_pb_predefined_layout','on'),(63,34,'_et_pb_built_for_post_type','page'),(64,35,'_et_pb_predefined_layout','on'),(65,35,'_et_pb_built_for_post_type','page'),(66,36,'_wp_attached_file','2016/12/tiela-logo.png'),(67,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1632;s:6:\"height\";i:103;s:4:\"file\";s:22:\"2016/12/tiela-logo.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"tiela-logo-150x103.png\";s:5:\"width\";i:150;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"tiela-logo-300x19.png\";s:5:\"width\";i:300;s:6:\"height\";i:19;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"tiela-logo-768x48.png\";s:5:\"width\";i:768;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"tiela-logo-1024x65.png\";s:5:\"width\";i:1024;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"tiela-logo-400x103.png\";s:5:\"width\";i:400;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"tiela-logo-1080x103.png\";s:5:\"width\";i:1080;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"tiela-logo-400x103.png\";s:5:\"width\";i:400;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"tiela-logo-510x103.png\";s:5:\"width\";i:510;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:22:\"tiela-logo-1080x68.png\";s:5:\"width\";i:1080;s:6:\"height\";i:68;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:{}}}'),(74,42,'_wp_attached_file','2016/12/Sand-pattern.jpg'),(75,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:1583;s:4:\"file\";s:24:\"2016/12/Sand-pattern.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Sand-pattern-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:\"Sand-pattern-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Sand-pattern-768x640.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Sand-pattern-1024x853.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Sand-pattern-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Sand-pattern-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Sand-pattern-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Sand-pattern-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"Sand-pattern-1080x900.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:900;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:{}}}'),(100,56,'_wp_attached_file','2016/12/header-img-2.jpg'),(101,56,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1083;s:4:\"file\";s:24:\"2016/12/header-img-2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"header-img-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:\"header-img-2-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:24:\"header-img-2-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"header-img-2-1024x578.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"header-img-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"header-img-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"header-img-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"header-img-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"header-img-2-1080x609.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:609;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:{}}}'),(80,45,'_edit_last','1'),(81,45,'_wp_page_template','default'),(82,45,'_et_pb_post_hide_nav','default'),(83,45,'_et_pb_page_layout','et_right_sidebar'),(84,45,'_et_pb_side_nav','off'),(85,45,'_et_pb_use_builder','on'),(86,45,'_et_pb_ab_bounce_rate_limit','5'),(87,45,'_et_pb_ab_stats_refresh_interval','hourly'),(88,45,'_et_pb_old_content',''),(89,45,'_et_pb_enable_shortcode_tracking',''),(90,45,'_et_pb_custom_css',''),(91,45,'_et_pb_light_text_color','#ffffff'),(92,45,'_et_pb_dark_text_color','#666666'),(93,45,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(94,45,'_et_pb_section_background_color','#ffffff'),(95,45,'_edit_lock','1486537856:1'),(102,59,'_wp_attached_file','2016/12/header-img-1.jpg'),(103,59,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1338;s:4:\"file\";s:24:\"2016/12/header-img-1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"header-img-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:\"header-img-1-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"header-img-1-768x535.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:535;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"header-img-1-1024x714.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:714;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"header-img-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"header-img-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"header-img-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"header-img-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"header-img-1-1080x753.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:753;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:{}}}'),(136,125,'_wp_attached_file','2016/12/TG-HP-Headshot.jpg'),(137,125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:554;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2016/12/TG-HP-Headshot.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"TG-HP-Headshot-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:\"TG-HP-Headshot-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"TG-HP-Headshot-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"TG-HP-Headshot-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"TG-HP-Headshot-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(138,127,'_wp_attached_file','2016/12/boat-pic.jpg'),(139,127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:440;s:4:\"file\";s:20:\"2016/12/boat-pic.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"boat-pic-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:\"boat-pic-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"boat-pic-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"boat-pic-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"boat-pic-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(130,108,'_wp_attached_file','2016/12/Sand-pattern-1.jpg'),(131,108,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:26:\"2016/12/Sand-pattern-1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Sand-pattern-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:26:\"Sand-pattern-1-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:27:\"Sand-pattern-1-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:27:\"Sand-pattern-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"Sand-pattern-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:27:\"Sand-pattern-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"Sand-pattern-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"Sand-pattern-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Sand-pattern-1-1080x1440.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1440;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:{}}}'),(140,129,'_wp_attached_file','2016/12/boat-pic-1.jpg'),(141,129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:460;s:4:\"file\";s:22:\"2016/12/boat-pic-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"boat-pic-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:22:\"boat-pic-1-300x251.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"boat-pic-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"boat-pic-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"boat-pic-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(142,129,'_edit_lock','1481732033:1'),(143,131,'_wp_attached_file','2016/12/boat-pic-2.jpg'),(144,131,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:450;s:4:\"file\";s:22:\"2016/12/boat-pic-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"boat-pic-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:22:\"boat-pic-2-300x245.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"boat-pic-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"boat-pic-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"boat-pic-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(145,133,'_wp_attached_file','2016/12/boat-pic-3.jpg'),(146,133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:450;s:4:\"file\";s:22:\"2016/12/boat-pic-3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"boat-pic-3-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:\"boat-pic-3-300x245.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"boat-pic-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"boat-pic-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"boat-pic-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(147,135,'_wp_attached_file','2016/12/being-alone.jpg'),(148,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:450;s:4:\"file\";s:23:\"2016/12/being-alone.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"being-alone-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:\"being-alone-300x245.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"being-alone-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"being-alone-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"being-alone-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(149,137,'_menu_item_type','post_type'),(150,137,'_menu_item_menu_item_parent','0'),(151,137,'_menu_item_object_id','45'),(152,137,'_menu_item_object','page'),(153,137,'_menu_item_target',''),(154,137,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(155,137,'_menu_item_xfn',''),(156,137,'_menu_item_url',''),(471,399,'_et_pb_section_background_color','#ffffff'),(470,399,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(469,399,'_et_pb_dark_text_color','#666666'),(468,399,'_et_pb_light_text_color','#ffffff'),(325,294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:435;s:4:\"file\";s:24:\"2017/01/life-calling.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"life-calling-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:\"life-calling-300x233.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"life-calling-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"life-calling-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"life-calling-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(324,294,'_wp_attached_file','2017/01/life-calling.jpg'),(464,399,'_et_pb_ab_stats_refresh_interval','hourly'),(463,399,'_et_pb_ab_bounce_rate_limit','5'),(462,399,'_et_pb_use_builder','on'),(461,399,'_et_pb_side_nav','off'),(460,399,'_et_pb_page_layout','et_right_sidebar'),(457,399,'_edit_last','1'),(458,399,'_wp_page_template','default'),(459,399,'_et_pb_post_hide_nav','default'),(467,399,'_et_pb_custom_css',''),(466,399,'_et_pb_enable_shortcode_tracking',''),(465,399,'_et_pb_old_content',''),(544,475,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2017/02/mother-daughter.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"mother-daughter-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:\"mother-daughter-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"mother-daughter-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"mother-daughter-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"mother-daughter-510x300.jpg\";s:5:\"width\";i:510;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:{}}}'),(543,475,'_wp_attached_file','2017/02/mother-daughter.jpg'),(499,423,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:530;s:4:\"file\";s:28:\"2017/02/dr-joseph-murphy.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"dr-joseph-murphy-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:\"dr-joseph-murphy-300x289.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"dr-joseph-murphy-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"dr-joseph-murphy-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"dr-joseph-murphy-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(498,423,'_wp_attached_file','2017/02/dr-joseph-murphy.jpg'),(579,504,'_et_pb_built_for_post_type','page'),(578,502,'_et_pb_built_for_post_type','page'),(577,500,'_et_pb_built_for_post_type','page'),(576,497,'_et_pb_built_for_post_type','page'),(575,496,'_et_pb_built_for_post_type','page'),(255,192,'_wp_attached_file','2016/12/spiritual-mother.jpg'),(256,192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:470;s:4:\"file\";s:28:\"2016/12/spiritual-mother.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"spiritual-mother-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:\"spiritual-mother-300x256.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"spiritual-mother-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"spiritual-mother-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"spiritual-mother-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(257,194,'_wp_attached_file','2016/12/spiritual-mother-1.jpg'),(258,194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2016/12/spiritual-mother-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"spiritual-mother-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:30:\"spiritual-mother-1-300x273.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:273;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"spiritual-mother-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"spiritual-mother-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"spiritual-mother-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(287,242,'_et_pb_built_for_post_type','page'),(294,254,'_et_pb_built_for_post_type','page'),(295,258,'_et_pb_built_for_post_type','page'),(296,271,'_et_pb_built_for_post_type','page'),(297,273,'_et_pb_built_for_post_type','page'),(298,277,'_et_pb_built_for_post_type','page'),(299,278,'_edit_last','1'),(300,278,'_edit_lock','1486538064:1'),(301,278,'_wp_page_template','default'),(302,278,'_et_pb_post_hide_nav','default'),(303,278,'_et_pb_page_layout','et_right_sidebar'),(304,278,'_et_pb_side_nav','off'),(305,278,'_et_pb_use_builder','on'),(306,278,'_et_pb_ab_bounce_rate_limit','5'),(307,278,'_et_pb_ab_stats_refresh_interval','hourly'),(308,278,'_et_pb_old_content',''),(309,278,'_et_pb_enable_shortcode_tracking',''),(310,278,'_et_pb_custom_css',''),(311,278,'_et_pb_light_text_color','#ffffff'),(312,278,'_et_pb_dark_text_color','#666666'),(313,278,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(314,278,'_et_pb_section_background_color','#ffffff'),(315,282,'_menu_item_type','post_type'),(316,282,'_menu_item_menu_item_parent','0'),(317,282,'_menu_item_object_id','278'),(318,282,'_menu_item_object','page'),(319,282,'_menu_item_target',''),(320,282,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(321,282,'_menu_item_xfn',''),(322,282,'_menu_item_url',''),(326,296,'_wp_attached_file','2017/01/life-calling-1.jpg'),(327,296,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:415;s:4:\"file\";s:26:\"2017/01/life-calling-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"life-calling-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:26:\"life-calling-1-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"life-calling-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"life-calling-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"life-calling-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(328,298,'_wp_attached_file','2017/01/life-calling-2.jpg'),(329,298,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:400;s:4:\"file\";s:26:\"2017/01/life-calling-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"life-calling-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:26:\"life-calling-2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"life-calling-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"life-calling-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"life-calling-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(330,300,'_wp_attached_file','2017/01/heart-knows.jpg'),(331,300,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:394;s:4:\"file\";s:23:\"2017/01/heart-knows.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"heart-knows-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:\"heart-knows-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"heart-knows-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"heart-knows-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"heart-knows-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(332,302,'_wp_attached_file','2017/01/awaken.jpg'),(333,302,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:530;s:4:\"file\";s:18:\"2017/01/awaken.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"awaken-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:\"awaken-300x289.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"awaken-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"awaken-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"awaken-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(334,304,'_et_pb_built_for_post_type','page'),(335,2,'_wp_trash_meta_status','publish'),(336,2,'_wp_trash_meta_time','1485250323'),(337,2,'_wp_desired_post_slug','sample-page'),(338,307,'_wp_attached_file','2016/12/header-img-3.jpg'),(339,307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1338;s:4:\"file\";s:24:\"2016/12/header-img-3.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"header-img-3-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:\"header-img-3-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"header-img-3-768x535.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:535;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"header-img-3-1024x714.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:714;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"header-img-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"header-img-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"header-img-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"header-img-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"header-img-3-1080x753.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:753;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:{}}}'),(340,310,'_et_pb_built_for_post_type','page'),(341,311,'_edit_last','1'),(342,311,'_edit_lock','1486538087:1'),(343,311,'_wp_page_template','default'),(344,311,'_et_pb_post_hide_nav','default'),(345,311,'_et_pb_page_layout','et_right_sidebar'),(346,311,'_et_pb_side_nav','off'),(347,311,'_et_pb_use_builder','on'),(348,311,'_et_pb_ab_bounce_rate_limit','5'),(349,311,'_et_pb_ab_stats_refresh_interval','hourly'),(350,311,'_et_pb_old_content',''),(351,311,'_et_pb_enable_shortcode_tracking',''),(352,311,'_et_pb_custom_css',''),(353,311,'_et_pb_light_text_color','#ffffff'),(354,311,'_et_pb_dark_text_color','#666666'),(355,311,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(356,311,'_et_pb_section_background_color','#ffffff'),(357,327,'_edit_last','1'),(358,327,'_edit_lock','1486538108:1'),(359,327,'_wp_page_template','default'),(360,327,'_et_pb_post_hide_nav','default'),(361,327,'_et_pb_page_layout','et_right_sidebar'),(362,327,'_et_pb_side_nav','off'),(363,327,'_et_pb_use_builder','on'),(364,327,'_et_pb_ab_bounce_rate_limit','5'),(365,327,'_et_pb_ab_stats_refresh_interval','hourly'),(366,327,'_et_pb_old_content',''),(367,327,'_et_pb_enable_shortcode_tracking',''),(368,327,'_et_pb_custom_css',''),(369,327,'_et_pb_light_text_color','#ffffff'),(370,327,'_et_pb_dark_text_color','#666666'),(371,327,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(372,327,'_et_pb_section_background_color','#ffffff'),(373,332,'_edit_last','1'),(374,332,'_edit_lock','1485838755:1'),(375,332,'_wp_page_template','default'),(376,332,'_et_pb_post_hide_nav','default'),(377,332,'_et_pb_page_layout','et_right_sidebar'),(378,332,'_et_pb_side_nav','off'),(379,332,'_et_pb_use_builder','on'),(380,332,'_et_pb_ab_bounce_rate_limit','5'),(381,332,'_et_pb_ab_stats_refresh_interval','hourly'),(382,332,'_et_pb_old_content',''),(383,332,'_et_pb_enable_shortcode_tracking',''),(384,332,'_et_pb_custom_css',''),(385,332,'_et_pb_light_text_color','#ffffff'),(386,332,'_et_pb_dark_text_color','#666666'),(387,332,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(388,332,'_et_pb_section_background_color','#ffffff'),(389,332,'_wp_trash_meta_status','publish'),(390,332,'_wp_trash_meta_time','1485838915'),(391,332,'_wp_desired_post_slug','approach-2'),(392,334,'_menu_item_type','post_type'),(393,334,'_menu_item_menu_item_parent','0'),(394,334,'_menu_item_object_id','327'),(395,334,'_menu_item_object','page'),(396,334,'_menu_item_target',''),(397,334,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(398,334,'_menu_item_xfn',''),(399,334,'_menu_item_url',''),(401,335,'_wp_trash_meta_status','publish'),(402,335,'_wp_trash_meta_time','1485839245'),(403,336,'_wp_trash_meta_status','publish'),(404,336,'_wp_trash_meta_time','1485839266'),(405,340,'_et_pb_built_for_post_type','page'),(406,341,'_edit_last','1'),(407,341,'_wp_page_template','default'),(408,341,'_et_pb_post_hide_nav','default'),(409,341,'_et_pb_page_layout','et_right_sidebar'),(410,341,'_et_pb_side_nav','off'),(411,341,'_et_pb_use_builder','on'),(412,341,'_et_pb_ab_bounce_rate_limit','5'),(413,341,'_et_pb_ab_stats_refresh_interval','hourly'),(414,341,'_et_pb_old_content',''),(415,341,'_et_pb_enable_shortcode_tracking',''),(416,341,'_et_pb_custom_css',''),(417,341,'_et_pb_light_text_color','#ffffff'),(418,341,'_et_pb_dark_text_color','#666666'),(419,341,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(420,341,'_et_pb_section_background_color','#ffffff'),(421,341,'_edit_lock','1486537946:1'),(422,361,'_et_pb_built_for_post_type','page'),(423,363,'_et_pb_built_for_post_type','page'),(424,382,'_et_pb_built_for_post_type','page'),(430,395,'_menu_item_type','post_type'),(426,387,'_wp_attached_file','2017/02/Swan-alternate.jpg'),(427,387,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4032;s:6:\"height\";i:3024;s:4:\"file\";s:26:\"2017/02/Swan-alternate.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Swan-alternate-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:\"Swan-alternate-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Swan-alternate-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Swan-alternate-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"Swan-alternate-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:27:\"Swan-alternate-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"Swan-alternate-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"Swan-alternate-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:27:\"Swan-alternate-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474381867\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0031645569620253\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(428,388,'_wp_attached_file','2017/02/Swan-another-alternate.jpg'),(429,388,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4032;s:6:\"height\";i:3024;s:4:\"file\";s:34:\"2017/02/Swan-another-alternate.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Swan-another-alternate-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:34:\"Swan-another-alternate-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Swan-another-alternate-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Swan-another-alternate-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Swan-another-alternate-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"Swan-another-alternate-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Swan-another-alternate-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"Swan-another-alternate-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"Swan-another-alternate-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474374829\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0013140604467806\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"6\";s:8:\"keywords\";a:0:{}}}'),(431,395,'_menu_item_menu_item_parent','0'),(432,395,'_menu_item_object_id','341'),(433,395,'_menu_item_object','page'),(434,395,'_menu_item_target',''),(435,395,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(436,395,'_menu_item_xfn',''),(437,395,'_menu_item_url',''),(472,399,'_edit_lock','1486537898:1'),(439,396,'_menu_item_type','post_type'),(440,396,'_menu_item_menu_item_parent','0'),(441,396,'_menu_item_object_id','311'),(442,396,'_menu_item_object','page'),(443,396,'_menu_item_target',''),(444,396,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(445,396,'_menu_item_xfn',''),(446,396,'_menu_item_url',''),(473,401,'_edit_last','1'),(448,397,'_menu_item_type','post_type'),(449,397,'_menu_item_menu_item_parent','0'),(450,397,'_menu_item_object_id','278'),(451,397,'_menu_item_object','page'),(452,397,'_menu_item_target',''),(453,397,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(454,397,'_menu_item_xfn',''),(455,397,'_menu_item_url',''),(456,397,'_menu_item_orphaned','1486438171'),(474,401,'_edit_lock','1486538147:1'),(475,401,'_wp_page_template','default'),(476,401,'_et_pb_post_hide_nav','default'),(477,401,'_et_pb_page_layout','et_right_sidebar'),(478,401,'_et_pb_side_nav','off'),(479,401,'_et_pb_use_builder','on'),(480,401,'_et_pb_ab_bounce_rate_limit','5'),(481,401,'_et_pb_ab_stats_refresh_interval','hourly'),(482,401,'_et_pb_old_content',''),(483,401,'_et_pb_enable_shortcode_tracking',''),(484,401,'_et_pb_custom_css',''),(485,401,'_et_pb_light_text_color','#ffffff'),(486,401,'_et_pb_dark_text_color','#666666'),(487,401,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(488,401,'_et_pb_section_background_color','#ffffff'),(489,404,'_menu_item_type','post_type'),(490,404,'_menu_item_menu_item_parent','0'),(491,404,'_menu_item_object_id','401'),(492,404,'_menu_item_object','page'),(493,404,'_menu_item_target',''),(494,404,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(495,404,'_menu_item_xfn',''),(496,404,'_menu_item_url',''),(500,423,'_edit_lock','1486447362:1'),(501,425,'_wp_attached_file','2017/02/dr-joseph-murphy-1.jpg'),(502,425,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:530;s:4:\"file\";s:30:\"2017/02/dr-joseph-murphy-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"dr-joseph-murphy-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:30:\"dr-joseph-murphy-1-300x289.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"dr-joseph-murphy-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"dr-joseph-murphy-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"dr-joseph-murphy-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(503,425,'_edit_lock','1486449106:1'),(504,427,'_wp_attached_file','2017/02/dr-joseph-murphy-2.jpg'),(505,427,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:530;s:4:\"file\";s:30:\"2017/02/dr-joseph-murphy-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"dr-joseph-murphy-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:30:\"dr-joseph-murphy-2-300x289.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"dr-joseph-murphy-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"dr-joseph-murphy-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"dr-joseph-murphy-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(506,429,'_wp_attached_file','2017/02/fountain.jpg'),(507,429,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:480;s:4:\"file\";s:20:\"2017/02/fountain.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"fountain-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:\"fountain-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"fountain-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"fountain-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"fountain-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(508,429,'_edit_lock','1486449112:1'),(509,435,'_wp_attached_file','2017/02/open-door.jpg'),(510,435,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:530;s:4:\"file\";s:21:\"2017/02/open-door.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"open-door-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:\"open-door-300x289.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"open-door-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"open-door-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"open-door-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(511,435,'_edit_lock','1486456281:1'),(512,438,'_wp_attached_file','2017/02/autumn-trees.jpg'),(513,438,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:494;s:4:\"file\";s:24:\"2017/02/autumn-trees.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"autumn-trees-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:\"autumn-trees-300x269.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:269;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"autumn-trees-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"autumn-trees-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"autumn-trees-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(514,440,'_wp_attached_file','2017/02/autumn-trees-1.jpg'),(515,440,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:504;s:4:\"file\";s:26:\"2017/02/autumn-trees-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"autumn-trees-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:26:\"autumn-trees-1-300x275.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"autumn-trees-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"autumn-trees-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"autumn-trees-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(516,442,'_wp_attached_file','2017/02/relaxed-sessions.jpg'),(517,442,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2017/02/relaxed-sessions.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"relaxed-sessions-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:\"relaxed-sessions-300x268.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"relaxed-sessions-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"relaxed-sessions-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"relaxed-sessions-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(518,444,'_edit_last','1'),(519,444,'_edit_lock','1486538023:1'),(520,444,'_wp_page_template','default'),(521,444,'_et_pb_post_hide_nav','default'),(522,444,'_et_pb_page_layout','et_right_sidebar'),(523,444,'_et_pb_side_nav','off'),(524,444,'_et_pb_use_builder','on'),(525,444,'_et_pb_ab_bounce_rate_limit','5'),(526,444,'_et_pb_ab_stats_refresh_interval','hourly'),(527,444,'_et_pb_old_content',''),(528,444,'_et_pb_enable_shortcode_tracking',''),(529,444,'_et_pb_custom_css',''),(530,444,'_et_pb_light_text_color','#ffffff'),(531,444,'_et_pb_dark_text_color','#666666'),(532,444,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(533,444,'_et_pb_section_background_color','#ffffff'),(534,459,'_menu_item_type','post_type'),(535,459,'_menu_item_menu_item_parent','0'),(536,459,'_menu_item_object_id','444'),(537,459,'_menu_item_object','page'),(538,459,'_menu_item_target',''),(539,459,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(540,459,'_menu_item_xfn',''),(541,459,'_menu_item_url',''),(545,475,'_edit_lock','1486461176:1'),(546,478,'_wp_attached_file','2017/02/counselling.jpg'),(547,478,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:670;s:4:\"file\";s:23:\"2017/02/counselling.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"counselling-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:\"counselling-251x300.jpg\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"counselling-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"counselling-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"counselling-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(548,479,'_wp_attached_file','2017/02/counselling-1.jpg'),(549,479,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:690;s:4:\"file\";s:25:\"2017/02/counselling-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"counselling-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:25:\"counselling-1-243x300.jpg\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"counselling-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"counselling-1-560x675.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"counselling-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"counselling-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;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:{}}}'),(550,483,'_edit_last','1'),(551,483,'_edit_lock','1486538129:1'),(552,483,'_wp_page_template','default'),(553,483,'_et_pb_post_hide_nav','default'),(554,483,'_et_pb_page_layout','et_right_sidebar'),(555,483,'_et_pb_side_nav','off'),(556,483,'_et_pb_use_builder','on'),(557,483,'_et_pb_ab_bounce_rate_limit','5'),(558,483,'_et_pb_ab_stats_refresh_interval','hourly'),(559,483,'_et_pb_old_content',''),(560,483,'_et_pb_enable_shortcode_tracking',''),(561,483,'_et_pb_custom_css',''),(562,483,'_et_pb_light_text_color','#ffffff'),(563,483,'_et_pb_dark_text_color','#666666'),(564,483,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(565,483,'_et_pb_section_background_color','#ffffff'),(566,491,'_menu_item_type','post_type'),(567,491,'_menu_item_menu_item_parent','0'),(568,491,'_menu_item_object_id','483'),(569,491,'_menu_item_object','page'),(570,491,'_menu_item_target',''),(571,491,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(572,491,'_menu_item_xfn',''),(573,491,'_menu_item_url',''),(580,505,'_et_pb_built_for_post_type','page'),(581,506,'_et_pb_built_for_post_type','page'),(582,507,'_et_pb_built_for_post_type','page'),(583,508,'_et_pb_built_for_post_type','page'),(584,509,'_wp_trash_meta_status','publish'),(585,509,'_wp_trash_meta_time','1486538664');
/*!40000 ALTER TABLE `wp_upmt_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_upmt_posts`
--

DROP TABLE IF EXISTS `wp_upmt_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_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=510 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_posts`
--

LOCK TABLES `wp_upmt_posts` WRITE;
/*!40000 ALTER TABLE `wp_upmt_posts` DISABLE KEYS */;
INSERT INTO `wp_upmt_posts` VALUES (1,1,'2016-12-14 09:04:20','2016-12-14 09:04:20','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2016-12-14 09:04:20','2016-12-14 09:04:20','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?p=1',0,'post','',1),(2,1,'2016-12-14 09:04:20','2016-12-14 09:04:20','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','trash','closed','open','','sample-page__trashed','','','2017-01-24 09:32:03','2017-01-24 09:32:03','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?page_id=2',0,'page','',0),(4,1,'2016-12-14 11:29:37','2016-12-14 11:29:37','[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Welcome To My Website\" button_text=\"Enter\" button_link=\"#\" background_color=\"#27c9b9\" alignment=\"center\" background_layout=\"dark\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"We Are a Company of Passionate Designers and Developers\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"h\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"v\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"g\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Drop Me a Line\" button_url=\"#\" button_text=\"Contact\" background_color=\"#2ea3f2\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Basic','','publish','closed','closed','','homepage-basic','','','2016-12-14 11:29:37','2016-12-14 11:29:37','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/homepage-basic/',0,'et_pb_layout','',0),(5,1,'2016-12-14 11:29:37','2016-12-14 11:29:37','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Welcome to Our Shop\" button_text=\"Shop Now\" background_color=\"#0194f3\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"dark\" button_link=\"#\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Featured Products</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"featured\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Recent Products</h1>[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"date\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Holiday Special Sale\" button_text=\"Shop Now\" background_color=\"#108bf5\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Become a Vendor\" button_text=\"Learn More\" background_color=\"#27c9b9\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h1>What Our Customers are Saying</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#27c9b9\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Browse Our Full Shop\" button_url=\"#\" button_text=\"Enter\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Shop','','publish','closed','closed','','homepage-shop','','','2016-12-14 11:29:37','2016-12-14 11:29:37','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/homepage-shop/',0,'et_pb_layout','',0),(6,1,'2016-12-14 11:29:37','2016-12-14 11:29:37','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2e2e2e\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"on\"][et_pb_slide background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" heading=\"Hello! Welcome To My Online Portfolio\" /][et_pb_slide background_color=\"#f84b48\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#23a1f5\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#27c8b8\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\" /][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Coding Languages\" number=\"7\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Loyal Clients\" number=\"65\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"International Awards\" number=\"12\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Years of Experience\" number=\"10\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#27c8b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View My Full Portfolio\" button_url=\"#\" button_text=\"Enter\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Portfolio','','publish','closed','closed','','homepage-portfolio','','','2016-12-14 11:29:37','2016-12-14 11:29:37','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/homepage-portfolio/',0,'et_pb_layout','',0),(7,1,'2016-12-14 11:29:37','2016-12-14 11:29:37','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Company\" button_text=\"Features\" button_link=\"https://elegantthemes.com/preview/Divi2/features/\" background_color=\"#8d1bf4\" alignment=\"center\" background_layout=\"dark\" image=\"https://elegantthemesimages.com/images/premade/d2-300px.png\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"]Quisque eleifend orci sit amet est semper, iaculis tempor mi volutpat. Phasellus consectetur justo sed tristique molestie. Cras lectus quam, vehicula eu dictum a, sollicitudin id velit.[/et_pb_slide][et_pb_slide heading=\"Slide Title\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f84c48\" alignment=\"center\" background_layout=\"dark\"]Quisque eleifend orci sit amet est semper, iaculis tempor mi volutpat. Phasellus consectetur justo sed tristique molestie. Cras lectus quam, vehicula eu dictum a, sollicitudin id velit.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#4b4b4b\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" title=\"Recent Work\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#eeeeee\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_map admin_label=\"Fullwidth Map\" zoom_level=\"8\" address_lat=\"37.43410184255073\" address_lng=\"-122.04768412931253\"][et_pb_map_pin title=\"Elegant Themes\" pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\" /][et_pb_map_pin title=\"Lorem Ipsum\" pin_address=\"San Jose, CA, USA\" pin_address_lat=\"37.3393857\" pin_address_lng=\"-121.89495549999998\" /][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" title=\"Contact Us\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Company','','publish','closed','closed','','homepage-company','','','2016-12-14 11:29:37','2016-12-14 11:29:37','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/homepage-company/',0,'et_pb_layout','',0),(8,1,'2016-12-14 11:29:37','2016-12-14 11:29:37','[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f7f7f7\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"light\"]Changing the way you build websites. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Sales & Marketing\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Brand & Identity\" number=\"90\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Web Design\" number=\"80\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"App Development\" number=\"50\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>What We Offer</h2>[/et_pb_text][et_pb_tabs admin_label=\"Tabs\"][et_pb_tab title=\"Overview\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Mission Statement\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Culture\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"50\" /][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#f4f4f4\"][et_pb_counter percent=\"80\"]Brand Consulting[/et_pb_counter][et_pb_counter percent=\"45\"]Marketing Campaigns [/et_pb_counter][et_pb_counter percent=\"95\"]Custom Website Design[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Work Flow</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#212a34\" inner_shadow=\"off\" parallax=\"off\" background_image=\"https://www.elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"20\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-300px.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>Frequently Asked Questions</h2>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna. Morbi scelerisque semper congue. Donec vitae congue quam. Pellentesque convallis est a eros porta, ut porttitor magna convallis.\n\nDonec quis felis imperdiet, vestibulum est ut, pulvinar dolor. Mauris laoreet varius sem, tempus congue nibh elementum facilisis. Aliquam ut odio risus. Mauris consectetur mi et ante aliquam, eget posuere urna semper. Vestibulum vestibulum rhoncus enim, id iaculis eros commodo non.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_accordion admin_label=\"Accordion\"][et_pb_accordion_item title=\"What kind of clients do you work with?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_accordion_item][et_pb_accordion_item title=\"What is your turn around time?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][et_pb_accordion_item title=\"Do you have an affiliate program?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Email\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Don\'t Be Shy\"]Drop us a line anytime, and one of our customer service reps will respond to you as soon as possible[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Corporate','','publish','closed','closed','','homepage-corporate','','','2016-12-14 11:29:37','2016-12-14 11:29:37','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/homepage-corporate/',0,'et_pb_layout','',0),(9,1,'2016-12-14 11:29:37','2016-12-14 11:29:37','[et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Welcome To Our Website\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_width=\"1920\" video_bg_height=\"638\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue.[/et_pb_slide][et_pb_slide heading=\"Sky\'s The Limit\" background_color=\"#444444\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"dark\" button_text=\"A Closer Look\" button_link=\"#\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#27c9b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Get Started\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Building a website has never been so fun.</h1><p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#27323a\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Lorem Ipsum Dolor.</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit. Nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#22262e\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"2700\" percent_sign=\"off\" counter_color=\"#815ab4\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"30\" percent_sign=\"off\" counter_color=\"#2caaca\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"87\" percent_sign=\"off\" counter_color=\"#35bbaa\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"999\" percent_sign=\"off\" counter_color=\"#ef6462\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"on\" /][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Shop Now\" button_link=\"https://elegantthemes.com/preview/Divi2/shop-extended/\" background_color=\"#1a86cf\" alignment=\"center\" background_layout=\"dark\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][et_pb_slide heading=\"Slide Title Here\" alignment=\"center\" background_layout=\"dark\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam er\nos at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]</p><h1>Core Features</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"https://elegantthemes.com/preview/Divi2/features/#predefined\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"https://elegantthemes.com/preview/Divi2/features/#layouts\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-modules.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" icon_placement=\"top\" use_icon=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#2caaca\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"https://elegantthemes.com/preview/Divi2/features/#mobile\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Our Work\" button_link=\"#\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Versatile Layout Options</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#ec6d5f\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#1fa0e3\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"right\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#47bfa4\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ec6d5f\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"Join Now\"]</p><h1>Look No Further. Get Started Today</h1><p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Extended','','publish','closed','closed','','homepage-extended','','','2016-12-14 11:29:37','2016-12-14 11:29:37','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/homepage-extended/',0,'et_pb_layout','',0),(10,1,'2016-12-14 11:29:37','2016-12-14 11:29:37','[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page Title\" subhead=\"Here is a basic page layout with no sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Page Fullwidth','','publish','closed','closed','','page-fullwidth','','','2016-12-14 11:29:37','2016-12-14 11:29:37','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/page-fullwidth/',0,'et_pb_layout','',0),(11,1,'2016-12-14 11:29:37','2016-12-14 11:29:37','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page Title\" subhead=\"Here is a basic page layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]','Page Right Sidebar','','publish','closed','closed','','page-right-sidebar','','','2016-12-14 11:29:37','2016-12-14 11:29:37','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/page-right-sidebar/',0,'et_pb_layout','',0),(12,1,'2016-12-14 11:29:37','2016-12-14 11:29:37','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page With Left Sidebar\" subhead=\"Here is a basic page layout with a left sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"left\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Page Left Sidebar','','publish','closed','closed','','page-left-sidebar','','','2016-12-14 11:29:37','2016-12-14 11:29:37','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/page-left-sidebar/',0,'et_pb_layout','',0),(13,1,'2016-12-14 11:29:37','2016-12-14 11:29:37','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page With Dual Sidebars\" subhead=\"Here is a basic page layout with dual sidebars\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"left\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]','Page Dual Sidebars','','publish','closed','closed','','page-dual-sidebars','','','2016-12-14 11:29:37','2016-12-14 11:29:37','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/page-dual-sidebars/',0,'et_pb_layout','',0),(14,1,'2016-12-14 11:29:37','2016-12-14 11:29:37','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Work\" subhead=\"Your Subtitle Goes Here\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_filterable_portfolio admin_label=\"Filterable Portfolio\" fullwidth=\"off\" posts_number=\"12\" show_title=\"on\" show_categories=\"on\" show_pagination=\"off\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Like What You See?\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Grid','','publish','closed','closed','','portfolio-grid','','','2016-12-14 11:29:37','2016-12-14 11:29:37','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/portfolio-grid/',0,'et_pb_layout','',0),(15,1,'2016-12-14 11:29:37','2016-12-14 11:29:37','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Work\" subhead=\"Your Subtitle Goes Here\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"on\" posts_number=\"4\" show_title=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"I Love Working With Creative Minds\" button_url=\"#\" button_text=\"Contact Me\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]If you are interested in working together, send me an inquiry and I will get back to you as soon as I can![/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio 1 Column','','publish','closed','closed','','portfolio-1-column','','','2016-12-14 11:29:37','2016-12-14 11:29:37','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/portfolio-1-column/',0,'et_pb_layout','',0),(16,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\"][et_pb_slide background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"light\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Let\'s Build Something Together\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Fullwidth Carousel','','publish','closed','closed','','portfolio-fullwidth-carousel','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/portfolio-fullwidth-carousel/',0,'et_pb_layout','',0),(17,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"off\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested In Working On A Project?\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Fullwidth Grid','','publish','closed','closed','','portfolio-fullwidth-grid','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/portfolio-fullwidth-grid/',0,'et_pb_layout','',0),(18,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section background_color=\"#3a3a3a\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#45c4ec\" use_circle=\"off\" circle_color=\"#45c4ec\" use_circle_border=\"off\" circle_border_color=\"#45c4ec\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px; font-weight: 300;\">Your Project Name</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Challenge</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Solution</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"We Rethought Everything\" background_color=\"#2ea3f2\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Corporate Rebranding\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" counter_color=\"#2ea3f2\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Website Redesign\" number=\"30\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Day Turnaround\" number=\"60\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Amazing Result\" number=\"1\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"90\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<h1>Mobile Site Boosted Sales By 50%</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Mobile Refresh\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Rebuilt From the Inside Out\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Extensive Demographic Studies\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/mobile-lockup.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#2e2e2e\"][et_pb_counter percent=\"80\"]Mobile Sales[/et_pb_counter][et_pb_counter percent=\"50\"]Website Traffic[/et_pb_counter][et_pb_counter percent=\"75\"]Conversion Rate[/et_pb_counter][et_pb_counter percent=\"60\"]Email Subscribers[/et_pb_counter][/et_pb_counters][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Results Were Amazing\" button_url=\"#\" button_text=\"Live Project\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"We Rethought Everything\" background_color=\"#2ea3f2\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested In Working With Us?\" button_url=\"#\" button_text=\"Get In Touch\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Project Extended','','publish','closed','closed','','project-extended','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/project-extended/',0,'et_pb_layout','',0),(19,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Your Project Name</h1>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h4>Project Description</h4>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h4>Project Details</h4>\n<strong>Client </strong>Client Name\n<strong>Date </strong>Date of Completion\n<strong>Skills </strong>Branding, Web Design\n<strong>View </strong>elegantthemes.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Project Feature\" button_url=\"#\" button_text=\"Live Project\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl quis nibh non, molestie tempus sapien.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"100\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Project Feature\" button_url=\"#\" button_text=\"See More\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"right\"]Vivamus ipsum velit, ullamcorper quis nibh, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-700px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Like What You See?\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Project Extended 2','','publish','closed','closed','','project-extended-2','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/project-extended-2/',0,'et_pb_layout','',0),(20,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a masonry blog layout with no sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"18\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Blog Masonry','','publish','closed','closed','','blog-masonry','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/blog-masonry/',0,'et_pb_layout','',0),(21,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a basic blog layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]','Blog Standard','','publish','closed','closed','','blog-standard','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/blog-standard/',0,'et_pb_layout','',0),(22,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#f84b48\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to Our Shop\" subhead=\"Divi gives you the power to run a full-fledged online storefront.\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"12\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"News & Events\" button_url=\"#\" button_text=\"Follow\" use_background_color=\"on\" background_color=\"#57ccc4\" background_layout=\"dark\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Shop Basic','','publish','closed','closed','','shop-basic','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/shop-basic/',0,'et_pb_layout','',0),(23,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#b2ede0\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Shop\" button_text=\"Shop Now\" button_link=\"#\" background_color=\"#81dfde\" alignment=\"center\" background_layout=\"dark\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\"]Divi gives you the power to easily run a full-fledged online storefront. With the Divi Builder, you can create gorgeous shop pages, such as this one.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"menu_order\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Summer Sale!\" button_url=\"#\" button_text=\"Shop Now\" background_color=\"#ed5362\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]For a limited time only, all of our vintage products are 50% off! Don\'t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Buy 2 Get 1 Free\" button_url=\"#\" button_text=\"Coupon Code\" background_color=\"#57ccc4\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]For a limited time only, if you buy two of any item, you get the 3rd for free! Click below to redeem the coupon code to use at checkout.[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Most Popular Items</h1>[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"best_selling\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#57ccc4\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View All of Our On-Sale Items\" button_url=\"#\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_text=\"Shop Now\"]For a limited time only, all of our vintage products are 50% off! Don’t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Shop Extended','','publish','closed','closed','','shop-extended','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/shop-extended/',0,'et_pb_layout','',0),(24,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"150\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/d2-300px.png\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]<h1></h1>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_text=\"Enter\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"400\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Splash Page','','publish','closed','closed','','splash-page','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/splash-page/',0,'et_pb_layout','',0),(25,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>We will Be back Soon</h1>\nThis is an example of a blank page with no header or footer.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Undergoing Maintenance\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Feature Updates\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Bug Fixes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Maintenance Mode','','publish','closed','closed','','maintenance-mode','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/maintenance-mode/',0,'et_pb_layout','',0),(26,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section inner_shadow=\"off\" parallax=\"off\" background_color=\"#8d1bf4\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\" /][et_pb_countdown_timer admin_label=\"Countdown Timer\" date_time=\"05/31/2014 05:15\" background_layout=\"dark\" background_color=\"#e03e3e\" use_background_color=\"off\" title=\"This Site Is Coming Soon\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" title=\"Sign Up to Receive Updates\" button_text=\"Submit\" background_color=\"#6e15c2\" use_background_color=\"on\" mailchimp_list=\"none\" background_layout=\"dark\" text_orientation=\"left\" provider=\"mailchimp\" aweber_list=\"none\"]Integer accumsan leo non nisi sollicitudin, sit amet eleifend dolor mollis. Donec sagittis posuere commodo. Aenean sed convallis lectus. Vivamus et nisi posuere erat aliquet adipiscing in non libero. Integer ornare dui at molestie dictum. Vivamus id aliquam urna. Duis quis fermentum lacus. Sed viverra dui leo, non auctor nisi porttitor a. Nunc a tristique lectus.[/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"600\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Coming Soon','','publish','closed','closed','','coming-soon','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/coming-soon/',0,'et_pb_layout','',0),(27,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section background_color=\"#27323a\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px;\">My Website</h1>\n<h2><em>My Tagline</em></h2>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Lorem ipsum dolor sit amet consectetur.\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#313f55\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#27323a\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"right\" /][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Get Started\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Landing Page','','publish','closed','closed','','landing-page','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/landing-page/',0,'et_pb_layout','',0),(28,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"My Name\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Subheading[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>This is My Story</h1>\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"][et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#108bf5\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Recent Work\" background_layout=\"dark\" text_orientation=\"center\" /][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"light\" auto=\"on\" /][/et_pb_section]','About Me','','publish','closed','closed','','about-me','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/about-me/',0,'et_pb_layout','',0),(29,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Our Company Tagline lorem ipsum dolor sit amet.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"A Digital Agency\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Forward Thinking\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Problem Solvers\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Customer Support\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Story</h1>\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"][et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','About Us','','publish','closed','closed','','about-us','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/about-us/',0,'et_pb_layout','',0),(30,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_map admin_label=\"Fullwidth Map\" zoom_level=\"9\" address_lat=\"37.77492949999972\" address_lng=\"-122.41941550000001\"][et_pb_map_pin title=\"Headquarters\" pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\" /][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fullwidth=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" title=\"Get In Touch\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h3>More Info</h3>\n<p>sit amet, consectetur adipiscing elit. Integer placerat metus id orci facilisis, in luctus eros laoreet. Mauris interdum augue varius, faucibus massa id, imperdiet tortor. Donec vel tortor molestie, hendrerit sem a, hendrerit arcu. Aliquam erat volutpat. Proin varius eros eros, non condimentum nis.</p>\n\n<strong>Address:</strong> 890 Lorem Ipsum Street #12\nSan Francisco, California 65432\n\n<strong>Phone:</strong> 123.4567.890\n\n<strong>Business Hours:</strong> 8a-6:30p M-F, 9a-2p S-S[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','publish','closed','closed','','contact-us','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/contact-us/',0,'et_pb_layout','',0),(31,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section background_color=\"#6aceb6\" inner_shadow=\"on\" fullwidth=\"on\"]\n[et_pb_fullwidth_header title=\"About Our Team\" subhead=\"Your subtitle goes right here.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"https://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"left\"][/et_pb_image]\n[et_pb_text]\n<h2>Nick Roach</h2>\n<em>President, CEO, Theme UI/UX Designer</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"50\"]Design & UX[/et_pb_counter]\n[et_pb_counter percent=\"80\"]Web Programming[/et_pb_counter]\n[et_pb_counter percent=\"10\"]Internet Marketing[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"https://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"top\"][/et_pb_image]\n[et_pb_text]\n<h2>Kenny Sing</h2>\n<em>Lead Graphic Designers</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"85\"]Photoshop[/et_pb_counter]\n[et_pb_counter percent=\"70\"]After Effects[/et_pb_counter]\n[et_pb_counter percent=\"50\"]Illustrator[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"https://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"right\"][/et_pb_image]\n[et_pb_text]\n<h2>Mitch Skolnik</h2>\n<em>Community Manager</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"80\"]Customer Happiness[/et_pb_counter]\n[et_pb_counter percent=\"30\"]Tech Support[/et_pb_counter]\n[et_pb_counter percent=\"50\"]Community Management[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#2d3743\" inner_shadow=\"on\"]\n[et_pb_row]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"https://www.elegantthemesimages.com/images/premade_blurb_5.png\"  title=\"Timely Support\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"https://www.elegantthemesimages.com/images/premade_blurb_6.png\"  title=\"Innovative Ideas\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"https://www.elegantthemesimages.com/images/premade_blurb_7.png\"  title=\"Advanced Technology\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"https://www.elegantthemesimages.com/images/premade_blurb_8.png\"  title=\"Clear Communication\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_text text_orientation=\"center\"]<h2>Recent Blog Posts</h2>\nLearn from the top thought leaders in the industry.\n[/et_pb_text]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_blog fullwidth=\"off\" show_pagination=\"off\" posts_number=\"3\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\"][/et_pb_blog]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_text text_orientation=\"center\"]<h2>Recent Projects</h2>\nLearn from the top thought leaders in the industry.\n[/et_pb_text]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_portfolio categories=\"Portfolio\" fullwidth=\"off\"][/et_pb_portfolio]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#7EBEC5\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_cta title=\"Don\'t Be Shy. Get In Touch.\" button_url=\"#\" button_text=\"Contact Us\" background_layout=\"dark\" background_color=\"none\"]\nIf you are interested in working together, send us an inquiry and we will get back to you as soon as we can!\n[/et_pb_cta]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','Our Team','','publish','closed','closed','','our-team','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/our-team/',0,'et_pb_layout','',0),(32,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"WE ARE A CREATIVE AGENCY\" button_text=\"Our Work\" button_link=\"https://elegantthemes.com/preview/Divi2/fullwidth-grid/\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>OUR LATEST WORK</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"off\" posts_number=\"8\" show_title=\"on\" show_categories=\"off\" show_pagination=\"off\" background_layout=\"light\" /][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Portfolio\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1>MEET THE CREW</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Profiles\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>OUR CLIENTS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full List\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" provider=\"mailchimp\" mailc\nhimp_list=\"none\" aweber_list=\"3423452\" button_text=\"Sign Me Up\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Connect With Us\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio. Nulla facilisi. Aenean in mi odio. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]','Creative Agency','','publish','closed','closed','','creative-agency','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/creative-agency/',0,'et_pb_layout','',0),(33,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"A Brand New Product\" background_color=\"#efefef\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"light\" button_text=\"Buy Now\"]The Divi Builder allows you to create beautiful and unique layouts visually, without touching a single line of code.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Gorgeous Design\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Drag & Drop Builder\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"1\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Fully Responsive\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f3f3f3\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Plans and Pricing</h1>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_pricing_tables admin_label=\"Pricing Table\"][et_pb_pricing_table featured=\"off\" title=\"Basic\" currency=\"$\" per=\"yr\" sum=\"39\" button_url=\"https://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n-Premium Technical Support\n-Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n-Layered Photoshop Files\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Personal\" currency=\"$\" per=\"yr\" sum=\"69\" button_url=\"https://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n+Premium Technical Support\n-Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n-Layered Photoshop Files\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"on\" title=\"Developer\" subtitle=\"Best Value\" currency=\"$\" per=\"yr\" sum=\"89\" button_url=\"https://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n+Premium Technical Support\n+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n+Layered Photoshop Files\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Lifetime\" currency=\"$\" sum=\"249\" button_url=\"https://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n+Premium Technical Support\n+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n+Layered Photoshop Files\n+No Yearly Fees[/et_pb_pricing_table][/et_pb_pricing_tables][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Customers Are Saying</h1>\nDon\'t just take it from us, let our customers do the talking![/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\n\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\n\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\n\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#eeeeee\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Frequently Asked Questions</h1>[/et_pb_text][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use the themes on multiple sites?\" open=\"off\"]Yes, you are free to use our themes on as many websites as you like. We do not place any restrictions on how many times you can download or use a theme, nor do we limit the number of domains that you can install our themes to.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What is your refund policy?\" open=\"on\"]We offer no-questions-asked refunds to all customers within 30 days of your purchase. If you are not satisfied with our product, then simply send us an email and we will refund your purchase right away. Our goal has always been to create a happy, thriving community. If you are not thrilled with the product or are not enjoying the experience, then we have no interest in forcing you to stay an unhappy member.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What are Photoshop Files?\" open=\"off\"]Elegant Themes offers two different packages: Personal and Developer. The Personal Subscription is ideal for the average user while the Developers License is meant for experienced designers who wish to customize their themes using the original Photoshop files. Photoshop files are the original design files that were used to create the theme. They can be opened using Adobe Photoshop and edited, and prove very useful for customers wishing to change their theme\'s design in some way.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I upgrade after signing up?\" open=\"off\"]Yes, you can upgrade at any time after signing up. When you log in as a \"personal\" subscriber, you will see a notice regarding your current package and instructions on how to upgrade.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use your themes with WP.com?\" open=\"off\"]Unfortunately WordPress.com does not allow the use of custom themes. If you would like to use a custom theme of any kind, you will need to purchase your own hosting account and install the free software from WordPress.org. If you are looking for great WordPress hosting, we recommend giving HostGator a try.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Don\'t Be Shy\" button_url=\"#\" button_text=\"Get In Touch\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"]If we didn\'t answer all of your questions, feel free to drop us a line anytime.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Sales Page','','publish','closed','closed','','sales-page','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/sales-page/',0,'et_pb_layout','',0),(34,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/d2-300px.png\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#45c4ec\" use_circle=\"off\" circle_color=\"#45c4ec\" use_circle_border=\"off\" circle_border_color=\"#45c4ec\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px; font-weight: 300;\">Divi Case Study</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Challenge</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Solution</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"We Rethought Everything\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Corporate Rebranding\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" counter_color=\"#2ea3f2\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Website Redesign\" number=\"30\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Day Turnaround\" number=\"60\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Amazing Result\" number=\"1\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"90\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<h1>Mobile Site Boosted Sales By 50%</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Mobile Refresh\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Rebuilt From the Inside Out\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Extensive Demographic Studies\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/mobile-lockup.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#2e2e2e\"][et_pb_counter percent=\"80\"]Mobile Sales[/et_pb_counter][et_pb_counter percent=\"50\"]Website Traffic[/et_pb_counter][et_pb_counter percent=\"75\"]Conversion Rate[/et_pb_counter][et_pb_counter percent=\"60\"]Email Subscribers[/et_pb_counter][/et_pb_counters][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Results Were Amazing\" button_url=\"#\" button_text=\"Live Project\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2e2e2e\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"off\" background_layout=\"dark\" auto=\"off\" title=\"Related Case Studies\" /][/et_pb_section]','Case Study','','publish','closed','closed','','case-study','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/case-study/',0,'et_pb_layout','',0),(35,1,'2016-12-14 11:29:38','2016-12-14 11:29:38','[et_pb_section background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 52px;\">Product Features</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Advanced Page Builder\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ea3f2\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Key Elements\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ad4e0\"]The builder comes packed with tons of great modules, and more are on the way! Combine and arrange them in any order. The possibilities are countless.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Target Audience\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#9633e8\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"]Divi’s layout has been designed with mobile devices in mind. No matter how you use it, and no matter how you view it, your website is going to look great.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Strategy\" url_new_window=\"off\" image=\"https://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#d85fd6\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come. Build on top of a powerful foundation.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Advanced Drag & Drop Builder</h1>\nThe Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\n<h1>Fully Responsive Layouts</h1>\nWe know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"]Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"]Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]Join today and get access to Divi, as well as our other countless themes and plugins.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Product Features','','publish','closed','closed','','product-features','','','2016-12-14 11:29:38','2016-12-14 11:29:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/product-features/',0,'et_pb_layout','',0),(36,1,'2016-12-14 12:54:30','2016-12-14 12:54:30','','tiela-logo','','inherit','open','closed','','tiela-logo','','','2016-12-14 12:54:30','2016-12-14 12:54:30','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/tiela-logo.png',0,'attachment','image/png',0),(37,1,'2016-12-14 12:54:39','2016-12-14 12:54:39','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {border-radius: 0 0 50px 120px; line-height: 5px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 80px;}\n#et-info {text-align: center; float:none;}\n#main-footer {border-radius: 50px 80px 0 0; background-color:rgba(0, 2, 51, 0.82);}\n#footer-bottom {background-color: rgba(0, 0, 0, 0.0);}\n.footer-white{padding-bottom:0px;}\n#top-menu li {padding-right: 16px !important;}\n.et_pb_testimonial_author {display: none;}','Divi','','publish','closed','closed','','divi','','','2017-02-07 08:33:59','2017-02-07 08:33:59','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/divi/',0,'custom_css','',0),(38,1,'2016-12-14 12:54:39','2016-12-14 12:54:39','','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-14 12:54:39','2016-12-14 12:54:39','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/37-revision-v1/',0,'revision','',0),(42,1,'2016-12-14 12:58:49','2016-12-14 12:58:49','','Sand-pattern','','inherit','open','closed','','sand-pattern','','','2016-12-14 12:58:49','2016-12-14 12:58:49','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/Sand-pattern.jpg',0,'attachment','image/jpeg',0),(56,1,'2016-12-14 13:13:27','2016-12-14 13:13:27','','header-img-2','','inherit','open','closed','','header-img-2','','','2016-12-14 13:13:27','2016-12-14 13:13:27','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-2.jpg',0,'attachment','image/jpeg',0),(45,1,'2016-12-14 13:01:00','2016-12-14 13:01:00','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The way you feel</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>By being yourself</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>A Spiritual Mother</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n<h1>Relationship Counseling</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n<h1>Individual Counseling</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','publish','closed','closed','','home','','','2017-02-08 07:12:51','2017-02-08 07:12:51','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?page_id=45',0,'page','',0),(495,1,'2017-02-08 07:12:51','2017-02-08 07:12:51','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The way you feel</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>By being yourself</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>A Spiritual Mother</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n<h1>Relationship Counseling</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n<h1>Individual Counseling</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2017-02-08 07:12:51','2017-02-08 07:12:51','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/08/45-revision-v1/',0,'revision','',0),(46,1,'2016-12-14 13:01:00','2016-12-14 13:01:00','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:01:00','2016-12-14 13:01:00','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(48,1,'2016-12-14 13:02:10','2016-12-14 13:02:10','[et_pb_section admin_label=\"section\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:02:10','2016-12-14 13:02:10','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(49,1,'2016-12-14 13:03:00','2016-12-14 13:03:00','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:03:00','2016-12-14 13:03:00','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(51,1,'2016-12-14 13:05:48','2016-12-14 13:05:48','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-2.jpg\" custom_padding=\"10em||10em|\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:05:48','2016-12-14 13:05:48','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(52,1,'2016-12-14 13:07:02','2016-12-14 13:07:02','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_padding=\"13em||13em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-2.jpg\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\"][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:07:02','2016-12-14 13:07:02','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(53,1,'2016-12-14 13:07:56','2016-12-14 13:07:56','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-2.jpg\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" custom_padding=\"13em||13em|\"][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:07:56','2016-12-14 13:07:56','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(55,1,'2016-12-14 13:11:23','2016-12-14 13:11:23','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-2.jpg\" custom_padding=\"13em||13em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:11:23','2016-12-14 13:11:23','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(54,1,'2016-12-14 13:09:28','2016-12-14 13:09:28','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-2.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:09:28','2016-12-14 13:09:28','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(57,1,'2016-12-14 13:22:09','2016-12-14 13:22:09','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-2.jpg\" custom_padding=\"15em||15em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|||\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Vollkorn|||on|\" text_font_size=\"42\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Dosis||||\" text_font_size=\"26\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:22:09','2016-12-14 13:22:09','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(58,1,'2016-12-14 13:23:06','2016-12-14 13:23:06','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-2.jpg\" custom_padding=\"17em||17em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|||\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Vollkorn|||on|\" text_font_size=\"42\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Dosis||||\" text_font_size=\"26\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:23:06','2016-12-14 13:23:06','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(59,1,'2016-12-14 13:24:48','2016-12-14 13:24:48','','header-img-1','','inherit','open','closed','','header-img-1','','','2016-12-14 13:24:48','2016-12-14 13:24:48','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg',0,'attachment','image/jpeg',0),(60,1,'2016-12-14 13:25:16','2016-12-14 13:25:16','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"13em||13em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|||\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Vollkorn|||on|\" text_font_size=\"42\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Dosis||||\" text_font_size=\"26\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:25:16','2016-12-14 13:25:16','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(61,1,'2016-12-14 13:26:38','2016-12-14 13:26:38','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"13em||13em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|||\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||0px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Vollkorn|||on|\" text_font_size=\"42\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Dosis||||\" text_font_size=\"26\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:26:38','2016-12-14 13:26:38','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(62,1,'2016-12-14 13:31:33','2016-12-14 13:31:33','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"15em||15em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|||\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||0px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Vollkorn|||on|\" text_font_size=\"42\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Dosis||||\" text_font_size=\"26\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:31:33','2016-12-14 13:31:33','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(63,1,'2016-12-14 13:32:33','2016-12-14 13:32:33','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"15em||15em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|||\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||0px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"42\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"22\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:32:33','2016-12-14 13:32:33','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(64,1,'2016-12-14 13:33:39','2016-12-14 13:33:39','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"15em||15em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|||\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||0px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"42\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"24\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:33:39','2016-12-14 13:33:39','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(65,1,'2016-12-14 13:36:59','2016-12-14 13:36:59','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"15em||15em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"24\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:36:59','2016-12-14 13:36:59','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(66,1,'2016-12-14 13:37:50','2016-12-14 13:37:50','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"15em||15em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:37:50','2016-12-14 13:37:50','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(67,1,'2016-12-14 13:38:34','2016-12-14 13:38:34','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"15em||15em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:38:34','2016-12-14 13:38:34','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(125,1,'2016-12-14 16:02:15','2016-12-14 16:02:15','','TG-HP-Headshot','','inherit','open','closed','','tg-hp-headshot','','','2016-12-14 16:02:36','2016-12-14 16:02:36','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg',0,'attachment','image/jpeg',0),(69,1,'2016-12-16 12:39:07','2016-12-16 12:39:07','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\n\nPath of the True Self\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nFinding wholeness through connecting to one’s essential nature\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\n\n&nbsp;\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>The way you feel</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\n\nconnects you to the truth of who you are\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\n\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\n\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>By being yourself</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\n\nYou put something wonderful in the world\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\n\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\n\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\n\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>A Spiritual Mother</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\n\nGrounded and present\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\n\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\n\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\n\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\n\nRespond to\nevery call\nThat excites\nyour spirit\n<span style=\"font-size: 18px;\">- Rumi</span>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\n\n<h1>Meditation &amp; Mindfulness Instruction</h1>\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\n\n<h1>Relationship Counseling</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\n\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\n\n<h1>Individual Counseling</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\n\nYou had the power\nall along, my dear\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\n\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\n\nI assist women already on a spiritual path to turbo-charge their lives.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-autosave-v1','','','2016-12-16 12:39:07','2016-12-16 12:39:07','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-autosave-v1/',0,'revision','',0),(70,1,'2016-12-14 13:49:10','2016-12-14 13:49:10','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"15em||15em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"] Path of the True Self [/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Finding wholeness through connecting to one’s essential nature [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"border-radius:16px;\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The way you feel</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>connects you to the truth of who you are</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:49:10','2016-12-14 13:49:10','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(75,1,'2016-12-14 13:55:44','2016-12-14 13:55:44','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-14 13:55:44','2016-12-14 13:55:44','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/37-revision-v1/',0,'revision','',0),(76,1,'2016-12-14 13:56:53','2016-12-14 13:56:53','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"15em||15em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"border-radius:16px;\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font=\"Dosis||||\" header_text_color=\"#2499cf\"]\r\n\r\n<h2>connects you to the truth of who you are</h2>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:56:53','2016-12-14 13:56:53','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(77,1,'2016-12-14 13:57:14','2016-12-14 13:57:14','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"15em||15em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"border-radius:16px;\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font=\"Dosis||||\" header_text_color=\"#2499cf\"]\r\n\r\n<h2>connects you to the truth of who you are</h2>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:57:14','2016-12-14 13:57:14','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(78,1,'2016-12-14 13:59:55','2016-12-14 13:59:55','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"15em||15em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"border-radius:16px;\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#2499cf\" text_font_size=\"32\" text_line_height=\"1.2em\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 13:59:55','2016-12-14 13:59:55','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(93,1,'2016-12-14 14:23:47','2016-12-14 14:23:47','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-14 14:23:47','2016-12-14 14:23:47','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/37-revision-v1/',0,'revision','',0),(79,1,'2016-12-14 14:07:12','2016-12-14 14:07:12','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n.50 img{border-radius:50px;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-14 14:07:12','2016-12-14 14:07:12','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/37-revision-v1/',0,'revision','',0),(82,1,'2016-12-14 14:10:37','2016-12-14 14:10:37','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"14em||14em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" module_class=\"img\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#2499cf\" text_font_size=\"32\" text_line_height=\"1.2em\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 14:10:37','2016-12-14 14:10:37','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(80,1,'2016-12-14 14:08:02','2016-12-14 14:08:02','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"14em||14em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"border-radius:16px;\" module_class=\"50 img\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#2499cf\" text_font_size=\"32\" text_line_height=\"1.2em\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 14:08:02','2016-12-14 14:08:02','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(81,1,'2016-12-14 14:10:02','2016-12-14 14:10:02','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n.img{border-radius:50px;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-14 14:10:02','2016-12-14 14:10:02','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/37-revision-v1/',0,'revision','',0),(84,1,'2016-12-14 14:15:00','2016-12-14 14:15:00','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"14em||14em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Lato Light||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" module_class=\"img\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Lato Light||||\" text_text_color=\"#003368\" text_font_size=\"32\" text_line_height=\"1.2em\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 14:15:00','2016-12-14 14:15:00','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(86,1,'2016-12-14 14:16:59','2016-12-14 14:16:59','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"14em||14em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" module_class=\"img\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"32\" text_line_height=\"1.2em\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 14:16:59','2016-12-14 14:16:59','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(85,1,'2016-12-14 14:16:15','2016-12-14 14:16:15','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"14em||14em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" module_class=\"img\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro Light||||\" text_text_color=\"#003368\" text_font_size=\"32\" text_line_height=\"1.2em\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 14:16:15','2016-12-14 14:16:15','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(87,1,'2016-12-14 14:17:51','2016-12-14 14:17:51','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"14em||14em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" module_class=\"img\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"32\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 14:17:51','2016-12-14 14:17:51','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(88,1,'2016-12-14 14:18:22','2016-12-14 14:18:22','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"14em||14em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" module_class=\"img\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"32\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 14:18:22','2016-12-14 14:18:22','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(89,1,'2016-12-14 14:20:07','2016-12-14 14:20:07','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"14em||14em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" module_class=\"img\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 14:20:07','2016-12-14 14:20:07','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(90,1,'2016-12-14 14:21:15','2016-12-14 14:21:15','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"13em||13em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" module_class=\"img\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 14:21:15','2016-12-14 14:21:15','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(92,1,'2016-12-14 14:23:32','2016-12-14 14:23:32','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"13em||13em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-68\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"427\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 14:23:32','2016-12-14 14:23:32','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(91,1,'2016-12-14 14:23:13','2016-12-14 14:23:13','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"13em||13em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" module_class=\"img\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-68\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"427\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 14:23:13','2016-12-14 14:23:13','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(126,1,'2016-12-14 16:02:56','2016-12-14 16:02:56','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px|||\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-2.jpg\" alt=\"\" width=\"554\" height=\"480\" class=\"alignright size-full wp-image-118\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 16:02:56','2016-12-14 16:02:56','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(96,1,'2016-12-14 14:32:02','2016-12-14 14:32:02','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"13em||13em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 14:32:02','2016-12-14 14:32:02','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(97,1,'2016-12-14 14:34:42','2016-12-14 14:34:42','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"13em||13em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(98,203,206,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 14:34:42','2016-12-14 14:34:42','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(99,1,'2016-12-14 14:41:21','2016-12-14 14:41:21','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"13em||13em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.75)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(203,254,255,0.75)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 14:41:21','2016-12-14 14:41:21','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(98,1,'2016-12-14 14:37:01','2016-12-14 14:37:01','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"13em||13em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(203,254,255,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(98,203,206,0.7)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 14:37:01','2016-12-14 14:37:01','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(100,1,'2016-12-14 14:42:31','2016-12-14 14:42:31','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.75)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(203,254,255,0.75)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 14:42:31','2016-12-14 14:42:31','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(109,1,'2016-12-14 15:01:50','2016-12-14 15:01:50','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\" admin_label=\"Section\" template_type=\"\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(203,254,255,0.75)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 15:01:50','2016-12-14 15:01:50','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(105,1,'2016-12-14 14:49:32','2016-12-14 14:49:32','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"on\" background_color=\"rgba(255,255,255,0.75)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" background_color=\"rgba(255,255,255,0.75)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(203,254,255,0.75)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 14:49:32','2016-12-14 14:49:32','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(108,1,'2016-12-14 14:57:26','2016-12-14 14:57:26','','Sand-pattern-1','','inherit','open','closed','','sand-pattern-1','','','2016-12-14 14:57:26','2016-12-14 14:57:26','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/Sand-pattern-1.jpg',0,'attachment','image/jpeg',0),(110,1,'2016-12-14 15:02:12','2016-12-14 15:02:12','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(203,254,255,0.75)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 15:02:12','2016-12-14 15:02:12','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(111,1,'2016-12-14 15:03:33','2016-12-14 15:03:33','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"on\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" custom_padding=\"30px|30px|30px|30px\" gutter_width=\"1\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(203,254,255,0.75)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 15:03:33','2016-12-14 15:03:33','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(112,1,'2016-12-14 15:04:17','2016-12-14 15:04:17','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"on\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"30px\" padding_right_1=\"30px\" padding_bottom_1=\"30px\" padding_left_1=\"30px\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(203,254,255,0.75)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 15:04:17','2016-12-14 15:04:17','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(113,1,'2016-12-14 15:05:34','2016-12-14 15:05:34','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"on\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"30px\" padding_right_1=\"30px\" padding_bottom_1=\"30px\" padding_left_1=\"30px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(203,254,255,0.75)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 15:05:34','2016-12-14 15:05:34','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(114,1,'2016-12-14 15:08:17','2016-12-14 15:08:17','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"on\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"30px\" padding_right_1=\"30px\" padding_bottom_1=\"30px\" padding_left_1=\"30px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(203,254,255,0.75)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 15:08:17','2016-12-14 15:08:17','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(115,1,'2016-12-14 15:09:25','2016-12-14 15:09:25','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"30px\" padding_right_1=\"30px\" padding_bottom_1=\"30px\" padding_left_1=\"30px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(203,254,255,0.75)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 15:09:25','2016-12-14 15:09:25','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(116,1,'2016-12-14 15:09:53','2016-12-14 15:09:53','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"2\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"30px\" padding_right_1=\"30px\" padding_bottom_1=\"30px\" padding_left_1=\"30px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(203,254,255,0.75)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 15:09:53','2016-12-14 15:09:53','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(117,1,'2016-12-14 15:10:27','2016-12-14 15:10:27','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"30px\" padding_right_1=\"30px\" padding_bottom_1=\"30px\" padding_left_1=\"30px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(203,254,255,0.75)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 15:10:27','2016-12-14 15:10:27','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(119,1,'2016-12-14 15:14:28','2016-12-14 15:14:28','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-2.jpg\" alt=\"\" width=\"554\" height=\"480\" class=\"alignright size-full wp-image-118\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"30px\" padding_right_1=\"30px\" padding_bottom_1=\"30px\" padding_left_1=\"30px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(203,254,255,0.75)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-1.jpg\" alt=\"\" width=\"554\" height=\"462\" class=\"alignright size-full wp-image-95\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 15:14:28','2016-12-14 15:14:28','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(120,1,'2016-12-14 15:19:38','2016-12-14 15:19:38','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-2.jpg\" alt=\"\" width=\"554\" height=\"480\" class=\"alignright size-full wp-image-118\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"30px\" padding_right_1=\"30px\" padding_bottom_1=\"30px\" padding_left_1=\"30px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\" admin_label=\"Section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" template_type=\"\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.7)\" padding_top_1=\"30px\" padding_right_1=\"30px\" padding_bottom_1=\"30px\" padding_left_1=\"30px\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-2.jpg\" alt=\"\" width=\"554\" height=\"480\" class=\"alignright size-full wp-image-118\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 15:19:38','2016-12-14 15:19:38','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(121,1,'2016-12-14 15:21:48','2016-12-14 15:21:48','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-2.jpg\" alt=\"\" width=\"554\" height=\"480\" class=\"alignright size-full wp-image-118\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"30px\" padding_right_1=\"30px\" padding_bottom_1=\"30px\" padding_left_1=\"30px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.7)\" padding_top_1=\"30px\" padding_right_1=\"30px\" padding_bottom_1=\"30px\" padding_left_1=\"30px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-2.jpg\" alt=\"\" width=\"554\" height=\"480\" class=\"alignright size-full wp-image-118\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 15:21:48','2016-12-14 15:21:48','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(122,1,'2016-12-14 15:45:51','2016-12-14 15:45:51','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-2.jpg\" alt=\"\" width=\"554\" height=\"480\" class=\"alignright size-full wp-image-118\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"30px\" padding_right_1=\"30px\" padding_bottom_1=\"30px\" padding_left_1=\"30px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px|||\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.7)\" padding_top_1=\"30px\" padding_right_1=\"30px\" padding_bottom_1=\"30px\" padding_left_1=\"30px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-2.jpg\" alt=\"\" width=\"554\" height=\"480\" class=\"alignright size-full wp-image-118\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 15:45:51','2016-12-14 15:45:51','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(123,1,'2016-12-14 15:57:04','2016-12-14 15:57:04','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-2.jpg\" alt=\"\" width=\"554\" height=\"480\" class=\"alignright size-full wp-image-118\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"30px\" padding_right_1=\"30px\" padding_bottom_1=\"30px\" padding_left_1=\"30px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px|||\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.7)\" padding_top_1=\"30px\" padding_right_1=\"30px\" padding_bottom_1=\"30px\" padding_left_1=\"30px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-2.jpg\" alt=\"\" width=\"554\" height=\"480\" class=\"alignright size-full wp-image-118\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 15:57:04','2016-12-14 15:57:04','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(124,1,'2016-12-14 15:58:08','2016-12-14 15:58:08','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-2.jpg\" alt=\"\" width=\"554\" height=\"480\" class=\"alignright size-full wp-image-118\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px|||\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot-2.jpg\" alt=\"\" width=\"554\" height=\"480\" class=\"alignright size-full wp-image-118\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 15:58:08','2016-12-14 15:58:08','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(127,1,'2016-12-14 16:13:18','2016-12-14 16:13:18','','boat-pic','','inherit','open','closed','','boat-pic','','','2016-12-14 16:13:18','2016-12-14 16:13:18','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/boat-pic.jpg',0,'attachment','image/jpeg',0),(128,1,'2016-12-14 16:13:48','2016-12-14 16:13:48','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px|||\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/boat-pic.jpg\" alt=\"\" width=\"550\" height=\"440\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 16:13:48','2016-12-14 16:13:48','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(129,1,'2016-12-14 16:15:17','2016-12-14 16:15:17','','boat-pic','','inherit','open','closed','','boat-pic-2','','','2016-12-14 16:15:17','2016-12-14 16:15:17','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/boat-pic-1.jpg',0,'attachment','image/jpeg',0),(130,1,'2016-12-14 16:16:18','2016-12-14 16:16:18','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px|||\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/boat-pic-1.jpg\" alt=\"\" width=\"550\" height=\"460\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 16:16:18','2016-12-14 16:16:18','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(131,1,'2016-12-14 16:17:08','2016-12-14 16:17:08','','boat-pic','','inherit','open','closed','','boat-pic-3','','','2016-12-14 16:17:08','2016-12-14 16:17:08','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/boat-pic-2.jpg',0,'attachment','image/jpeg',0),(132,1,'2016-12-14 16:17:26','2016-12-14 16:17:26','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px|||\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/boat-pic-2.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 16:17:26','2016-12-14 16:17:26','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(133,1,'2016-12-14 16:18:30','2016-12-14 16:18:30','','boat-pic','','inherit','open','closed','','boat-pic-4','','','2016-12-14 16:18:30','2016-12-14 16:18:30','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/boat-pic-3.jpg',0,'attachment','image/jpeg',0),(134,1,'2016-12-14 16:18:36','2016-12-14 16:18:36','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px|||\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/boat-pic-3.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 16:18:36','2016-12-14 16:18:36','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(135,1,'2016-12-14 16:24:07','2016-12-14 16:24:07','','being-alone','','inherit','open','closed','','being-alone','','','2016-12-14 16:24:07','2016-12-14 16:24:07','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg',0,'attachment','image/jpeg',0),(136,1,'2016-12-14 16:24:41','2016-12-14 16:24:41','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px|||\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 16:24:41','2016-12-14 16:24:41','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(137,1,'2016-12-14 16:54:39','2016-12-14 16:54:39',' ','','','publish','closed','closed','','137','','','2017-02-07 10:37:55','2017-02-07 10:37:55','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?p=137',1,'nav_menu_item','',0),(283,1,'2017-01-05 14:43:14','2017-01-05 14:43:14','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>She believed she could,</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nso she did\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 14:43:14','2017-01-05 14:43:14','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0),(399,1,'2017-02-07 04:32:15','2017-02-07 04:32:15','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am an EMPATH, which means:\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Passion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>AUTHENTICITY\r\n</strong>Because I value my own uniqueness,\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','How Does Spiritual Counseling Work','','publish','closed','closed','','how-does-spiritual-counseling-work','','','2017-02-08 07:13:53','2017-02-08 07:13:53','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?page_id=399',0,'page','',0),(461,1,'2017-02-07 08:48:17','2017-02-07 08:48:17','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>Path of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Finding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>What my clients are saying:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nYou’re a woman of many talents and gifts.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#62cbce\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nThank you for the fine work that you do.\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#62cbce\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nYou’re a magician!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nSince working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Testimonials','','inherit','closed','closed','','444-revision-v1','','','2017-02-07 08:48:17','2017-02-07 08:48:17','',444,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/444-revision-v1/',0,'revision','',0),(460,1,'2017-02-07 08:47:48','2017-02-07 08:47:48','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>Path of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Finding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>What my clients are saying:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nYou’re a woman of many talents and gifts.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#62cbce\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nThank you for the fine work that you do.\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#62cbce\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nYou’re a magician!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nSince working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Testimonials','','inherit','closed','closed','','444-revision-v1','','','2017-02-07 08:47:48','2017-02-07 08:47:48','',444,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/444-revision-v1/',0,'revision','',0),(492,1,'2017-02-08 07:11:21','2017-02-08 07:11:21','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/fountain.jpg\" alt=\"\" width=\"560\" height=\"480\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"20px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n<h1>When you learn how to listen</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n<h1>I am an <span style=\"color: #b08445;\">E M P A T H</span>, which means:</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n<h1><span style=\"color: #cca56e;\">E</span>mpowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n<h1><span style=\"color: #cca56e;\">M</span>aternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n<h1><span style=\"color: #cca56e;\">P</span>assion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n<h1><span style=\"color: #cca56e;\">A</span>uthenticity</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n<h1><span style=\"color: #cca56e;\">T</span>ruth</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n<h1><span style=\"color: #cca56e;\">H</span>eart</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nThe beginning and end of our spiritual journey - one, true sanctuary &amp; home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself.\r\nAccept Yourself.\r\nValue Yourself.\r\nLove Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/dr-joseph-murphy-2.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-08 07:11:21','2017-02-08 07:11:21','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/08/311-revision-v1/',0,'revision','',0),(148,1,'2016-12-14 17:03:12','2016-12-14 17:03:12','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-14 17:03:12','2016-12-14 17:03:12','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/37-revision-v1/',0,'revision','',0),(156,1,'2016-12-14 17:11:21','2016-12-14 17:11:21','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px|||\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 17:11:21','2016-12-14 17:11:21','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(158,1,'2016-12-14 17:13:42','2016-12-14 17:13:42','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" custom_padding=\"||0px|\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 17:13:42','2016-12-14 17:13:42','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(157,1,'2016-12-14 17:12:47','2016-12-14 17:12:47','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" custom_padding=\"||0px|\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px|||\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 17:12:47','2016-12-14 17:12:47','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(159,1,'2016-12-14 17:23:01','2016-12-14 17:23:01','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" custom_padding=\"||0px|\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px||0px|\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" custom_padding=\"0px||0px|\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.  As your ally in healing, my intention is to hold a space where mystical transformation can occur.  \r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart. As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 17:23:01','2016-12-14 17:23:01','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(160,1,'2016-12-14 17:24:18','2016-12-14 17:24:18','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" custom_padding=\"||0px|\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px||0px|\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" custom_padding=\"0px||0px|\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.  \r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart. As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 17:24:18','2016-12-14 17:24:18','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(161,1,'2016-12-14 17:24:54','2016-12-14 17:24:54','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" custom_padding=\"||0px|\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px||0px|\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" custom_padding=\"0px||0px|\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.  \r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-14 17:24:54','2016-12-14 17:24:54','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/14/45-revision-v1/',0,'revision','',0),(162,1,'2016-12-15 05:18:21','2016-12-15 05:18:21','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 50px 50px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" custom_padding=\"||0px|\" background_color=\"rgba(255,255,255,0.2)\" custom_css_main_element=\"border-radius:30px 80px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px||0px|\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" custom_padding=\"0px||0px|\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.  \r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 05:18:21','2016-12-15 05:18:21','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(163,1,'2016-12-15 05:20:52','2016-12-15 05:20:52','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 50px 50px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.2)\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.2)\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.  \r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 05:20:52','2016-12-15 05:20:52','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(168,1,'2016-12-15 05:33:59','2016-12-15 05:33:59','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-15 05:33:59','2016-12-15 05:33:59','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/37-revision-v1/',0,'revision','',0),(169,1,'2016-12-15 05:36:48','2016-12-15 05:36:48','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 80px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.1)\" custom_css_main_element=\"border-radius:80px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,255,255,0.15)\" custom_css_main_element=\"border-radius:80px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.1)\" custom_css_main_element=\"border-radius:80px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.  \r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 05:36:48','2016-12-15 05:36:48','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(170,1,'2016-12-15 05:38:39','2016-12-15 05:38:39','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 80px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,255,255,0.15)\" custom_css_main_element=\"border-radius:80px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.1)\" custom_css_main_element=\"border-radius:80px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,255,255,0.15)\" custom_css_main_element=\"border-radius:80px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.  \r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 05:38:39','2016-12-15 05:38:39','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(171,1,'2016-12-15 05:59:38','2016-12-15 05:59:38','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"12em||12em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.  \r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 05:59:38','2016-12-15 05:59:38','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(172,1,'2016-12-15 06:05:16','2016-12-15 06:05:16','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"10em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.  \r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 06:05:16','2016-12-15 06:05:16','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(173,1,'2016-12-15 06:09:42','2016-12-15 06:09:42','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {line-height: 13px;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-15 06:09:42','2016-12-15 06:09:42','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/37-revision-v1/',0,'revision','',0),(174,1,'2016-12-15 06:16:13','2016-12-15 06:16:13','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {line-height: 13px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 100px;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-15 06:16:13','2016-12-15 06:16:13','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/37-revision-v1/',0,'revision','',0),(179,1,'2016-12-15 06:28:58','2016-12-15 06:28:58','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {line-height: 13px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 100px;}\n#et-info {float: right;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-15 06:28:58','2016-12-15 06:28:58','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/37-revision-v1/',0,'revision','',0),(180,1,'2016-12-15 06:47:25','2016-12-15 06:47:25','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {line-height: 13px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 100px;}\n#et-info {ftext-align: center;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-15 06:47:25','2016-12-15 06:47:25','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/37-revision-v1/',0,'revision','',0),(181,1,'2016-12-15 06:47:50','2016-12-15 06:47:50','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {line-height: 13px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 100px;}\n#et-info {ftext-align: center; float:none;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-15 06:47:50','2016-12-15 06:47:50','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/37-revision-v1/',0,'revision','',0),(182,1,'2016-12-15 06:48:23','2016-12-15 06:48:23','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {line-height: 13px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 100px;}\n#et-info {text-align: center; float:none;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-15 06:48:23','2016-12-15 06:48:23','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/37-revision-v1/',0,'revision','',0),(183,1,'2016-12-15 06:50:39','2016-12-15 06:50:39','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"8em||8em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.  \r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 06:50:39','2016-12-15 06:50:39','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(184,1,'2016-12-15 06:52:29','2016-12-15 06:52:29','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"8em||9em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px||40px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. \r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.  \r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 06:52:29','2016-12-15 06:52:29','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(187,1,'2016-12-15 06:57:11','2016-12-15 06:57:11','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||9em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"30px||30px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"50\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 06:57:11','2016-12-15 06:57:11','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(185,1,'2016-12-15 06:53:13','2016-12-15 06:53:13','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"8em||9em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"30px||30px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"52\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\n<p>\r\nPath of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"23\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nFinding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n<br />\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\"></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nconnects you to the truth of who you are</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.</p>\r\n<p>The person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.</p>\r\n<p>Years of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nYou put something wonderful in the world</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. </p>\r\n<p>Hitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.</p>\r\n<p>I have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\"></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\"></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nGrounded and present</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.</p>\r\n<p>As your ally in healing, my intention is to hold a space where mystical transformation can occur.  </p>\r\n<p>As I attune myself to my client’s energies, I am able to receive the frequency of her heart.</p>\r\n<p>As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 06:53:13','2016-12-15 06:53:13','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(186,1,'2016-12-15 06:56:02','2016-12-15 06:56:02','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||9em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"30px||30px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"50\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\n\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Finding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n<p>\r\n</p>\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\"></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nconnects you to the truth of who you are</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.</p>\r\n<p>The person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.</p>\r\n<p>Years of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nYou put something wonderful in the world</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit. </p>\r\n<p>Hitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.</p>\r\n<p>I have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" class=\"alignright size-full wp-image-127\" style=\"border-radius:50px;\"></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" class=\"alignright size-full wp-image-125\" style=\"border-radius:50px;\"></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nGrounded and present</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.</p>\r\n<p>As your ally in healing, my intention is to hold a space where mystical transformation can occur.  </p>\r\n<p>As I attune myself to my client’s energies, I am able to receive the frequency of her heart.</p>\r\n<p>As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 06:56:02','2016-12-15 06:56:02','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(188,1,'2016-12-15 06:58:34','2016-12-15 06:58:34','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||9em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.7)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"30px||30px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 06:58:34','2016-12-15 06:58:34','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(189,1,'2016-12-15 07:00:07','2016-12-15 07:00:07','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||9em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"30px||30px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||15px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 07:00:07','2016-12-15 07:00:07','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(190,1,'2016-12-15 07:01:10','2016-12-15 07:01:10','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||9em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"30px||30px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 07:01:10','2016-12-15 07:01:10','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(191,1,'2016-12-15 07:04:32','2016-12-15 07:04:32','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"30px||30px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 07:04:32','2016-12-15 07:04:32','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(192,1,'2016-12-15 07:11:15','2016-12-15 07:11:15','','spiritual-mother','','inherit','open','closed','','spiritual-mother','','','2016-12-15 07:11:15','2016-12-15 07:11:15','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother.jpg',0,'attachment','image/jpeg',0),(193,1,'2016-12-15 07:12:37','2016-12-15 07:12:37','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother.jpg\" alt=\"\" width=\"500\" height=\"470\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 07:12:37','2016-12-15 07:12:37','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(194,1,'2016-12-15 07:14:10','2016-12-15 07:14:10','','spiritual-mother','','inherit','open','closed','','spiritual-mother-2','','','2016-12-15 07:14:10','2016-12-15 07:14:10','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg',0,'attachment','image/jpeg',0),(195,1,'2016-12-15 07:14:27','2016-12-15 07:14:27','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 07:14:27','2016-12-15 07:14:27','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(196,1,'2016-12-15 07:15:09','2016-12-15 07:15:09','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 07:15:09','2016-12-15 07:15:09','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(199,1,'2016-12-15 07:45:38','2016-12-15 07:45:38','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" text_font=\"Walter Turncoat|||on|\" text_font_size=\"35\" text_line_height=\"1em\"]\r\n\r\nRespond to every call \r\nThat excites your spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. \r\n\r\nNext I meet with the couple as a unit.  We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 07:45:38','2016-12-15 07:45:38','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(198,1,'2016-12-15 07:42:10','2016-12-15 07:42:10','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" text_font=\"Walter Turncoat|||on|\" text_font_size=\"35\" text_line_height=\"1em\"]\r\n\r\nRespond to every call \r\nThat excites your spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 07:42:10','2016-12-15 07:42:10','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(202,1,'2016-12-15 07:48:41','2016-12-15 07:48:41','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" text_font=\"Walter Turncoat|||on|\" text_font_size=\"35\" text_line_height=\"1em\"]\r\n\r\nRespond to every call \r\nThat excites your spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"42px\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. \r\n\r\nNext I meet with the couple as a unit.  We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 07:48:41','2016-12-15 07:48:41','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(200,1,'2016-12-15 07:47:01','2016-12-15 07:47:01','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" text_font=\"Walter Turncoat|||on|\" text_font_size=\"35\" text_line_height=\"1em\"]\r\n\r\nRespond to every call \r\nThat excites your spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"26px\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. \r\n\r\nNext I meet with the couple as a unit.  We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 07:47:01','2016-12-15 07:47:01','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(201,1,'2016-12-15 07:47:44','2016-12-15 07:47:44','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" text_font=\"Walter Turncoat|||on|\" text_font_size=\"35\" text_line_height=\"1em\"]\r\n\r\nRespond to every call \r\nThat excites your spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"36px\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. \r\n\r\nNext I meet with the couple as a unit.  We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 07:47:44','2016-12-15 07:47:44','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(203,1,'2016-12-15 07:50:20','2016-12-15 07:50:20','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" text_font=\"Walter Turncoat|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to every call \r\nThat excites your spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"42px\" custom_margin=\"||20px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. \r\n\r\nNext I meet with the couple as a unit.  We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 07:50:20','2016-12-15 07:50:20','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(204,1,'2016-12-15 08:04:31','2016-12-15 08:04:31','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Walter Turncoat|||on|\" text_font_size=\"36\" text_line_height=\"1em\"]\r\n\r\nRespond to every call \r\nThat excites your spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" text_line_height=\"1em\"]\r\n\r\n<h1>Individual counseling</h1><h1>\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"42px\" custom_margin=\"||20px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. \r\n\r\nNext I meet with the couple as a unit.  We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 08:04:31','2016-12-15 08:04:31','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0);
INSERT INTO `wp_upmt_posts` VALUES (205,1,'2016-12-15 08:07:06','2016-12-15 08:07:06','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Walter Turncoat|||on|\" text_font_size=\"36\" text_line_height=\"1em\"]\r\n\r\nRespond to every call \r\nThat excites your spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" text_line_height=\"1em\" header_text_color=\"#003368\" header_font_size=\"42px\"]\r\n\r\n<h1>Individual counseling</h1>\r\n<p>One-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"42px\" custom_margin=\"||20px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. \r\n\r\nNext I meet with the couple as a unit.  We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 08:07:06','2016-12-15 08:07:06','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(206,1,'2016-12-15 08:08:43','2016-12-15 08:08:43','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Walter Turncoat|||on|\" text_font_size=\"36\" text_line_height=\"1em\"]\r\n\r\nRespond to every call \r\nThat excites your spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" text_line_height=\"1em\" header_text_color=\"#003368\" header_font_size=\"42px\"]\r\n\r\n<h1>Individual counseling</h1>\r\n<p>One-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"42px\" custom_margin=\"||20px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. \r\n\r\nNext I meet with the couple as a unit.  We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 08:08:43','2016-12-15 08:08:43','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(207,1,'2016-12-15 08:10:03','2016-12-15 08:10:03','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Walter Turncoat|||on|\" text_font_size=\"36\" text_line_height=\"1em\"]\r\n\r\nRespond to every call \r\nThat excites your spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" text_line_height=\"1em\" header_text_color=\"#003368\" header_font_size=\"42px\"]\r\n\r\n<h1>Individual counseling</h1>\r\n<p>One-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"42px\" custom_margin=\"||20px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. \r\n\r\nNext I meet with the couple as a unit.  We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 08:10:03','2016-12-15 08:10:03','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(208,1,'2016-12-15 08:13:10','2016-12-15 08:13:10','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Walter Turncoat|||on|\" text_font_size=\"36\" text_line_height=\"1em\"]\r\n\r\nRespond to every call \r\nThat excites your spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" text_line_height=\"1em\" header_text_color=\"#003368\" header_font_size=\"42px\"]\r\n\r\n<h1>Meditation & Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"42px\" custom_margin=\"||20px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. \r\n\r\nNext I meet with the couple as a unit.  We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 08:13:10','2016-12-15 08:13:10','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(209,1,'2016-12-15 08:13:54','2016-12-15 08:13:54','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Walter Turncoat|||on|\" text_font_size=\"36\" text_line_height=\"1em\"]\r\n\r\nRespond to every call \r\nThat excites your spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" text_line_height=\"1em\" header_text_color=\"#003368\" header_font_size=\"42px\"]\r\n\r\n<h1>Meditation & Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"42px\" custom_margin=\"||20px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 08:13:54','2016-12-15 08:13:54','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(210,1,'2016-12-15 08:15:33','2016-12-15 08:15:33','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Walter Turncoat|||on|\" text_font_size=\"36\" text_line_height=\"1em\"]\r\n\r\nRespond to every call \r\nThat excites your spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"42px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"42px\" custom_margin=\"||20px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 08:15:33','2016-12-15 08:15:33','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(213,1,'2016-12-15 08:26:07','2016-12-15 08:26:07','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Walter Turncoat|||on|\" text_font_size=\"36\" text_line_height=\"1em\"]\r\n\r\nRespond to every call \r\nThat excites your spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 08:26:07','2016-12-15 08:26:07','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(211,1,'2016-12-15 08:19:40','2016-12-15 08:19:40','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Walter Turncoat|||on|\" text_font_size=\"36\" text_line_height=\"1em\"]\r\n\r\nRespond to every call \r\nThat excites your spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"42px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"42px\" custom_margin=\"||20px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"42px\" custom_margin=\"||20px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 08:19:40','2016-12-15 08:19:40','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(212,1,'2016-12-15 08:20:35','2016-12-15 08:20:35','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Walter Turncoat|||on|\" text_font_size=\"36\" text_line_height=\"1em\"]\r\n\r\nRespond to every call \r\nThat excites your spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"42px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"42px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"42px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 08:20:35','2016-12-15 08:20:35','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(214,1,'2016-12-15 08:37:40','2016-12-15 08:37:40','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"36\" text_line_height=\"1em\"]\r\n\r\nRespond to every call \r\nThat excites your spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 08:37:40','2016-12-15 08:37:40','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(215,1,'2016-12-15 08:40:53','2016-12-15 08:40:53','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to\r\nevery call \r\nThat excites\r\nyour spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 08:40:53','2016-12-15 08:40:53','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(216,1,'2016-12-15 08:45:24','2016-12-15 08:45:24','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to\r\nevery call \r\nThat excites\r\nyour spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nYou had\r\nthe power\r\nall along,\r\nmy dear\r\n<span style=\"font-size:18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success. My ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with. I assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 08:45:24','2016-12-15 08:45:24','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(217,1,'2016-12-15 08:46:18','2016-12-15 08:46:18','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to\r\nevery call \r\nThat excites\r\nyour spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size:18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success. My ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with. I assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 08:46:18','2016-12-15 08:46:18','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(227,1,'2016-12-15 09:04:52','2016-12-15 09:04:52','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {line-height: 13px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 100px;}\n#et-info {text-align: center; float:none;}\n#main-footer {border-radius: 50px 80px 0 0;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-15 09:04:52','2016-12-15 09:04:52','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/37-revision-v1/',0,'revision','',0),(230,1,'2016-12-15 09:07:38','2016-12-15 09:07:38','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {line-height: 13px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 100px;}\n#et-info {text-align: center; float:none;}\n#main-footer {border-radius: 50px 80px 0 0; background-color:rgba(0, 2, 51, 0.82);}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-15 09:07:38','2016-12-15 09:07:38','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/37-revision-v1/',0,'revision','',0),(231,1,'2016-12-15 09:08:38','2016-12-15 09:08:38','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {line-height: 13px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 100px;}\n#et-info {text-align: center; float:none;}\n#main-footer {border-radius: 50px 80px 0 0; background-color:rgba(0, 2, 51, 0.82);}\n#footer-bottom {background-color: none;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-15 09:08:38','2016-12-15 09:08:38','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/37-revision-v1/',0,'revision','',0),(232,1,'2016-12-15 09:09:15','2016-12-15 09:09:15','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {line-height: 13px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 100px;}\n#et-info {text-align: center; float:none;}\n#main-footer {border-radius: 50px 80px 0 0; background-color:rgba(0, 2, 51, 0.82);}\n#footer-bottom {background-color: rgba(0, 0, 0, 0.0);}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-15 09:09:15','2016-12-15 09:09:15','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/37-revision-v1/',0,'revision','',0),(233,1,'2016-12-15 09:11:01','2016-12-15 09:11:01','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to\r\nevery call \r\nThat excites\r\nyour spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size:18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"50px\" padding_bottom_1=\"40px\" padding_left_1=\"50px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 09:11:01','2016-12-15 09:11:01','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(234,1,'2016-12-15 09:11:58','2016-12-15 09:11:58','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to\r\nevery call \r\nThat excites\r\nyour spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size:18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"50px\" padding_bottom_1=\"40px\" padding_left_1=\"50px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with. I assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 09:11:58','2016-12-15 09:11:58','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(235,1,'2016-12-15 09:13:09','2016-12-15 09:13:09','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to\r\nevery call \r\nThat excites\r\nyour spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size:18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"50px\" padding_bottom_1=\"40px\" padding_left_1=\"50px\" custom_css_main_1=\"border-radius:80px 30px 80px 30px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 09:13:09','2016-12-15 09:13:09','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(236,1,'2016-12-15 09:14:11','2016-12-15 09:14:11','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to\r\nevery call \r\nThat excites\r\nyour spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size:18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"50px\" custom_css_main_1=\"border-radius:80px 30px 80px 30px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 09:14:11','2016-12-15 09:14:11','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(237,1,'2016-12-15 09:14:47','2016-12-15 09:14:47','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to\r\nevery call \r\nThat excites\r\nyour spirit \r\n<span style=\"font-size:18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size:18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 30px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 09:14:47','2016-12-15 09:14:47','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(240,1,'2016-12-15 09:17:27','2016-12-15 09:17:27','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {line-height: 13px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 100px;}\n#et-info {text-align: center; float:none;}\n#main-footer {border-radius: 50px 80px 0 0; background-color:rgba(0, 2, 51, 0.82);}\n#footer-bottom {background-color: rgba(0, 0, 0, 0.0);}\n.footer-white{margin-bottom:0px;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-15 09:17:27','2016-12-15 09:17:27','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/37-revision-v1/',0,'revision','',0),(241,1,'2016-12-15 09:18:05','2016-12-15 09:18:05','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {line-height: 13px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 100px;}\n#et-info {text-align: center; float:none;}\n#main-footer {border-radius: 50px 80px 0 0; background-color:rgba(0, 2, 51, 0.82);}\n#footer-bottom {background-color: rgba(0, 0, 0, 0.0);}\n.footer-white{padding-bottom:0px;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-15 09:18:05','2016-12-15 09:18:05','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/37-revision-v1/',0,'revision','',0),(242,1,'2016-12-15 09:18:50','2016-12-15 09:18:50','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\n\nPath of the True Self\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nFinding wholeness through connecting to one’s essential nature\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\n\n\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>The way you feel</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\n\nconnects you to the truth of who you are\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\n\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\n\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>By being yourself</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\n\nYou put something wonderful in the world\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\n\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\n\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\n\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\">\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>A Spiritual Mother</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\n\nGrounded and present\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\n\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\n\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\n\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\n\nRespond to\nevery call \nThat excites\nyour spirit \n<span style=\"font-size:18px;\">- Rumi</span>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\n\n<h1>Meditation &amp; Mindfulness Instruction</h1>\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\n\n<h1>Relationship Counseling</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\n\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\n\n<h1>Individual Counseling</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\n\nYou had the power\nall along, my dear\n<span style=\"font-size:18px;\">- Glinda the Good Witch</span>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 30px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\n\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\n\nI assist women already on a spiritual path to turbo-charge their lives.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','HP-15Dec16','','publish','closed','closed','','hp-15dec16','','','2016-12-15 09:18:50','2016-12-15 09:18:50','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/hp-15dec16/',0,'et_pb_layout','',0),(244,1,'2016-12-15 09:36:27','2016-12-15 09:36:27','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 30px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 30px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 09:36:27','2016-12-15 09:36:27','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(243,1,'2016-12-15 09:33:36','2016-12-15 09:33:36','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\n<p>\r\nPath of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nFinding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n<br />\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nconnects you to the truth of who you are</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.</p>\r\n<p>The person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.</p>\r\n<p>Years of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nYou put something wonderful in the world</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.</p>\r\n<p>Hitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.</p>\r\n<p>I have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\"></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nGrounded and present</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.</p>\r\n<p>As your ally in healing, my intention is to hold a space where mystical transformation can occur.</p>\r\n<p>As I attune myself to my client’s energies, I am able to receive the frequency of her heart.</p>\r\n<p>As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nRespond to<br />\r\nevery call<br />\r\nThat excites<br />\r\nyour spirit<br />\r\n<span style=\"font-size:18px;\">- Rumi</span></p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.</p>\r\n<p>I help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 30px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\n\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 30px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.</p>\r\n<p>My ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.</p>\r\n<p>I assist women already on a spiritual path to turbo-charge their lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 09:33:36','2016-12-15 09:33:36','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(245,1,'2016-12-15 09:38:21','2016-12-15 09:38:21','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 09:38:21','2016-12-15 09:38:21','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(261,1,'2016-12-16 12:27:21','2016-12-16 12:27:21','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"36\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-16 12:27:21','2016-12-16 12:27:21','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/16/45-revision-v1/',0,'revision','',0),(246,1,'2016-12-15 09:41:21','2016-12-15 09:41:21','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\n<p>\r\nPath of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nFinding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n<p>\r\n&nbsp;</p>\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.7)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nconnects you to the truth of who you are</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.</p>\r\n<p>The person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.</p>\r\n<p>Years of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nYou put something wonderful in the world</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.</p>\r\n<p>Hitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.</p>\r\n<p>I have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nGrounded and present</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.</p>\r\n<p>As your ally in healing, my intention is to hold a space where mystical transformation can occur.</p>\r\n<p>As I attune myself to my client’s energies, I am able to receive the frequency of her heart.</p>\r\n<p>As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nRespond to<br />\r\nevery call<br />\r\nThat excites<br />\r\nyour spirit<br />\r\n<span style=\"font-size: 18px;\">- Rumi</span></p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.</p>\r\n<p>I help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nYou had the power<br />\r\nall along, my dear<br />\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.</p>\r\n<p>My ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.</p>\r\n<p>I assist women already on a spiritual path to turbo-charge their lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 09:41:21','2016-12-15 09:41:21','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(247,1,'2016-12-15 11:21:05','2016-12-15 11:21:05','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {border-radius: 0 0 50px 120px; line-height: 13px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 100px;}\n#et-info {text-align: center; float:none;}\n#main-footer {border-radius: 50px 80px 0 0; background-color:rgba(0, 2, 51, 0.82);}\n#footer-bottom {background-color: rgba(0, 0, 0, 0.0);}\n.footer-white{padding-bottom:0px;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-15 11:21:05','2016-12-15 11:21:05','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/37-revision-v1/',0,'revision','',0),(251,1,'2016-12-15 11:29:19','2016-12-15 11:29:19','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\n<p>\r\nPath of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nFinding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n<p>\r\n&nbsp;</p>\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.6)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nconnects you to the truth of who you are</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.</p>\r\n<p>The person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.</p>\r\n<p>Years of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nYou put something wonderful in the world</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.</p>\r\n<p>Hitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.</p>\r\n<p>I have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.6)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nGrounded and present</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.</p>\r\n<p>As your ally in healing, my intention is to hold a space where mystical transformation can occur.</p>\r\n<p>As I attune myself to my client’s energies, I am able to receive the frequency of her heart.</p>\r\n<p>As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nRespond to<br />every call<br />That excites<br />your spirit<br /><span style=\"font-size: 18px;\">- Rumi</span></p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.</p>\r\n<p>I help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nYou had the power<br />all along, my dear<br /><span style=\"font-size: 18px;\">- Glinda the Good Witch</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.</p>\r\n<p>My ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.</p>\r\n<p>I assist women already on a spiritual path to turbo-charge their lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 11:29:19','2016-12-15 11:29:19','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(252,1,'2016-12-15 11:30:19','2016-12-15 11:30:19','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.8)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\n<p>\r\nPath of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nFinding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n<p>\r\n&nbsp;</p>\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.6)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nconnects you to the truth of who you are</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.</p>\r\n<p>The person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.</p>\r\n<p>Years of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nYou put something wonderful in the world</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.</p>\r\n<p>Hitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.</p>\r\n<p>I have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.6)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nGrounded and present</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.</p>\r\n<p>As your ally in healing, my intention is to hold a space where mystical transformation can occur.</p>\r\n<p>As I attune myself to my client’s energies, I am able to receive the frequency of her heart.</p>\r\n<p>As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nRespond to<br />every call<br />That excites<br />your spirit<br /><span style=\"font-size: 18px;\">- Rumi</span></p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.</p>\r\n<p>I help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nYou had the power<br />all along, my dear<br /><span style=\"font-size: 18px;\">- Glinda the Good Witch</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.</p>\r\n<p>My ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.</p>\r\n<p>I assist women already on a spiritual path to turbo-charge their lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 11:30:19','2016-12-15 11:30:19','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(253,1,'2016-12-15 11:31:33','2016-12-15 11:31:33','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\n<p>\r\nPath of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nFinding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n<p>\r\n&nbsp;</p>\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.6)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nconnects you to the truth of who you are</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.</p>\r\n<p>The person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.</p>\r\n<p>Years of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nYou put something wonderful in the world</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.</p>\r\n<p>Hitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.</p>\r\n<p>I have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.6)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nGrounded and present</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.</p>\r\n<p>As your ally in healing, my intention is to hold a space where mystical transformation can occur.</p>\r\n<p>As I attune myself to my client’s energies, I am able to receive the frequency of her heart.</p>\r\n<p>As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nRespond to<br />every call<br />That excites<br />your spirit<br /><span style=\"font-size: 18px;\">- Rumi</span></p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.</p>\r\n<p>I help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nYou had the power<br />all along, my dear<br /><span style=\"font-size: 18px;\">- Glinda the Good Witch</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.</p>\r\n<p>My ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.</p>\r\n<p>I assist women already on a spiritual path to turbo-charge their lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 11:31:33','2016-12-15 11:31:33','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(254,1,'2016-12-15 11:32:46','2016-12-15 11:32:46','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\n\n<p>\nPath of the True Self</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nFinding wholeness through connecting to one’s essential nature</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\n\n<p>\n&nbsp;</p>\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.6)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" /></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>The way you feel</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\n\n<p>\nconnects you to the truth of who you are</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.</p>\n<p>The person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.</p>\n<p>Years of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>By being yourself</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\n\n<p>\nYou put something wonderful in the world</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.</p>\n<p>Hitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.</p>\n<p>I have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" /></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.6)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" /></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>A Spiritual Mother</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\n\n<p>\nGrounded and present</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.</p>\n<p>As your ally in healing, my intention is to hold a space where mystical transformation can occur.</p>\n<p>As I attune myself to my client’s energies, I am able to receive the frequency of her heart.</p>\n<p>As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\n\n<p>\nRespond to<br />every call<br />That excites<br />your spirit<br /><span style=\"font-size: 18px;\">- Rumi</span></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\n\n<h1>Meditation &amp; Mindfulness Instruction</h1>\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\n\n<h1>Relationship Counseling</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.</p>\n<p>I help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\n\n<h1>Individual Counseling</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\n\n<p>\nYou had the power<br />all along, my dear<br /><span style=\"font-size: 18px;\">- Glinda the Good Witch</span></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.</p>\n<p>My ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.</p>\n<p>I assist women already on a spiritual path to turbo-charge their lives.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','HP-15Dec16-V2','','publish','closed','closed','','hp-15dec16-v2','','','2016-12-15 11:32:46','2016-12-15 11:32:46','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/hp-15dec16-v2/',0,'et_pb_layout','',0),(255,1,'2016-12-15 11:40:24','2016-12-15 11:40:24','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\n<p>\r\nPath of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nFinding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n<p>\r\n&nbsp;</p>\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nconnects you to the truth of who you are</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.</p>\r\n<p>The person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.</p>\r\n<p>Years of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nYou put something wonderful in the world</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.</p>\r\n<p>Hitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.</p>\r\n<p>I have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nGrounded and present</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.</p>\r\n<p>As your ally in healing, my intention is to hold a space where mystical transformation can occur.</p>\r\n<p>As I attune myself to my client’s energies, I am able to receive the frequency of her heart.</p>\r\n<p>As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nRespond to<br />every call<br />That excites<br />your spirit<br /><span style=\"font-size: 18px;\">- Rumi</span></p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.</p>\r\n<p>I help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.45)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nYou had the power<br />all along, my dear<br /><span style=\"font-size: 18px;\">- Glinda the Good Witch</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.</p>\r\n<p>My ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.</p>\r\n<p>I assist women already on a spiritual path to turbo-charge their lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 11:40:24','2016-12-15 11:40:24','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(256,1,'2016-12-15 11:42:39','2016-12-15 11:42:39','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\n<p>\r\nPath of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nFinding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n<p>\r\n&nbsp;</p>\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nconnects you to the truth of who you are</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.</p>\r\n<p>The person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.</p>\r\n<p>Years of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nYou put something wonderful in the world</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.</p>\r\n<p>Hitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.</p>\r\n<p>I have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nGrounded and present</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.</p>\r\n<p>As your ally in healing, my intention is to hold a space where mystical transformation can occur.</p>\r\n<p>As I attune myself to my client’s energies, I am able to receive the frequency of her heart.</p>\r\n<p>As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nRespond to<br />every call<br />That excites<br />your spirit<br /><span style=\"font-size: 18px;\">- Rumi</span></p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.</p>\r\n<p>I help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.45)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nYou had the power<br />all along, my dear<br /><span style=\"font-size: 18px;\">- Glinda the Good Witch</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.</p>\r\n<p>My ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.</p>\r\n<p>I assist women already on a spiritual path to turbo-charge their lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 11:42:39','2016-12-15 11:42:39','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(257,1,'2016-12-15 11:43:32','2016-12-15 11:43:32','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\r\n\r\n<p>\r\nPath of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nFinding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n<p>\r\n&nbsp;</p>\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nconnects you to the truth of who you are</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.</p>\r\n<p>The person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.</p>\r\n<p>Years of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nYou put something wonderful in the world</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.</p>\r\n<p>Hitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.</p>\r\n<p>I have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\n<p>\r\nGrounded and present</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.</p>\r\n<p>As your ally in healing, my intention is to hold a space where mystical transformation can occur.</p>\r\n<p>As I attune myself to my client’s energies, I am able to receive the frequency of her heart.</p>\r\n<p>As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nRespond to<br />every call<br />That excites<br />your spirit<br /><span style=\"font-size: 18px;\">- Rumi</span></p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.</p>\r\n<p>I help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nYou had the power<br />all along, my dear<br /><span style=\"font-size: 18px;\">- Glinda the Good Witch</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.</p>\r\n<p>My ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.</p>\r\n<p>I assist women already on a spiritual path to turbo-charge their lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-15 11:43:32','2016-12-15 11:43:32','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/45-revision-v1/',0,'revision','',0),(258,1,'2016-12-15 11:43:57','2016-12-15 11:43:57','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\"]\n\n<p>\nPath of the True Self</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nFinding wholeness through connecting to one’s essential nature</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\n\n<p>\n&nbsp;</p>\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" /></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>The way you feel</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\n\n<p>\nconnects you to the truth of who you are</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.</p>\n<p>The person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.</p>\n<p>Years of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>By being yourself</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\n\n<p>\nYou put something wonderful in the world</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.</p>\n<p>Hitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.</p>\n<p>I have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" /></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" /></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>A Spiritual Mother</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\n\n<p>\nGrounded and present</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.</p>\n<p>As your ally in healing, my intention is to hold a space where mystical transformation can occur.</p>\n<p>As I attune myself to my client’s energies, I am able to receive the frequency of her heart.</p>\n<p>As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\n\n<p>\nRespond to<br />every call<br />That excites<br />your spirit<br /><span style=\"font-size: 18px;\">- Rumi</span></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\n\n<h1>Meditation &amp; Mindfulness Instruction</h1>\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\n\n<h1>Relationship Counseling</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.</p>\n<p>I help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\n\n<h1>Individual Counseling</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\n\n<p>\nYou had the power<br />all along, my dear<br /><span style=\"font-size: 18px;\">- Glinda the Good Witch</span></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.</p>\n<p>My ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.</p>\n<p>I assist women already on a spiritual path to turbo-charge their lives.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','HP-15Dec16-V3','','publish','closed','closed','','hp-15dec16-v3','','','2016-12-15 11:43:57','2016-12-15 11:43:57','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/hp-15dec16-v3/',0,'et_pb_layout','',0),(259,1,'2016-12-15 13:53:00','2016-12-15 13:53:00','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {border-radius: 0 0 50px 120px; line-height: 5px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 100px;}\n#et-info {text-align: center; float:none;}\n#main-footer {border-radius: 50px 80px 0 0; background-color:rgba(0, 2, 51, 0.82);}\n#footer-bottom {background-color: rgba(0, 0, 0, 0.0);}\n.footer-white{padding-bottom:0px;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-15 13:53:00','2016-12-15 13:53:00','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/37-revision-v1/',0,'revision','',0),(260,1,'2016-12-15 13:56:10','2016-12-15 13:56:10','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {border-radius: 0 0 50px 120px; line-height: 5px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 80px;}\n#et-info {text-align: center; float:none;}\n#main-footer {border-radius: 50px 80px 0 0; background-color:rgba(0, 2, 51, 0.82);}\n#footer-bottom {background-color: rgba(0, 0, 0, 0.0);}\n.footer-white{padding-bottom:0px;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2016-12-15 13:56:10','2016-12-15 13:56:10','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/15/37-revision-v1/',0,'revision','',0),(262,1,'2016-12-16 12:28:07','2016-12-16 12:28:07','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"36\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|phone\" text_line_height=\"1.2em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-16 12:28:07','2016-12-16 12:28:07','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/16/45-revision-v1/',0,'revision','',0),(263,1,'2016-12-16 12:28:44','2016-12-16 12:28:44','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1.2em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-16 12:28:44','2016-12-16 12:28:44','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/16/45-revision-v1/',0,'revision','',0),(264,1,'2016-12-16 12:29:12','2016-12-16 12:29:12','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-16 12:29:12','2016-12-16 12:29:12','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/16/45-revision-v1/',0,'revision','',0),(265,1,'2016-12-16 12:30:01','2016-12-16 12:30:01','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-16 12:30:01','2016-12-16 12:30:01','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/16/45-revision-v1/',0,'revision','',0),(266,1,'2016-12-16 12:31:33','2016-12-16 12:31:33','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"20\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-16 12:31:33','2016-12-16 12:31:33','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/16/45-revision-v1/',0,'revision','',0),(267,1,'2016-12-16 12:35:16','2016-12-16 12:35:16','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-16 12:35:16','2016-12-16 12:35:16','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/16/45-revision-v1/',0,'revision','',0),(268,1,'2016-12-16 12:36:58','2016-12-16 12:36:58','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"38\" text_font_size_phone=\"34\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"38\" text_font_size_phone=\"34\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-16 12:36:58','2016-12-16 12:36:58','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/16/45-revision-v1/',0,'revision','',0),(269,1,'2016-12-16 12:39:52','2016-12-16 12:39:52','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-16 12:39:52','2016-12-16 12:39:52','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/16/45-revision-v1/',0,'revision','',0),(270,1,'2016-12-17 16:47:52','2016-12-17 16:47:52','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-17 16:47:52','2016-12-17 16:47:52','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/17/45-revision-v1/',0,'revision','',0),(271,1,'2016-12-17 16:49:14','2016-12-17 16:49:14','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"25px||25px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\n\nPath of the True Self\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nFinding wholeness through connecting to one’s essential nature\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\n\n&nbsp;\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>The way you feel</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\n\nconnects you to the truth of who you are\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\n\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\n\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>By being yourself</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\n\nYou put something wonderful in the world\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\n\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.\n\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\n\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>A Spiritual Mother</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\n\nGrounded and present\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\n\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\n\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\n\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\n\nRespond to\nevery call\nThat excites\nyour spirit\n<span style=\"font-size: 18px;\">- Rumi</span>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\n\n<h1>Meditation &amp; Mindfulness Instruction</h1>\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\n\n<h1>Relationship Counseling</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\n\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\n\n<h1>Individual Counseling</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\n\nYou had the power\nall along, my dear\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\n\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\n\nI assist women already on a spiritual path to turbo-charge their lives.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','HP-17Dec16','','publish','closed','closed','','hp-17dec16','','','2016-12-17 16:49:14','2016-12-17 16:49:14','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/hp-17dec16/',0,'et_pb_layout','',0),(275,1,'2016-12-22 04:35:39','2016-12-22 04:35:39','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nconnects you to the truth of who you are\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\r\n\r\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\r\n\r\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-22 04:35:39','2016-12-22 04:35:39','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/22/45-revision-v1/',0,'revision','',0),(272,1,'2016-12-17 16:51:43','2016-12-17 16:51:43','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nPath of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nFinding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\n&nbsp;</p>\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\n<p>\r\nconnects you to the truth of who you are</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.</p>\r\n<p>The person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.</p>\r\n<p>Years of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\nYou put something wonderful in the world</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.</p>\r\n<p>Hitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.</p>\r\n<p>I have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\n<p>\r\nGrounded and present</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.</p>\r\n<p>As your ally in healing, my intention is to hold a space where mystical transformation can occur.</p>\r\n<p>As I attune myself to my client’s energies, I am able to receive the frequency of her heart.</p>\r\n<p>As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\nRespond to<br />\r\nevery call<br />\r\nThat excites<br />\r\nyour spirit<br />\r\n<span style=\"font-size: 18px;\">- Rumi</span></p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.</p>\r\n<p>I help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\nYou had the power<br />\r\nall along, my dear<br />\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.</p>\r\n<p>My ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.</p>\r\n<p>I assist women already on a spiritual path to turbo-charge their lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2016-12-17 16:51:43','2016-12-17 16:51:43','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2016/12/17/45-revision-v1/',0,'revision','',0),(273,1,'2016-12-17 16:52:15','2016-12-17 16:52:15','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\n\n<p>\nPath of the True Self</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nFinding wholeness through connecting to one’s essential nature</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\n\n<p>\n&nbsp;</p>\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" /></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>The way you feel</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\n\n<p>\nconnects you to the truth of who you are</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.</p>\n<p>The person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.</p>\n<p>Years of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>By being yourself</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\n\n<p>\nYou put something wonderful in the world</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.</p>\n<p>Hitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy awoke within my soul.</p>\n<p>I have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" /></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" /></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>A Spiritual Mother</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\n\n<p>\nGrounded and present</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.</p>\n<p>As your ally in healing, my intention is to hold a space where mystical transformation can occur.</p>\n<p>As I attune myself to my client’s energies, I am able to receive the frequency of her heart.</p>\n<p>As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\n\n<p>\nRespond to<br />\nevery call<br />\nThat excites<br />\nyour spirit<br />\n<span style=\"font-size: 18px;\">- Rumi</span></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\n\n<h1>Meditation &amp; Mindfulness Instruction</h1>\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\n\n<h1>Relationship Counseling</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.</p>\n<p>I help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\n\n<h1>Individual Counseling</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\n\n<p>\nYou had the power<br />\nall along, my dear<br />\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.</p>\n<p>My ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.</p>\n<p>I assist women already on a spiritual path to turbo-charge their lives.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','HP-17Dec16-V2','','publish','closed','closed','','hp-17dec16-v2','','','2016-12-17 16:52:15','2016-12-17 16:52:15','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/hp-17dec16-v2/',0,'et_pb_layout','',0),(277,1,'2017-01-05 14:27:48','2017-01-05 14:27:48','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\n\nPath of the True Self\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nFinding wholeness through connecting to one’s essential nature\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\n\n&nbsp;\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>The way you feel</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\n\nconnects you to the truth of who you are\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.\n\nThe person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.\n\nYears of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>By being yourself</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\n\nYou put something wonderful in the world\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\n\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy.\n\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\n\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>A Spiritual Mother</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\n\nGrounded and present\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\n\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\n\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\n\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\n\nRespond to\nevery call\nThat excites\nyour spirit\n<span style=\"font-size: 18px;\">- Rumi</span>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\n\n<h1>Meditation &amp; Mindfulness Instruction</h1>\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\n\n<h1>Relationship Counseling</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\n\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\n\n<h1>Individual Counseling</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\n\nYou had the power\nall along, my dear\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\n\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\n\nI assist women already on a spiritual path to turbo-charge their lives.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','HP_5-Jan-17','','publish','closed','closed','','hp_5-jan-17','','','2017-01-05 14:27:48','2017-01-05 14:27:48','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/hp_5-jan-17/',0,'et_pb_layout','',0),(278,1,'2017-01-05 14:29:58','2017-01-05 14:29:58','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Do you hear</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Your heart know things</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The universe has shaken you</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life. This may be because of a divorce or loss of a job. Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three. She is looking for someone to help her heal and to guide her in creating a new life. I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','publish','closed','closed','','what-is-spiritual-counseling','','','2017-02-08 07:16:25','2017-02-08 07:16:25','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?page_id=278',0,'page','',0),(503,1,'2017-02-08 07:16:25','2017-02-08 07:16:25','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Do you hear</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Your heart know things</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The universe has shaken you</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life. This may be because of a divorce or loss of a job. Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three. She is looking for someone to help her heal and to guide her in creating a new life. I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-02-08 07:16:25','2017-02-08 07:16:25','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/08/278-revision-v1/',0,'revision','',0),(281,1,'2017-01-05 14:33:05','2017-01-05 14:33:05','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>She believed she could,</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nso she did\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 14:33:05','2017-01-05 14:33:05','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0),(279,1,'2017-01-05 14:29:58','2017-01-05 14:29:58','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou put something wonderful in the world\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.\r\n\r\nHitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy.\r\n\r\nI have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nGrounded and present\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.\r\n\r\nAs your ally in healing, my intention is to hold a space where mystical transformation can occur.\r\n\r\nAs I attune myself to my client’s energies, I am able to receive the frequency of her heart.\r\n\r\nAs a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 14:29:58','2017-01-05 14:29:58','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0),(280,1,'2017-02-06 23:35:06','2017-02-06 23:35:06','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Do you hear</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Your heart know things</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The universe has shaken you</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life. This may be because of a divorce or loss of a job. Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three. She is looking for someone to help her heal and to guide her in creating a new life. I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-autosave-v1','','','2017-02-06 23:35:06','2017-02-06 23:35:06','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-autosave-v1/',0,'revision','',0),(282,1,'2017-01-05 14:35:24','2017-01-05 14:35:24',' ','','','publish','closed','closed','','282','','','2017-02-07 10:37:55','2017-02-07 10:37:55','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?p=282',4,'nav_menu_item','',0),(284,1,'2017-01-05 14:46:47','2017-01-05 14:46:47','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"50px\" custom_css_main_element=\"letter-spacing: -2px !important;\"]\r\n\r\n<h1>She believed she could,</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nso she did\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 14:46:47','2017-01-05 14:46:47','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0),(285,1,'2017-01-05 14:47:57','2017-01-05 14:47:57','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"50px\" custom_css_main_element=\"font-size: 50px !important;||letter-spacing: -2px !important;\"]\r\n\r\n<h1>She believed she could,</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nso she did\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 14:47:57','2017-01-05 14:47:57','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0),(286,1,'2017-01-05 14:49:13','2017-01-05 14:49:13','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"50px\" custom_css_main_element=\"font-size: 50px !important;||letter-spacing: -2px !important;\" header_letter_spacing=\"-2px\"]\r\n\r\n<h1>She believed she could,</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nso she did\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 14:49:13','2017-01-05 14:49:13','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0),(289,1,'2017-01-05 15:29:44','2017-01-05 15:29:44','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative.  She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames. \r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.  \r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 15:29:44','2017-01-05 15:29:44','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0),(288,1,'2017-01-05 15:26:35','2017-01-05 15:26:35','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative.  She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames. \r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.  \r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 15:26:35','2017-01-05 15:26:35','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0);
INSERT INTO `wp_upmt_posts` VALUES (287,1,'2017-01-05 15:20:52','2017-01-05 15:20:52','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"50px\" custom_css_main_element=\"font-size: 50px !important;||letter-spacing: -2px !important;\" header_letter_spacing=\"-2px\"]\r\n\r\n<h1>She believed she could,</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nso she did\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames. \r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.  \r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRespond to\r\nevery call\r\nThat excites\r\nyour spirit\r\n<span style=\"font-size: 18px;\">- Rumi</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\nGuided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.\r\n\r\nI help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYou had the power\r\nall along, my dear\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.\r\n\r\nMy ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.\r\n\r\nI assist women already on a spiritual path to turbo-charge their lives.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 15:20:52','2017-01-05 15:20:52','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0),(290,1,'2017-01-05 15:30:27','2017-01-05 15:30:27','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative.  She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames. \r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.  \r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 15:30:27','2017-01-05 15:30:27','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0),(291,1,'2017-01-05 15:31:05','2017-01-05 15:31:05','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative.  She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames. \r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.  \r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 15:31:05','2017-01-05 15:31:05','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0),(292,1,'2017-01-05 15:34:07','2017-01-05 15:34:07','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative.  She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames. \r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.  \r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 15:34:07','2017-01-05 15:34:07','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0),(293,1,'2017-01-05 15:35:37','2017-01-05 15:35:37','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative.  She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames. \r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.  \r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 15:35:37','2017-01-05 15:35:37','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0),(294,1,'2017-01-05 16:37:44','2017-01-05 16:37:44','','life-calling','','inherit','open','closed','','life-calling','','','2017-01-05 16:37:44','2017-01-05 16:37:44','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling.jpg',0,'attachment','image/jpeg',0),(295,1,'2017-01-05 16:39:07','2017-01-05 16:39:07','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright wp-image-294 size-full\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling.jpg\" width=\"560\" height=\"435\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative.  She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 16:39:07','2017-01-05 16:39:07','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0),(296,1,'2017-01-05 16:40:54','2017-01-05 16:40:54','','life-calling','','inherit','open','closed','','life-calling-2','','','2017-01-05 16:40:54','2017-01-05 16:40:54','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-1.jpg',0,'attachment','image/jpeg',0),(297,1,'2017-01-05 16:41:41','2017-01-05 16:41:41','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-1.jpg\" alt=\"\" style=\"border-radius: 50px;\" width=\"560\" height=\"415\" class=\"alignright size-full wp-image-296\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative.  She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 16:41:41','2017-01-05 16:41:41','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0),(298,1,'2017-01-05 16:42:54','2017-01-05 16:42:54','','life-calling','','inherit','open','closed','','life-calling-3','','','2017-01-05 16:42:54','2017-01-05 16:42:54','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg',0,'attachment','image/jpeg',0),(299,1,'2017-01-05 16:43:23','2017-01-05 16:43:23','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" style=\"border-radius: 50px;\" class=\"alignright size-full wp-image-298\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative.  She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 16:43:23','2017-01-05 16:43:23','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0),(300,1,'2017-01-05 16:45:51','2017-01-05 16:45:51','','heart-knows','','inherit','open','closed','','heart-knows','','','2017-01-05 16:45:51','2017-01-05 16:45:51','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg',0,'attachment','image/jpeg',0),(301,1,'2017-01-05 16:46:22','2017-01-05 16:46:22','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" style=\"border-radius: 50px;\" class=\"alignright size-full wp-image-298\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" style=\"border-radius: 50px;\" alt=\"\" width=\"550\" height=\"394\" class=\"alignright size-full wp-image-300\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative.  She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 16:46:22','2017-01-05 16:46:22','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0),(302,1,'2017-01-05 16:49:20','2017-01-05 16:49:20','','awaken','','inherit','open','closed','','awaken','','','2017-01-05 16:49:20','2017-01-05 16:49:20','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg',0,'attachment','image/jpeg',0),(303,1,'2017-01-05 16:49:50','2017-01-05 16:49:50','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" style=\"border-radius: 50px;\" class=\"alignright size-full wp-image-298\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" style=\"border-radius: 50px;\" alt=\"\" width=\"550\" height=\"394\" class=\"alignright size-full wp-image-300\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative.  She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" style=\"border-radius: 50px;\" alt=\"\" width=\"550\" height=\"530\" class=\"alignright size-full wp-image-302\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-05 16:49:50','2017-01-05 16:49:50','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/05/278-revision-v1/',0,'revision','',0),(304,1,'2017-01-05 17:12:05','2017-01-05 17:12:05','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-1.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\n\nPath of the True Self\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nFinding wholeness through connecting to one’s essential nature\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\n\n&nbsp;\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" style=\"border-radius: 50px;\" class=\"alignright size-full wp-image-298\" />\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>Do you hear</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\n\nYour life calling to you?\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\n\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>Your heart know things</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\n\nThat you mind can not explain\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\n\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" style=\"border-radius: 50px;\" alt=\"\" width=\"550\" height=\"394\" class=\"alignright size-full wp-image-300\" />\n\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\n\nShe believed she could,\n<span style=\"font-size: 24px;\">so she did</span>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nMy ideal client is sensitive, gifted and creative.  She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>The universe has shaken you</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\n\nTo awaken you\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames.\n\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\n\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" style=\"border-radius: 50px;\" alt=\"\" width=\"550\" height=\"530\" class=\"alignright size-full wp-image-302\" />\n\n[/et_pb_text][/et_pb_column][/et_pb_section]','IP_5-Jan-17','','publish','closed','closed','','ip_5-jan-17','','','2017-01-05 17:12:05','2017-01-05 17:12:05','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/ip_5-jan-17/',0,'et_pb_layout','',0),(339,1,'2017-01-31 22:14:32','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2017-01-31 22:14:32','0000-00-00 00:00:00','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?p=339',0,'post','',0),(306,1,'2017-01-24 09:32:03','2017-01-24 09:32:03','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2017-01-24 09:32:03','2017-01-24 09:32:03','',2,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/24/2-revision-v1/',0,'revision','',0),(307,1,'2017-01-24 09:34:13','2017-01-24 09:34:13','','header-img-3','','inherit','open','closed','','header-img-3','','','2017-01-24 09:34:13','2017-01-24 09:34:13','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg',0,'attachment','image/jpeg',0),(308,1,'2017-01-24 09:34:46','2017-01-24 09:34:46','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nPath of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nFinding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\n&nbsp;</p>\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The way you feel</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\n<p>\r\nconnects you to the truth of who you are</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nTwenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.</p>\r\n<p>The person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.</p>\r\n<p>Years of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>By being yourself</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\nYou put something wonderful in the world</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nWhile this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.</p>\r\n<p>Hitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy.</p>\r\n<p>I have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>A Spiritual Mother</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\n<p>\r\nGrounded and present</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nIn our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.</p>\r\n<p>As your ally in healing, my intention is to hold a space where mystical transformation can occur.</p>\r\n<p>As I attune myself to my client’s energies, I am able to receive the frequency of her heart.</p>\r\n<p>As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\nRespond to<br />\r\nevery call<br />\r\nThat excites<br />\r\nyour spirit<br />\r\n<span style=\"font-size: 18px;\">- Rumi</span></p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Meditation &amp; Mindfulness Instruction</h1>\r\n<p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Relationship Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nProblem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.</p>\r\n<p>I help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]\r\n\r\n<h1>Individual Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nOne-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\nYou had the power<br />\r\nall along, my dear<br />\r\n<span style=\"font-size: 18px;\">- Glinda the Good Witch</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy goal is to help women like myself replace self-sabotaging patterns with a recipe for success.</p>\r\n<p>My ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.</p>\r\n<p>I assist women already on a spiritual path to turbo-charge their lives.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Home','','inherit','closed','closed','','45-revision-v1','','','2017-01-24 09:34:46','2017-01-24 09:34:46','',45,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/24/45-revision-v1/',0,'revision','',0),(309,1,'2017-01-24 09:35:36','2017-01-24 09:35:36','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nPath of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nFinding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\n&nbsp;</p>\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" style=\"border-radius: 50px;\" class=\"alignright size-full wp-image-298\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\n<p>\r\nYour life calling to you?</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.</p>\r\n<p>It focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\nThat you mind can not explain</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.</p>\r\n<p>It focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" style=\"border-radius: 50px;\" alt=\"\" width=\"550\" height=\"394\" class=\"alignright size-full wp-image-300\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\n<p>\r\nShe believed she could,<br />\r\n<span style=\"font-size: 24px;\">so she did</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy ideal client is sensitive, gifted and creative.  She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\nTo awaken you</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames.</p>\r\n<p>She may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.</p>\r\n<p>Whatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" style=\"border-radius: 50px;\" alt=\"\" width=\"550\" height=\"530\" class=\"alignright size-full wp-image-302\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','WHAT IS SPIRITUAL COUNSELING','','inherit','closed','closed','','278-revision-v1','','','2017-01-24 09:35:36','2017-01-24 09:35:36','',278,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/24/278-revision-v1/',0,'revision','',0),(310,1,'2017-01-31 00:45:22','2017-01-31 00:45:22','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\n\n<p>\nPath of the True Self</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nFinding wholeness through connecting to one’s essential nature</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\n\n<p>\n&nbsp;</p>\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" style=\"border-radius: 50px;\" class=\"alignright size-full wp-image-298\" /></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>Do you hear</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\n\n<p>\nYour life calling to you?</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.</p>\n<p>It focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>Your heart know things</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\n\n<p>\nThat you mind can not explain</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.</p>\n<p>It focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" style=\"border-radius: 50px;\" alt=\"\" width=\"550\" height=\"394\" class=\"alignright size-full wp-image-300\" /></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\n\n<p>\nShe believed she could,<br />\n<span style=\"font-size: 24px;\">so she did</span></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nMy ideal client is sensitive, gifted and creative.  She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>The universe has shaken you</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\n\n<p>\nTo awaken you</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames.</p>\n<p>She may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.</p>\n<p>Whatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.</p>\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" style=\"border-radius: 50px;\" alt=\"\" width=\"550\" height=\"530\" class=\"alignright size-full wp-image-302\" /></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_section]','What is SC? 1-30-17 7:45p','','publish','closed','closed','','what-is-sc-1-30-17-745p','','','2017-01-31 00:45:22','2017-01-31 00:45:22','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/what-is-sc-1-30-17-745p/',0,'et_pb_layout','',0),(311,1,'2017-01-31 00:50:36','2017-01-31 00:50:36','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/fountain.jpg\" alt=\"\" width=\"560\" height=\"480\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"20px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n<h1>When you learn how to listen</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n<h1>I am an <span style=\"color: #b08445;\">E M P A T H</span>, which means:</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n<h1><span style=\"color: #cca56e;\">E</span>mpowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n<h1><span style=\"color: #cca56e;\">M</span>aternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n<h1><span style=\"color: #cca56e;\">P</span>assion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n<h1><span style=\"color: #cca56e;\">A</span>uthenticity</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n<h1><span style=\"color: #cca56e;\">T</span>ruth</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n<h1><span style=\"color: #cca56e;\">H</span>eart</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nThe beginning and end of our spiritual journey - one, true sanctuary &amp; home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself.\r\nAccept Yourself.\r\nValue Yourself.\r\nLove Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/dr-joseph-murphy-2.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','publish','closed','closed','','about-me','','','2017-02-08 07:11:21','2017-02-08 07:11:21','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?page_id=311',0,'page','',0),(312,1,'2017-01-31 00:50:36','2017-01-31 00:50:36','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nPath of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nFinding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\n&nbsp;</p>\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" style=\"border-radius: 50px;\" class=\"alignright size-full wp-image-298\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Do you hear</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\n<p>\r\nMy Soul Honors Your Soul</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.</p>\r\n<p>It focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\nThat you mind can not explain</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.</p>\r\n<p>It focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" style=\"border-radius: 50px;\" alt=\"\" width=\"550\" height=\"394\" class=\"alignright size-full wp-image-300\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\n<p>\r\nShe believed she could,<br /><span style=\"font-size: 24px;\">so she did</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy ideal client is sensitive, gifted and creative.  She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\nTo awaken you</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames.</p>\r\n<p>She may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.</p>\r\n<p>Whatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" style=\"border-radius: 50px;\" alt=\"\" width=\"550\" height=\"530\" class=\"alignright size-full wp-image-302\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-01-31 00:50:36','2017-01-31 00:50:36','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/311-revision-v1/',0,'revision','',0),(313,1,'2017-01-31 00:53:05','2017-01-31 00:53:05','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nPath of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nFinding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\n&nbsp;</p>\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" style=\"border-radius: 50px;\" class=\"alignright size-full wp-image-298\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>: Namaste</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\n<p>\r\nMy Soul Honors Your Soul</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.</p>\r\n<p>It focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\nThat you mind can not explain</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.</p>\r\n<p>It focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" style=\"border-radius: 50px;\" alt=\"\" width=\"550\" height=\"394\" class=\"alignright size-full wp-image-300\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\n<p>\r\nShe believed she could,<br /><span style=\"font-size: 24px;\">so she did</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy ideal client is sensitive, gifted and creative.  She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\nTo awaken you</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames.</p>\r\n<p>She may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.</p>\r\n<p>Whatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" style=\"border-radius: 50px;\" alt=\"\" width=\"550\" height=\"530\" class=\"alignright size-full wp-image-302\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-01-31 00:53:05','2017-01-31 00:53:05','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/311-revision-v1/',0,'revision','',0),(314,1,'2017-01-31 00:55:21','2017-01-31 00:55:21','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>\r\nPath of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nFinding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\n&nbsp;</p>\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" style=\"border-radius: 50px;\" class=\"alignright size-full wp-image-298\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>: Namaste</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\n<p>\r\nMy Soul Honors Your Soul</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires.  Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.</p>\r\n<p>In spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.”  With help, I found my way back to the truth of my own soul.  My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Your heart know things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\nThat you mind can not explain</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.</p>\r\n<p>It focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" style=\"border-radius: 50px;\" alt=\"\" width=\"550\" height=\"394\" class=\"alignright size-full wp-image-300\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\n<p>\r\nShe believed she could,<br /><span style=\"font-size: 24px;\">so she did</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy ideal client is sensitive, gifted and creative.  She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>\r\nTo awaken you</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life.  This may be because of a divorce or loss of a job.   Someone close to her may have died or her house may have gone up in flames.</p>\r\n<p>She may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.</p>\r\n<p>Whatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three.  She is looking for someone to help her heal and to guide her in creating a new life.  I am that person.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>\r\n<img src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" style=\"border-radius: 50px;\" alt=\"\" width=\"550\" height=\"530\" class=\"alignright size-full wp-image-302\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-01-31 00:55:21','2017-01-31 00:55:21','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/311-revision-v1/',0,'revision','',0),(316,1,'2017-01-31 00:59:16','2017-01-31 00:59:16','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"] Path of the True Self [/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Finding wholeness through connecting to one’s essential nature [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]   [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] <img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" /> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>: Namaste</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"] My Soul Honors Your Soul [/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1><strong>EMPOWERMENT</strong></h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1><strong>MATERNAL</strong></h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] <img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" /> [/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] My ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul. [/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The universe has shaken you</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"] To awaken you [/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life. This may be because of a divorce or loss of a job. Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three. She is looking for someone to help her heal and to guide her in creating a new life. I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] <img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" /> [/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-01-31 00:59:16','2017-01-31 00:59:16','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/311-revision-v1/',0,'revision','',0),(317,1,'2017-01-31 01:00:04','2017-01-31 01:00:04','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"] Path of the True Self [/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Finding wholeness through connecting to one’s essential nature [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] <img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" /> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Namaste</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"] My Soul Honors Your Soul [/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1><strong>EMPOWERMENT</strong></h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1><strong>MATERNAL</strong></h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] <img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" /> [/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] My ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul. [/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The universe has shaken you</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"] To awaken you [/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life. This may be because of a divorce or loss of a job. Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three. She is looking for someone to help her heal and to guide her in creating a new life. I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] <img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" /> [/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-01-31 01:00:04','2017-01-31 01:00:04','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/311-revision-v1/',0,'revision','',0),(319,1,'2017-01-31 01:03:40','2017-01-31 01:03:40','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Namaste</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nMy Soul Honors Your Soul\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1><strong>MATERNAL</strong></h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life. This may be because of a divorce or loss of a job. Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three. She is looking for someone to help her heal and to guide her in creating a new life. I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-01-31 01:03:40','2017-01-31 01:03:40','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/311-revision-v1/',0,'revision','',0),(318,1,'2017-01-31 01:01:36','2017-01-31 01:01:36','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Namaste</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nMy Soul Honors Your Soul\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1><strong>EMPOWERMENT</strong></h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Namaste</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1><strong>MATERNAL</strong></h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life. This may be because of a divorce or loss of a job. Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three. She is looking for someone to help her heal and to guide her in creating a new life. I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-01-31 01:01:36','2017-01-31 01:01:36','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/311-revision-v1/',0,'revision','',0),(320,1,'2017-01-31 01:04:11','2017-01-31 01:04:11','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Namaste</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nMy Soul Honors Your Soul\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1><strong>MATERNAL</strong></h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life. This may be because of a divorce or loss of a job. Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three. She is looking for someone to help her heal and to guide her in creating a new life. I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-01-31 01:04:11','2017-01-31 01:04:11','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/311-revision-v1/',0,'revision','',0),(321,1,'2017-01-31 01:04:40','2017-01-31 01:04:40','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Namaste</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nMy Soul Honors Your Soul\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The universe has shaken you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life. This may be because of a divorce or loss of a job. Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three. She is looking for someone to help her heal and to guide her in creating a new life. I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-01-31 01:04:40','2017-01-31 01:04:40','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/311-revision-v1/',0,'revision','',0),(323,1,'2017-01-31 01:41:20','2017-01-31 01:41:20','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Namaste</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nMy Soul Honors Your Soul\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>A Mentor</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nIs Someone Who…\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. When a jesuit priest a death-experience caused him to abandon the church, he found Church of Divine Science, the leader of the New Thought Movement.\r\n\r\nDr. Murphy was a mystic and healer who penned two (?)  books on the power of the mind. X years later, his instinct that I would become a writer and mystic came to fruition.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-01-31 01:41:20','2017-01-31 01:41:20','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/311-revision-v1/',0,'revision','',0),(322,1,'2017-01-31 01:12:07','2017-01-31 01:12:07','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Namaste</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nMy Soul Honors Your Soul\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The universe has shaken you</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life. This may be because of a divorce or loss of a job. Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three. She is looking for someone to help her heal and to guide her in creating a new life. I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-01-31 01:12:07','2017-01-31 01:12:07','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/311-revision-v1/',0,'revision','',0),(324,1,'2017-01-31 01:47:41','2017-01-31 01:47:41','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Namaste</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nMy Soul Honors Your Soul\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAt 21 my father died and I lost a primary support system. As a result, I experienced a tumultuous period in my personal life. Along my path to equanimity, I met a gifted spiritual teacher who would become a XXX guide.\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-01-31 01:47:41','2017-01-31 01:47:41','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/311-revision-v1/',0,'revision','',0),(326,1,'2017-01-31 01:58:22','2017-01-31 01:58:22','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Namaste</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nMy Soul Honors Your Soul\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-01-31 01:58:22','2017-01-31 01:58:22','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/311-revision-v1/',0,'revision','',0),(325,1,'2017-01-31 01:54:43','2017-01-31 01:54:43','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Namaste</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nMy Soul Honors Your Soul\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAt 21 my father died and I lost a primary support system. As a result, I experienced a tumultuous period in my personal life. Along my path to equanimity, I met a gifted spiritual teacher who would become a XXX guide.\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-01-31 01:54:43','2017-01-31 01:54:43','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/311-revision-v1/',0,'revision','',0),(340,1,'2017-01-31 22:19:28','2017-01-31 22:19:28','<p>[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]</p><p>Path of the True Self</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Finding wholeness through connecting to one’s essential nature</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]<br /> [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" /></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Namaste</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]</p><p>My Soul Honors Your Soul</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>In childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.</p><p>In spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Empowerment</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>Having discovered the source of my personal power</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>I offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.</p><p>[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Maternal</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>I am the Spiritual Mother</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>a safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" /></p><p>[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]</p><p>Be Yourself. Accept Yourself.<br /> Value Yourself. Love Yourself.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Because I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.</p><p>Hitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.</p><p> </p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Mentor: Somebody who allows you to</h1><p> </p><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>See the hope in yourself</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Dr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.</p><p>In our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.</p><p> </p><p> </p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX</p><p> </p><p> </p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" /></p><p>[/et_pb_text][/et_pb_column][/et_pb_section]</p>','Service Page','','publish','closed','closed','','service-page','','','2017-01-31 22:19:28','2017-01-31 22:19:28','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/service-page/',0,'et_pb_layout','',0),(332,1,'2017-01-31 05:01:27','2017-01-31 05:01:27','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Do you hear</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Your heart know things</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The universe has shaken you</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life. This may be because of a divorce or loss of a job. Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three. She is looking for someone to help her heal and to guide her in creating a new life. I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Approach','','trash','closed','closed','','approach-2__trashed','','','2017-01-31 05:01:55','2017-01-31 05:01:55','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?page_id=332',0,'page','',0),(327,1,'2017-01-31 02:01:38','2017-01-31 02:01:38','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/relaxed-sessions.jpg\" alt=\"\" width=\"560\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Love being you</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEmbrace your “you”ness\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSessions are relaxed. They take place over the phone or using FaceTime or Skype. They are approximately an hour and a half in length. The first thirty minutes is unstructured – we fly around, exploring current events and moods in the life of my client and choosing an area to focus on.\r\n\r\nThe next thirty to forty-five minutes will be spent exploring the issue we’ve chosen.\r\n\r\nThe last fifteen to thirty minutes is for recapping the session and, in some cases, creating some gentle “homework” for the client – exercises designed specifically for the individual to support healing and expansion.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The things you are passionate about</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nare not random, they are your calling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIncreased vitality, greater joy and the awakening of multiple forms of creativity are among the benefits you will experience.\r\n\r\nYou will also experience a new perspective on life and living that will result in new strategies for solving problems, more positive ways of viewing life-events and even “aha” moments – moments of crystal clarity where former mysteries suddenly reveal themselves as part of a pattern and thus make perfect sense.\r\n\r\nMost of all, you will begin to realize how perfect your life really is and has always been.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/autumn-trees-1.jpg\" alt=\"\" width=\"550\" height=\"504\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nJust by being yourself, you put something\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The door is wide open,</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nDon’t go back to sleep. –Rumi\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI am loving, intuitive and spiritually aligned, all of which add up to my being deeply attuned to my client.\r\n\r\nThe benefit for the client is that she feels heard and understood and more than that: because I am an active listener, I am alert for the jewel of information that my client will <em>(always</em>) inadvertently drop in my lap.\r\n\r\nWhen this happens, I polish that jewel and hold it up to my client’s eyes so that she can see and appreciate the beauty and treasures within her own soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/open-door.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Approach','','publish','closed','closed','','approach','','','2017-02-08 07:11:53','2017-02-08 07:11:53','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?page_id=327',0,'page','',0),(329,1,'2017-01-31 02:12:22','2017-01-31 02:12:22','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\nLove being you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEmbrace your “you”ness\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSessions are relaxed. They take place over the phone or using FaceTime or Skype. They are approximately an hour and a half in length. The first thirty minutes is unstructured – we fly around, exploring current events and moods in the life of my client and choosing an area to focus on.\r\n\r\nThe next thirty to forty-five minutes will be spent exploring the issue we’ve chosen.\r\n\r\nThe last fifteen to thirty minutes is for recapping the session and, in some cases, creating some gentle “homework” for the client – exercises designed specifically for the individual to support healing and expansion.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\nThe things you are passionate about\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nare not random, they are your calling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIncreased vitality, greater joy and the awakening of multiple forms of creativity are among the benefits you will experience.\r\n\r\nYou will also experience a new perspective on life and living that will result in new strategies for solving problems, more positive ways of viewing life-events and even “aha” moments – moments of crystal clarity where former mysteries suddenly reveal themselves as part of a pattern and thus make perfect sense.\r\n\r\nMost of all, you will begin to realize how perfect your life really is and has always been.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nNamaste; My soul honors your soul\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The universe has shaken you</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy personality is that of the Spiritual Mother: a warm, nurturing and healing ally. I hold safe space for transformation to occur and guide you to find and stay connected to the path of your True Self.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Approach','','inherit','closed','closed','','327-revision-v1','','','2017-01-31 02:12:22','2017-01-31 02:12:22','',327,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/327-revision-v1/',0,'revision','',0),(328,1,'2017-01-31 02:01:38','2017-01-31 02:01:38','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\nLove being you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEmbrace your “you”ness\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSessions are relaxed. They take place over the phone or using FaceTime or Skype. They are approximately an hour and a half in length. The first thirty minutes is unstructured – we fly around, exploring current events and moods in the life of my client and choosing an area to focus on.\r\n\r\nThe next thirty to forty-five minutes will be spent exploring the issue we’ve chosen.\r\n\r\nThe last fifteen to thirty minutes is for recapping the session and, in some cases, creating some gentle “homework” for the client – exercises designed specifically for the individual to support healing and expansion.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Your heart know things</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The universe has shaken you</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life. This may be because of a divorce or loss of a job. Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three. She is looking for someone to help her heal and to guide her in creating a new life. I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Approach','','inherit','closed','closed','','327-revision-v1','','','2017-01-31 02:01:38','2017-01-31 02:01:38','',327,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/327-revision-v1/',0,'revision','',0),(331,1,'2017-01-31 02:18:34','2017-01-31 02:18:34','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\nLove being you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEmbrace your “you”ness\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSessions are relaxed. They take place over the phone or using FaceTime or Skype. They are approximately an hour and a half in length. The first thirty minutes is unstructured – we fly around, exploring current events and moods in the life of my client and choosing an area to focus on.\r\n\r\nThe next thirty to forty-five minutes will be spent exploring the issue we’ve chosen.\r\n\r\nThe last fifteen to thirty minutes is for recapping the session and, in some cases, creating some gentle “homework” for the client – exercises designed specifically for the individual to support healing and expansion.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\nThe things you are passionate about\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nare not random, they are your calling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIncreased vitality, greater joy and the awakening of multiple forms of creativity are among the benefits you will experience.\r\n\r\nYou will also experience a new perspective on life and living that will result in new strategies for solving problems, more positive ways of viewing life-events and even “aha” moments – moments of crystal clarity where former mysteries suddenly reveal themselves as part of a pattern and thus make perfect sense.\r\n\r\nMost of all, you will begin to realize how perfect your life really is and has always been.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nNamaste; My soul honors your soul\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The door is wide open,</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nDon’t go back to sleep. –Rumi\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI am loving, intuitive and spiritually aligned, all of which add up to my being deeply attuned to my client.\r\n\r\nThe benefit for the client is that she feels heard and understood and more than that: because I am an active listener, I am alert for the jewel of information that my client will <em>(always</em>) inadvertently drop in my lap.\r\n\r\nWhen this happens, I polish that jewel and hold it up to my client’s eyes so that she can see and appreciate the beauty and treasures within her own soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Approach','','inherit','closed','closed','','327-revision-v1','','','2017-01-31 02:18:34','2017-01-31 02:18:34','',327,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/327-revision-v1/',0,'revision','',0),(333,1,'2017-01-31 05:01:27','2017-01-31 05:01:27','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Do you hear</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nYour life calling to you?\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.\r\n\r\nIt focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Your heart know things</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nThat you mind can not explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSpiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.\r\n\r\nIt focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nShe believed she could,\r\n<span style=\"font-size: 24px;\">so she did</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The universe has shaken you</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nTo awaken you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client will almost certainly contact me during a time of transition and change in her life. This may be because of a divorce or loss of a job. Someone close to her may have died or her house may have gone up in flames.\r\n\r\nShe may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.\r\n\r\nWhatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three. She is looking for someone to help her heal and to guide her in creating a new life. I am that person.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Approach','','inherit','closed','closed','','332-revision-v1','','','2017-01-31 05:01:27','2017-01-31 05:01:27','',332,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/332-revision-v1/',0,'revision','',0),(334,1,'2017-01-31 05:02:26','2017-01-31 05:02:26',' ','','','publish','closed','closed','','334','','','2017-02-07 10:37:55','2017-02-07 10:37:55','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?p=334',3,'nav_menu_item','',0),(335,1,'2017-01-31 05:07:25','2017-01-31 05:07:25','{\n    \"et_divi[primary_nav_font_size]\": {\n        \"value\": \"14\",\n        \"type\": \"option\",\n        \"user_id\": 1\n    }\n}','','','trash','closed','closed','','f86ea688-5530-4c2a-8c3f-a5a8bafdfb01','','','2017-01-31 05:07:25','2017-01-31 05:07:25','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/f86ea688-5530-4c2a-8c3f-a5a8bafdfb01/',0,'customize_changeset','',0),(336,1,'2017-01-31 05:07:46','2017-01-31 05:07:46','{\n    \"et_divi[fixed_primary_nav_font_size]\": {\n        \"value\": \"14\",\n        \"type\": \"option\",\n        \"user_id\": 1\n    }\n}','','','trash','closed','closed','','355cf21e-86f9-4fe5-a682-317a7bac27a5','','','2017-01-31 05:07:46','2017-01-31 05:07:46','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/355cf21e-86f9-4fe5-a682-317a7bac27a5/',0,'customize_changeset','',0),(337,1,'2017-01-31 05:08:33','2017-01-31 05:08:33','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {border-radius: 0 0 50px 120px; line-height: 5px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 80px;}\n#et-info {text-align: center; float:none;}\n#main-footer {border-radius: 50px 80px 0 0; background-color:rgba(0, 2, 51, 0.82);}\n#footer-bottom {background-color: rgba(0, 0, 0, 0.0);}\n.footer-white{padding-bottom:0px;}\n#top-menu li {padding-right: 18px !important;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2017-01-31 05:08:33','2017-01-31 05:08:33','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/37-revision-v1/',0,'revision','',0),(338,1,'2017-01-31 05:13:39','2017-01-31 05:13:39','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {border-radius: 0 0 50px 120px; line-height: 5px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 80px;}\n#et-info {text-align: center; float:none;}\n#main-footer {border-radius: 50px 80px 0 0; background-color:rgba(0, 2, 51, 0.82);}\n#footer-bottom {background-color: rgba(0, 0, 0, 0.0);}\n.footer-white{padding-bottom:0px;}\n#top-menu li {padding-right: 16px !important;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2017-01-31 05:13:39','2017-01-31 05:13:39','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/37-revision-v1/',0,'revision','',0),(341,1,'2017-01-31 22:25:56','2017-01-31 22:25:56','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/mother-daughter.jpg\" alt=\"\" width=\"560\" height=\"300\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||10px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"off|tablet\"]\r\n<h1>Individual &amp; Couples Counseling</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\r\n<h1>Your heart knows things</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/counselling-1.jpg\" alt=\"\" width=\"550\" height=\"677\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"32\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_tablet=\"24\" text_font_size_phone=\"20\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am available for public speaking engagements.\r\nDetails available upon request.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','publish','closed','closed','','services','','','2017-02-08 07:14:30','2017-02-08 07:14:30','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?page_id=341',0,'page','',0),(465,1,'2017-02-07 09:13:08','2017-02-07 09:13:08','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\r\n\r\n<h1>Your heart knows things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am available for public speaking engagements. Details available upon request.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-07 09:13:08','2017-02-07 09:13:08','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-revision-v1/',0,'revision','',0),(462,1,'2017-02-07 09:06:23','2017-02-07 09:06:23','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour heart knows things\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am available for public speaking engagements. Details available upon request.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-07 09:06:23','2017-02-07 09:06:23','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-revision-v1/',0,'revision','',0),(343,1,'2017-01-31 22:28:31','2017-01-31 22:28:31','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\nIndividuals &amp; Couple Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nMy Soul Honors Your Soul\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:28:31','2017-01-31 22:28:31','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(342,1,'2017-01-31 22:25:56','2017-01-31 22:25:56','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Namaste</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nMy Soul Honors Your Soul\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:25:56','2017-01-31 22:25:56','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(380,1,'2017-02-06 05:23:40','2017-02-06 05:23:40','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am an EMPATH, which means:\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Passion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 05:23:40','2017-02-06 05:23:40','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0),(377,1,'2017-02-06 05:19:40','2017-02-06 05:19:40','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am an EMPATH, which means:\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Passion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion- blockage in the natural flow from Source that is our birthright.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 05:19:40','2017-02-06 05:19:40','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0),(345,1,'2017-01-31 22:30:06','2017-01-31 22:30:06','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"44px\"]\r\n\r\nIndividuals &amp; Couple Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nMy Soul Honors Your Soul\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:30:06','2017-01-31 22:30:06','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(347,1,'2017-01-31 22:32:00','2017-01-31 22:32:00','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:32:00','2017-01-31 22:32:00','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(346,1,'2017-01-31 22:31:25','2017-01-31 22:31:25','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"44px\"]\r\n\r\nIndividuals &amp; Couple Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:31:25','2017-01-31 22:31:25','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(348,1,'2017-01-31 22:33:08','2017-01-31 22:33:08','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:33:08','2017-01-31 22:33:08','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(349,1,'2017-01-31 22:33:53','2017-01-31 22:33:53','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:33:53','2017-01-31 22:33:53','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(352,1,'2017-01-31 22:42:37','2017-01-31 22:42:37','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\nYour heart knows things\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:42:37','2017-01-31 22:42:37','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(351,1,'2017-01-31 22:38:36','2017-01-31 22:38:36','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:38:36','2017-01-31 22:38:36','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(350,1,'2017-01-31 22:36:28','2017-01-31 22:36:28','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:36:28','2017-01-31 22:36:28','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(353,1,'2017-01-31 22:45:52','2017-01-31 22:45:52','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\nYour heart knows things\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Relationship Counseling</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRelationship Counseling. This can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:45:52','2017-01-31 22:45:52','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(354,1,'2017-01-31 22:47:24','2017-01-31 22:47:24','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\nYour heart knows things\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Relationship Counseling</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRelationship Counseling. This can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:47:24','2017-01-31 22:47:24','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(355,1,'2017-01-31 22:48:25','2017-01-31 22:48:25','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour heart knows things\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Relationship Counseling</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRelationship Counseling. This can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:48:25','2017-01-31 22:48:25','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(361,1,'2017-02-04 08:46:12','2017-02-04 08:46:12','<p>[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]</p><p>Path of the True Self</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Finding wholeness through connecting to one’s essential nature</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]</p><p> </p><p>[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" /></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><p>Love being you</p><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]</p><p>Embrace your “you”ness</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Sessions are relaxed. They take place over the phone or using FaceTime or Skype. They are approximately an hour and a half in length. The first thirty minutes is unstructured – we fly around, exploring current events and moods in the life of my client and choosing an area to focus on.</p><p>The next thirty to forty-five minutes will be spent exploring the issue we’ve chosen.</p><p>The last fifteen to thirty minutes is for recapping the session and, in some cases, creating some gentle “homework” for the client – exercises designed specifically for the individual to support healing and expansion.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><p>The things you are passionate about</p><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>are not random, they are your calling</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Increased vitality, greater joy and the awakening of multiple forms of creativity are among the benefits you will experience.</p><p>You will also experience a new perspective on life and living that will result in new strategies for solving problems, more positive ways of viewing life-events and even “aha” moments – moments of crystal clarity where former mysteries suddenly reveal themselves as part of a pattern and thus make perfect sense.</p><p>Most of all, you will begin to realize how perfect your life really is and has always been.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" /></p><p>[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]</p><p>Just by being yourself, you put something <br /><br /></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>My ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>The door is wide open,</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>Don’t go back to sleep. –Rumi</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>I am loving, intuitive and spiritually aligned, all of which add up to my being deeply attuned to my client.</p><p>The benefit for the client is that she feels heard and understood and more than that: because I am an active listener, I am alert for the jewel of information that my client will <em>(always</em>) inadvertently drop in my lap.</p><p>When this happens, I polish that jewel and hold it up to my client’s eyes so that she can see and appreciate the beauty and treasures within her own soul.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" /></p><p>[/et_pb_text][/et_pb_column][/et_pb_section]</p>','Approach 2-4 3:46am','','publish','closed','closed','','approach-2-4-346am','','','2017-02-04 08:46:12','2017-02-04 08:46:12','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/approach-2-4-346am/',0,'et_pb_layout','',0),(356,1,'2017-01-31 22:49:04','2017-01-31 22:49:04','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour heart knows things\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Relationship Counseling</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:49:04','2017-01-31 22:49:04','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(358,1,'2017-01-31 22:51:19','2017-01-31 22:51:19','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour heart knows things\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nWhat my clients are saying:\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>“You’re a woman of many talents and gifts.”</li>\r\n 	<li>“You’re a magician!”</li>\r\n 	<li>“Thank you for the fine work that you do.”</li>\r\n 	<li>“Since working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.”</li>\r\n</ul>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:51:19','2017-01-31 22:51:19','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(357,1,'2017-01-31 22:50:22','2017-01-31 22:50:22','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour heart knows things\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Relationship Counseling</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nWhat my clients are saying:\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>“You’re a woman of many talents and gifts.”</li>\r\n 	<li>“You’re a magician!”</li>\r\n 	<li>“Thank you for the fine work that you do.”</li>\r\n 	<li>“Since working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.”</li>\r\n</ul>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:50:22','2017-01-31 22:50:22','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(360,1,'2017-01-31 22:52:58','2017-01-31 22:52:58','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour heart knows things\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nWhat my clients are saying:\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>“You’re a woman of many talents and gifts.”</li>\r\n 	<li>“You’re a magician!”</li>\r\n 	<li>“Thank you for the fine work that you do.”</li>\r\n 	<li>“Since working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.”</li>\r\n</ul>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am available for public speaking engagements. Details available upon request.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:52:58','2017-01-31 22:52:58','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(359,1,'2017-01-31 22:51:58','2017-01-31 22:51:58','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour heart knows things\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nWhat my clients are saying:\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>“You’re a woman of many talents and gifts.”</li>\r\n 	<li>“You’re a magician!”</li>\r\n 	<li>“Thank you for the fine work that you do.”</li>\r\n 	<li>“Since working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.”</li>\r\n</ul>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am available for public speaking engagements. Details available upon request.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-01-31 22:51:58','2017-01-31 22:51:58','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/01/31/341-revision-v1/',0,'revision','',0),(362,1,'2017-02-04 08:46:16','2017-02-04 08:46:16','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\nLove being you\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEmbrace your “you”ness\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSessions are relaxed. They take place over the phone or using FaceTime or Skype. They are approximately an hour and a half in length. The first thirty minutes is unstructured – we fly around, exploring current events and moods in the life of my client and choosing an area to focus on.\r\n\r\nThe next thirty to forty-five minutes will be spent exploring the issue we’ve chosen.\r\n\r\nThe last fifteen to thirty minutes is for recapping the session and, in some cases, creating some gentle “homework” for the client – exercises designed specifically for the individual to support healing and expansion.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\nThe things you are passionate about\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nare not random, they are your calling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIncreased vitality, greater joy and the awakening of multiple forms of creativity are among the benefits you will experience.\r\n\r\nYou will also experience a new perspective on life and living that will result in new strategies for solving problems, more positive ways of viewing life-events and even “aha” moments – moments of crystal clarity where former mysteries suddenly reveal themselves as part of a pattern and thus make perfect sense.\r\n\r\nMost of all, you will begin to realize how perfect your life really is and has always been.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nJust by being yourself, you put something\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The door is wide open,</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nDon’t go back to sleep. –Rumi\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI am loving, intuitive and spiritually aligned, all of which add up to my being deeply attuned to my client.\r\n\r\nThe benefit for the client is that she feels heard and understood and more than that: because I am an active listener, I am alert for the jewel of information that my client will <em>(always</em>) inadvertently drop in my lap.\r\n\r\nWhen this happens, I polish that jewel and hold it up to my client’s eyes so that she can see and appreciate the beauty and treasures within her own soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Approach','','inherit','closed','closed','','327-revision-v1','','','2017-02-04 08:46:16','2017-02-04 08:46:16','',327,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/04/327-revision-v1/',0,'revision','',0),(363,1,'2017-02-06 00:31:17','2017-02-06 00:31:17','<p>[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]</p><p>Path of the True Self</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Finding wholeness through connecting to one’s essential nature</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]<br /> [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" /></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Namaste</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]</p><p>My Soul Honors Your Soul</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>In childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.</p><p>In spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Empowerment</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>Having discovered the source of my personal power</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>I offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.</p><p>[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Maternal</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>I am the Spiritual Mother</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>a safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" /></p><p>[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]</p><p>Be Yourself. Accept Yourself.<br /> Value Yourself. Love Yourself.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Because I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.</p><p>Hitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.</p><p> </p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Mentor: Somebody who allows you to</h1><p> </p><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>See the hope in yourself</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Dr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.</p><p>In our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.</p><p> </p><p> </p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX</p><p> </p><p> </p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" /></p><p>[/et_pb_text][/et_pb_column][/et_pb_section]</p>','About Me 2/5 7:31','','publish','closed','closed','','about-me-25-731','','','2017-02-06 00:31:17','2017-02-06 00:31:17','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/about-me-25-731/',0,'et_pb_layout','',0),(364,1,'2017-02-06 00:46:27','2017-02-06 00:46:27','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 00:46:27','2017-02-06 00:46:27','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0),(398,1,'2017-02-07 03:43:01','2017-02-07 03:43:01','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am an EMPATH, which means:\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Passion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>AUTHENTICITY\r\n</strong>Because I value my own uniqueness,\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>TRUTH\r\n</strong>My intention is to share the Path of the True Self with my client.\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>HEART\r\n</strong>The beginning and end of our spiritual journey – our one, true sanctuary and home.\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 03:43:01','2017-02-07 03:43:01','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(366,1,'2017-02-06 00:48:12','2017-02-06 00:48:12','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 00:48:12','2017-02-06 00:48:12','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0),(367,1,'2017-02-06 00:48:51','2017-02-06 00:48:51','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 00:48:51','2017-02-06 00:48:51','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0);
INSERT INTO `wp_upmt_posts` VALUES (368,1,'2017-02-06 00:49:32','2017-02-06 00:49:32','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 00:49:32','2017-02-06 00:49:32','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0),(370,1,'2017-02-06 00:54:06','2017-02-06 00:54:06','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 00:54:06','2017-02-06 00:54:06','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0),(369,1,'2017-02-06 00:51:04','2017-02-06 00:51:04','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 00:51:04','2017-02-06 00:51:04','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0),(376,1,'2017-02-06 01:21:39','2017-02-06 01:21:39','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Passion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion--blockage in the natural flow from Source that is our birthright. My goal is to connect my clients to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Authenticity</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I value my own uniqueness. I support and encourage my clients in valuing her/his.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAnd because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 01:21:39','2017-02-06 01:21:39','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0),(373,1,'2017-02-06 01:03:19','2017-02-06 01:03:19','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Passion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion--blockage in the natural flow from Source that is our birthright. My goal is to connect my clients to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Authenticity</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I value my own uniqueness. I support and encourage my clients in valuing her/his.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAnd because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 01:03:19','2017-02-06 01:03:19','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0),(372,1,'2017-02-06 01:02:46','2017-02-06 01:02:46','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Passion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion--blockage in the natural flow from Source that is our birthright. My goal is to connect my clients to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Authenticity</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nBecause I value my own uniqueness. I support and encourage my clients in valuing her/his.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAnd because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 01:02:46','2017-02-06 01:02:46','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0),(371,1,'2017-02-06 01:01:12','2017-02-06 01:01:12','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Passion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion--blockage in the natural flow from Source that is our birthright. My goal is to connect my clients to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Authenticity</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nBecause I value my own uniqueness. I support and encourage my clients in valuing her/his.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAnd because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 01:01:12','2017-02-06 01:01:12','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0),(374,1,'2017-02-06 01:18:40','2017-02-06 01:18:40','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Passion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion--blockage in the natural flow from Source that is our birthright. My goal is to connect my clients to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Authenticity</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I value my own uniqueness. I support and encourage my clients in valuing her/his.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAnd because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 01:18:40','2017-02-06 01:18:40','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0),(375,1,'2017-02-06 01:19:42','2017-02-06 01:19:42','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Passion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion--blockage in the natural flow from Source that is our birthright. My goal is to connect my clients to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Authenticity</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I value my own uniqueness. I support and encourage my clients in valuing her/his.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAnd because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 01:19:42','2017-02-06 01:19:42','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0),(379,1,'2017-02-06 05:20:51','2017-02-06 05:20:51','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am an EMPATH, which means:\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Passion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 05:20:51','2017-02-06 05:20:51','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0),(381,1,'2017-02-06 05:25:41','2017-02-06 05:25:41','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am an EMPATH, which means:\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Passion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>AUTHENTICITY\r\n</strong>Because I value my own uniqueness,\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 05:25:41','2017-02-06 05:25:41','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0),(382,1,'2017-02-06 05:26:50','2017-02-06 05:26:50','<p>[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]</p><p>Path of the True Self</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Finding wholeness through connecting to one’s essential nature</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]<br /> [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" /></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]</p><p>When you learn how to listen</p><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]</p><p>Everyone is your guru</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>In childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.</p><p>In spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>I am an EMPATH, which means:</p><p>[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Empowerment</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>Having discovered the source of my personal power</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>I offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.</p><p>[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Maternal</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>I am the Spiritual Mother</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>a safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence</p><p>[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Passion</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>As a recovering depressive, I have learned that depression is actually frustrated passion.</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Blockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><strong>AUTHENTICITY<br /> </strong>Because I value my own uniqueness,<br /> I support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.</p><p> </p><p>[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]</p><p>Be Yourself. Accept Yourself.<br /> Value Yourself. Love Yourself.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Negative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.</p><p>Hitting bottom taught me that self-acceptance is not a luxury but a necessity.</p><p>Starting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Mentor: Somebody who allows you to</h1><p> </p><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>See the hope in yourself</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Dr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.</p><p>In our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.</p><p> </p><p> </p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX</p><p> </p><p> </p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" /></p><p>[/et_pb_text][/et_pb_column][/et_pb_section]</p>','About Me 2-6-17 12:26','','publish','closed','closed','','about-me-2-6-17-1226','','','2017-02-06 05:26:50','2017-02-06 05:26:50','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/about-me-2-6-17-1226/',0,'et_pb_layout','',0),(383,1,'2017-02-06 05:27:27','2017-02-06 05:27:27','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am an EMPATH, which means:\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Passion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>AUTHENTICITY\r\n</strong>Because I value my own uniqueness,\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 05:27:27','2017-02-06 05:27:27','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0),(405,1,'2017-02-07 04:41:12','2017-02-07 04:41:12','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n<h1>When you learn how to listen</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am an EMPATH, which means:\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Passion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>AUTHENTICITY\r\n</strong>Because I value my own uniqueness,\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>TRUTH\r\n</strong>My intention is to share the Path of the True Self with my client.\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>HEART\r\n</strong>The beginning and end of our spiritual journey – our one, true sanctuary and home.\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 04:41:12','2017-02-07 04:41:12','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(384,1,'2017-02-06 05:29:07','2017-02-06 05:29:07','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am an EMPATH, which means:\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Passion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>AUTHENTICITY\r\n</strong>Because I value my own uniqueness,\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>TRUTH\r\n</strong>My intention is to share the Path of the True Self with my client.\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>HEART\r\n</strong>The beginning and end of our spiritual journey – our one, true sanctuary and home.\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-06 05:29:07','2017-02-06 05:29:07','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/06/311-revision-v1/',0,'revision','',0),(463,1,'2017-02-07 09:07:27','2017-02-07 09:07:27','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour heart knows things\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am available for public speaking engagements. Details available upon request.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-07 09:07:27','2017-02-07 09:07:27','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-revision-v1/',0,'revision','',0),(433,1,'2017-02-07 07:40:15','2017-02-07 07:40:15','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\n\nPath of the True Self\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nFinding wholeness through connecting to one’s essential nature\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\n\n&nbsp;\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>Love being you</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\n\nEmbrace your “you”ness\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nSessions are relaxed. They take place over the phone or using FaceTime or Skype. They are approximately an hour and a half in length. The first thirty minutes is unstructured – we fly around, exploring current events and moods in the life of my client and choosing an area to focus on.\n\nThe next thirty to forty-five minutes will be spent exploring the issue we’ve chosen.\n\nThe last fifteen to thirty minutes is for recapping the session and, in some cases, creating some gentle “homework” for the client – exercises designed specifically for the individual to support healing and expansion.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>The things you are passionate about</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\n\nare not random, they are your calling\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nIncreased vitality, greater joy and the awakening of multiple forms of creativity are among the benefits you will experience.\n\nYou will also experience a new perspective on life and living that will result in new strategies for solving problems, more positive ways of viewing life-events and even “aha” moments – moments of crystal clarity where former mysteries suddenly reveal themselves as part of a pattern and thus make perfect sense.\n\nMost of all, you will begin to realize how perfect your life really is and has always been.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"594\">\n\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\n\nJust by being yourself, you put something\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>The door is wide open,</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\n\nDon’t go back to sleep. –Rumi\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nI am loving, intuitive and spiritually aligned, all of which add up to my being deeply attuned to my client.\n\nThe benefit for the client is that she feels heard and understood and more than that: because I am an active listener, I am alert for the jewel of information that my client will <em>(always</em>) inadvertently drop in my lap.\n\nWhen this happens, I polish that jewel and hold it up to my client’s eyes so that she can see and appreciate the beauty and treasures within her own soul.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/open-door.jpg\" alt=\"\" width=\"550\" height=\"530\">\n\n[/et_pb_text][/et_pb_column][/et_pb_section]','Approach','','inherit','closed','closed','','327-autosave-v1','','','2017-02-07 07:40:15','2017-02-07 07:40:15','',327,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/327-autosave-v1/',0,'revision','',0),(387,1,'2017-02-06 05:47:57','2017-02-06 05:47:57','','Swan, alternate','','inherit','open','closed','','swan-alternate','','','2017-02-06 05:47:57','2017-02-06 05:47:57','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/Swan-alternate.jpg',0,'attachment','image/jpeg',0),(388,1,'2017-02-06 05:48:39','2017-02-06 05:48:39','','Swan, another alternate','','inherit','open','closed','','swan-another-alternate','','','2017-02-06 05:48:39','2017-02-06 05:48:39','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/Swan-another-alternate.jpg',0,'attachment','image/jpeg',0),(395,1,'2017-02-07 03:30:12','2017-02-07 03:30:12',' ','','','publish','closed','closed','','395','','','2017-02-07 10:37:55','2017-02-07 10:37:55','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?p=395',5,'nav_menu_item','',0),(396,1,'2017-02-07 03:30:11','2017-02-07 03:30:11',' ','','','publish','closed','closed','','396','','','2017-02-07 10:37:55','2017-02-07 10:37:55','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?p=396',2,'nav_menu_item','',0),(397,1,'2017-02-07 03:29:31','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2017-02-07 03:29:31','0000-00-00 00:00:00','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?p=397',1,'nav_menu_item','',0),(400,1,'2017-02-07 04:32:15','2017-02-07 04:32:15','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am an EMPATH, which means:\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Passion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>AUTHENTICITY\r\n</strong>Because I value my own uniqueness,\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','How Does Spiritual Counseling Work','','inherit','closed','closed','','399-revision-v1','','','2017-02-07 04:32:15','2017-02-07 04:32:15','',399,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/399-revision-v1/',0,'revision','',0),(401,1,'2017-02-07 04:33:23','2017-02-07 04:33:23','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"on\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_comments=\"on\" show_pagination=\"on\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" include_categories=\"1\"] [/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" remove_border=\"off\"] [/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]','Blog','','publish','closed','closed','','blog','','','2017-02-07 04:36:30','2017-02-07 04:36:30','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?page_id=401',0,'page','',0),(402,1,'2017-02-07 04:33:23','2017-02-07 04:33:23','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"on\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_comments=\"on\" show_pagination=\"on\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" remove_border=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Blog','','inherit','closed','closed','','401-revision-v1','','','2017-02-07 04:33:23','2017-02-07 04:33:23','',401,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/401-revision-v1/',0,'revision','',0),(403,1,'2017-02-07 04:36:08','2017-02-07 04:36:08','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"on\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_comments=\"on\" show_pagination=\"on\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" include_categories=\"1\"] [/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" remove_border=\"off\"] [/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]','Blog','','inherit','closed','closed','','401-revision-v1','','','2017-02-07 04:36:08','2017-02-07 04:36:08','',401,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/401-revision-v1/',0,'revision','',0),(404,1,'2017-02-07 04:37:14','2017-02-07 04:37:14',' ','','','publish','closed','closed','','404','','','2017-02-07 10:37:55','2017-02-07 10:37:55','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?p=404',7,'nav_menu_item','',0),(406,1,'2017-02-07 04:42:23','2017-02-07 04:42:23','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am an EMPATH, which means:\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Passion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>AUTHENTICITY\r\n</strong>Because I value my own uniqueness,\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>TRUTH\r\n</strong>My intention is to share the Path of the True Self with my client.\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>HEART\r\n</strong>The beginning and end of our spiritual journey – our one, true sanctuary and home.\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 04:42:23','2017-02-07 04:42:23','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(407,1,'2017-02-07 05:45:51','2017-02-07 05:45:51','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\n\nPath of the True Self\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nFinding wholeness through connecting to one’s essential nature\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\n\n\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\n\n<h1>When you learn how to listen</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\n\nEveryone is your guru\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\n\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\n\n<h1>I am an <span style=\"color:#b08445;\">E M P A T H</span>, which means:</h1>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\n\n<h1><span style=\"color:#cca56e;\">E</span>mpowerment</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\n\nHaving discovered the source of my personal power\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\n\n<h1>Maternal</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\n\nI am the Spiritual Mother\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\n\n<h1>Passion</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\n\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\n\n<h1>Authenticity</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\n\nBecause I value my own uniqueness,\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\n\n<h1>Truth</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\n\nMy intention is to share the Path of the True Self with my client.\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\n\n&nbsp;\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\n\n<h1>Heart</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\n\nThe beginning and end of our spiritual journey - one, true sanctuary & home.\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\n\nBe Yourself.\nAccept Yourself.\nValue Yourself.\nLove Yourself.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\n\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\n\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>Mentor: Somebody who allows you to</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\n\nSee the beauty in yourself\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood.&nbsp;As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the&nbsp;New Thought Movement Church of Divine Science.\n\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\n\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\n\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-autosave-v1','','','2017-02-07 05:45:51','2017-02-07 05:45:51','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-autosave-v1/',0,'revision','',0),(408,1,'2017-02-07 05:02:31','2017-02-07 05:02:31','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>I am an EM PA TH, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Passion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>AUTHENTICITY\r\n</strong>Because I value my own uniqueness,\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>TRUTH\r\n</strong>My intention is to share the Path of the True Self with my client.\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>HEART\r\n</strong>The beginning and end of our spiritual journey – our one, true sanctuary and home.\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 05:02:31','2017-02-07 05:02:31','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(410,1,'2017-02-07 05:12:28','2017-02-07 05:12:28','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an E M P A T H, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"32px\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"22\" text_line_height=\"1.2em\" custom_margin=\"||30px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Passion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>AUTHENTICITY\r\n</strong>Because I value my own uniqueness,\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>TRUTH\r\n</strong>My intention is to share the Path of the True Self with my client.\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>HEART\r\n</strong>The beginning and end of our spiritual journey – our one, true sanctuary and home.\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 05:12:28','2017-02-07 05:12:28','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(409,1,'2017-02-07 05:07:44','2017-02-07 05:07:44','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an E M P A T H, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Passion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>AUTHENTICITY\r\n</strong>Because I value my own uniqueness,\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>TRUTH\r\n</strong>My intention is to share the Path of the True Self with my client.\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>HEART\r\n</strong>The beginning and end of our spiritual journey – our one, true sanctuary and home.\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 05:07:44','2017-02-07 05:07:44','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(419,1,'2017-02-07 05:35:42','2017-02-07 05:35:42','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an E M P A T H, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Passion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Authenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Truth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Heart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nThe beginning and end of our spiritual journey – our one, true sanctuary and home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself.\r\nAccept Yourself.\r\nValue Yourself.\r\nLove Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood.&nbsp;As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the&nbsp;New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 05:35:42','2017-02-07 05:35:42','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(411,1,'2017-02-07 05:22:43','2017-02-07 05:22:43','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an E M P A T H, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||40px|\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Authenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||40px|\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Truth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Passion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||40px|\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Heart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nThe beginning and end of our spiritual journey – our one, true sanctuary and home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 05:22:43','2017-02-07 05:22:43','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(416,1,'2017-02-07 05:31:04','2017-02-07 05:31:04','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an E M P A T H, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||20px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||20px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||20px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Passion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||20px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Authenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||20px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Truth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||20px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Heart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nThe beginning and end of our spiritual journey – our one, true sanctuary and home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 05:31:04','2017-02-07 05:31:04','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(415,1,'2017-02-07 05:27:28','2017-02-07 05:27:28','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an E M P A T H, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||20px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||20px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Passion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||20px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Authenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||20px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Truth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||20px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Heart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||20px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nThe beginning and end of our spiritual journey – our one, true sanctuary and home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 05:27:28','2017-02-07 05:27:28','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(414,1,'2017-02-07 05:26:20','2017-02-07 05:26:20','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an E M P A T H, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||20px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||20px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Passion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||20px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Authenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||20px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Truth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||20px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Heart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||20px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nThe beginning and end of our spiritual journey – our one, true sanctuary and home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 05:26:20','2017-02-07 05:26:20','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(413,1,'2017-02-07 05:24:39','2017-02-07 05:24:39','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an E M P A T H, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Passion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Authenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Truth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Heart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nThe beginning and end of our spiritual journey – our one, true sanctuary and home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 05:24:39','2017-02-07 05:24:39','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(412,1,'2017-02-07 05:23:26','2017-02-07 05:23:26','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an E M P A T H, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||40px|\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||40px|\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Passion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||40px|\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Authenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Truth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Heart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"24\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||20px|\" text_font_size_tablet=\"20\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nThe beginning and end of our spiritual journey – our one, true sanctuary and home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 05:23:26','2017-02-07 05:23:26','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(417,1,'2017-02-07 05:32:43','2017-02-07 05:32:43','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an E M P A T H, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Passion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Authenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Truth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Heart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nThe beginning and end of our spiritual journey – our one, true sanctuary and home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 05:32:43','2017-02-07 05:32:43','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(418,1,'2017-02-07 05:33:46','2017-02-07 05:33:46','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an E M P A T H, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Passion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Authenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Truth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Heart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nThe beginning and end of our spiritual journey – our one, true sanctuary and home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself.\r\nAccept Yourself.\r\nValue Yourself.\r\nLove Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 05:33:46','2017-02-07 05:33:46','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(420,1,'2017-02-07 05:37:14','2017-02-07 05:37:14','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an E M P A T H, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Passion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Authenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Truth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Heart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nThe beginning and end of our spiritual journey - one, true sanctuary and home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself.\r\nAccept Yourself.\r\nValue Yourself.\r\nLove Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood.&nbsp;As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the&nbsp;New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 05:37:14','2017-02-07 05:37:14','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(421,1,'2017-02-07 05:37:42','2017-02-07 05:37:42','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an E M P A T H, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Passion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Authenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Truth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1>Heart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nThe beginning and end of our spiritual journey - one, true sanctuary & home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself.\r\nAccept Yourself.\r\nValue Yourself.\r\nLove Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood.&nbsp;As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the&nbsp;New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 05:37:42','2017-02-07 05:37:42','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(422,1,'2017-02-07 05:46:52','2017-02-07 05:46:52','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an <span style=\"color:#b08445;\">E M P A T H</span>, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">E</span>mpowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">M</span>aternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">P</span>assion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">A</span>uthenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">T</span>ruth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">H</span>eart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nThe beginning and end of our spiritual journey - one, true sanctuary & home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself.\r\nAccept Yourself.\r\nValue Yourself.\r\nLove Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood.&nbsp;As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the&nbsp;New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 05:46:52','2017-02-07 05:46:52','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(423,1,'2017-02-07 06:04:47','2017-02-07 06:04:47','','dr-joseph-murphy','','inherit','open','closed','','dr-joseph-murphy','','','2017-02-07 06:04:47','2017-02-07 06:04:47','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/dr-joseph-murphy.jpg',0,'attachment','image/jpeg',0),(424,1,'2017-02-07 06:05:55','2017-02-07 06:05:55','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an <span style=\"color:#b08445;\">E M P A T H</span>, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">E</span>mpowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">M</span>aternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">P</span>assion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">A</span>uthenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">T</span>ruth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">H</span>eart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nThe beginning and end of our spiritual journey - one, true sanctuary & home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself.\r\nAccept Yourself.\r\nValue Yourself.\r\nLove Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood.&nbsp;As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the&nbsp;New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/dr-joseph-murphy.jpg\" alt=\"\" width=\"550\" height=\"530\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 06:05:55','2017-02-07 06:05:55','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(425,1,'2017-02-07 06:23:40','2017-02-07 06:23:40','','dr-joseph-murphy','','inherit','open','closed','','dr-joseph-murphy-2','','','2017-02-07 06:23:40','2017-02-07 06:23:40','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/dr-joseph-murphy-1.jpg',0,'attachment','image/jpeg',0),(430,1,'2017-02-07 06:34:38','2017-02-07 06:34:38','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/fountain.jpg\" alt=\"\" width=\"560\" height=\"480\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an <span style=\"color:#b08445;\">E M P A T H</span>, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">E</span>mpowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">M</span>aternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">P</span>assion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">A</span>uthenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">T</span>ruth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">H</span>eart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nThe beginning and end of our spiritual journey - one, true sanctuary & home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself.\r\nAccept Yourself.\r\nValue Yourself.\r\nLove Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood.&nbsp;As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the&nbsp;New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/dr-joseph-murphy-2.jpg\" alt=\"\" width=\"550\" height=\"530\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 06:34:38','2017-02-07 06:34:38','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(426,1,'2017-02-07 06:24:05','2017-02-07 06:24:05','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an <span style=\"color:#b08445;\">E M P A T H</span>, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">E</span>mpowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">M</span>aternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">P</span>assion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">A</span>uthenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">T</span>ruth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">H</span>eart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nThe beginning and end of our spiritual journey - one, true sanctuary & home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself.\r\nAccept Yourself.\r\nValue Yourself.\r\nLove Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood.&nbsp;As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the&nbsp;New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/dr-joseph-murphy-1.jpg\" alt=\"\" width=\"550\" height=\"530\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 06:24:05','2017-02-07 06:24:05','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(427,1,'2017-02-07 06:30:05','2017-02-07 06:30:05','','dr-joseph-murphy','','inherit','open','closed','','dr-joseph-murphy-3','','','2017-02-07 06:30:05','2017-02-07 06:30:05','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/dr-joseph-murphy-2.jpg',0,'attachment','image/jpeg',0),(428,1,'2017-02-07 06:30:19','2017-02-07 06:30:19','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an <span style=\"color:#b08445;\">E M P A T H</span>, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">E</span>mpowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">M</span>aternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">P</span>assion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">A</span>uthenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">T</span>ruth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">H</span>eart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nThe beginning and end of our spiritual journey - one, true sanctuary & home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself.\r\nAccept Yourself.\r\nValue Yourself.\r\nLove Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood.&nbsp;As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the&nbsp;New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/dr-joseph-murphy-2.jpg\" alt=\"\" width=\"550\" height=\"530\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 06:30:19','2017-02-07 06:30:19','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(429,1,'2017-02-07 06:33:32','2017-02-07 06:33:32','','fountain','','inherit','open','closed','','fountain','','','2017-02-07 06:33:32','2017-02-07 06:33:32','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/fountain.jpg',0,'attachment','image/jpeg',0),(431,1,'2017-02-07 06:35:14','2017-02-07 06:35:14','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/fountain.jpg\" alt=\"\" width=\"560\" height=\"480\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"30px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an <span style=\"color:#b08445;\">E M P A T H</span>, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">E</span>mpowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">M</span>aternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">P</span>assion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">A</span>uthenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">T</span>ruth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">H</span>eart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nThe beginning and end of our spiritual journey - one, true sanctuary & home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself.\r\nAccept Yourself.\r\nValue Yourself.\r\nLove Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood.&nbsp;As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the&nbsp;New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/dr-joseph-murphy-2.jpg\" alt=\"\" width=\"550\" height=\"530\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 06:35:14','2017-02-07 06:35:14','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(432,1,'2017-02-07 06:35:38','2017-02-07 06:35:38','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/fountain.jpg\" alt=\"\" width=\"560\" height=\"480\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"20px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]\r\n\r\n<h1>When you learn how to listen</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]\r\n\r\n<h1>I am an <span style=\"color:#b08445;\">E M P A T H</span>, which means:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">E</span>mpowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">M</span>aternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">P</span>assion</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright.&nbsp;My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">A</span>uthenticity</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBecause I value my own uniqueness,\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">T</span>ruth</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nMy intention is to share the Path of the True Self with my client.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]\r\n\r\n<h1><span style=\"color:#cca56e;\">H</span>eart</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nThe beginning and end of our spiritual journey - one, true sanctuary & home.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOn the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself.\r\nAccept Yourself.\r\nValue Yourself.\r\nLove Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the beauty in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood.&nbsp;As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the&nbsp;New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/dr-joseph-murphy-2.jpg\" alt=\"\" width=\"550\" height=\"530\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','About Me','','inherit','closed','closed','','311-revision-v1','','','2017-02-07 06:35:38','2017-02-07 06:35:38','',311,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/311-revision-v1/',0,'revision','',0),(434,1,'2017-02-07 06:38:36','2017-02-07 06:38:36','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Love being you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEmbrace your “you”ness\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSessions are relaxed. They take place over the phone or using FaceTime or Skype. They are approximately an hour and a half in length. The first thirty minutes is unstructured – we fly around, exploring current events and moods in the life of my client and choosing an area to focus on.\r\n\r\nThe next thirty to forty-five minutes will be spent exploring the issue we’ve chosen.\r\n\r\nThe last fifteen to thirty minutes is for recapping the session and, in some cases, creating some gentle “homework” for the client – exercises designed specifically for the individual to support healing and expansion.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The things you are passionate about</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nare not random, they are your calling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIncreased vitality, greater joy and the awakening of multiple forms of creativity are among the benefits you will experience.\r\n\r\nYou will also experience a new perspective on life and living that will result in new strategies for solving problems, more positive ways of viewing life-events and even “aha” moments – moments of crystal clarity where former mysteries suddenly reveal themselves as part of a pattern and thus make perfect sense.\r\n\r\nMost of all, you will begin to realize how perfect your life really is and has always been.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nJust by being yourself, you put something\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The door is wide open,</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nDon’t go back to sleep. –Rumi\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI am loving, intuitive and spiritually aligned, all of which add up to my being deeply attuned to my client.\r\n\r\nThe benefit for the client is that she feels heard and understood and more than that: because I am an active listener, I am alert for the jewel of information that my client will <em>(always</em>) inadvertently drop in my lap.\r\n\r\nWhen this happens, I polish that jewel and hold it up to my client’s eyes so that she can see and appreciate the beauty and treasures within her own soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Approach','','inherit','closed','closed','','327-revision-v1','','','2017-02-07 06:38:36','2017-02-07 06:38:36','',327,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/327-revision-v1/',0,'revision','',0),(435,1,'2017-02-07 07:33:34','2017-02-07 07:33:34','','open-door','','inherit','open','closed','','open-door','','','2017-02-07 07:33:34','2017-02-07 07:33:34','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/open-door.jpg',0,'attachment','image/jpeg',0),(436,1,'2017-02-07 07:34:18','2017-02-07 07:34:18','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Love being you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEmbrace your “you”ness\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSessions are relaxed. They take place over the phone or using FaceTime or Skype. They are approximately an hour and a half in length. The first thirty minutes is unstructured – we fly around, exploring current events and moods in the life of my client and choosing an area to focus on.\r\n\r\nThe next thirty to forty-five minutes will be spent exploring the issue we’ve chosen.\r\n\r\nThe last fifteen to thirty minutes is for recapping the session and, in some cases, creating some gentle “homework” for the client – exercises designed specifically for the individual to support healing and expansion.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The things you are passionate about</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nare not random, they are your calling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIncreased vitality, greater joy and the awakening of multiple forms of creativity are among the benefits you will experience.\r\n\r\nYou will also experience a new perspective on life and living that will result in new strategies for solving problems, more positive ways of viewing life-events and even “aha” moments – moments of crystal clarity where former mysteries suddenly reveal themselves as part of a pattern and thus make perfect sense.\r\n\r\nMost of all, you will begin to realize how perfect your life really is and has always been.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nJust by being yourself, you put something\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The door is wide open,</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nDon’t go back to sleep. –Rumi\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI am loving, intuitive and spiritually aligned, all of which add up to my being deeply attuned to my client.\r\n\r\nThe benefit for the client is that she feels heard and understood and more than that: because I am an active listener, I am alert for the jewel of information that my client will <em>(always</em>) inadvertently drop in my lap.\r\n\r\nWhen this happens, I polish that jewel and hold it up to my client’s eyes so that she can see and appreciate the beauty and treasures within her own soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/open-door.jpg\" alt=\"\" width=\"550\" height=\"530\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Approach','','inherit','closed','closed','','327-revision-v1','','','2017-02-07 07:34:18','2017-02-07 07:34:18','',327,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/327-revision-v1/',0,'revision','',0),(437,1,'2017-02-07 07:38:05','2017-02-07 07:38:05','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Love being you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEmbrace your “you”ness\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSessions are relaxed. They take place over the phone or using FaceTime or Skype. They are approximately an hour and a half in length. The first thirty minutes is unstructured – we fly around, exploring current events and moods in the life of my client and choosing an area to focus on.\r\n\r\nThe next thirty to forty-five minutes will be spent exploring the issue we’ve chosen.\r\n\r\nThe last fifteen to thirty minutes is for recapping the session and, in some cases, creating some gentle “homework” for the client – exercises designed specifically for the individual to support healing and expansion.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The things you are passionate about</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nare not random, they are your calling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIncreased vitality, greater joy and the awakening of multiple forms of creativity are among the benefits you will experience.\r\n\r\nYou will also experience a new perspective on life and living that will result in new strategies for solving problems, more positive ways of viewing life-events and even “aha” moments – moments of crystal clarity where former mysteries suddenly reveal themselves as part of a pattern and thus make perfect sense.\r\n\r\nMost of all, you will begin to realize how perfect your life really is and has always been.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"494\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nJust by being yourself, you put something\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The door is wide open,</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nDon’t go back to sleep. –Rumi\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI am loving, intuitive and spiritually aligned, all of which add up to my being deeply attuned to my client.\r\n\r\nThe benefit for the client is that she feels heard and understood and more than that: because I am an active listener, I am alert for the jewel of information that my client will <em>(always</em>) inadvertently drop in my lap.\r\n\r\nWhen this happens, I polish that jewel and hold it up to my client’s eyes so that she can see and appreciate the beauty and treasures within her own soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/open-door.jpg\" alt=\"\" width=\"550\" height=\"530\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Approach','','inherit','closed','closed','','327-revision-v1','','','2017-02-07 07:38:05','2017-02-07 07:38:05','',327,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/327-revision-v1/',0,'revision','',0),(438,1,'2017-02-07 07:41:38','2017-02-07 07:41:38','','autumn-trees','','inherit','open','closed','','autumn-trees','','','2017-02-07 07:41:38','2017-02-07 07:41:38','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/autumn-trees.jpg',0,'attachment','image/jpeg',0),(439,1,'2017-02-07 07:42:19','2017-02-07 07:42:19','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Love being you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEmbrace your “you”ness\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSessions are relaxed. They take place over the phone or using FaceTime or Skype. They are approximately an hour and a half in length. The first thirty minutes is unstructured – we fly around, exploring current events and moods in the life of my client and choosing an area to focus on.\r\n\r\nThe next thirty to forty-five minutes will be spent exploring the issue we’ve chosen.\r\n\r\nThe last fifteen to thirty minutes is for recapping the session and, in some cases, creating some gentle “homework” for the client – exercises designed specifically for the individual to support healing and expansion.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The things you are passionate about</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nare not random, they are your calling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIncreased vitality, greater joy and the awakening of multiple forms of creativity are among the benefits you will experience.\r\n\r\nYou will also experience a new perspective on life and living that will result in new strategies for solving problems, more positive ways of viewing life-events and even “aha” moments – moments of crystal clarity where former mysteries suddenly reveal themselves as part of a pattern and thus make perfect sense.\r\n\r\nMost of all, you will begin to realize how perfect your life really is and has always been.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/autumn-trees.jpg\" alt=\"\" width=\"550\" height=\"494\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nJust by being yourself, you put something\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The door is wide open,</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nDon’t go back to sleep. –Rumi\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI am loving, intuitive and spiritually aligned, all of which add up to my being deeply attuned to my client.\r\n\r\nThe benefit for the client is that she feels heard and understood and more than that: because I am an active listener, I am alert for the jewel of information that my client will <em>(always</em>) inadvertently drop in my lap.\r\n\r\nWhen this happens, I polish that jewel and hold it up to my client’s eyes so that she can see and appreciate the beauty and treasures within her own soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/open-door.jpg\" alt=\"\" width=\"550\" height=\"530\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Approach','','inherit','closed','closed','','327-revision-v1','','','2017-02-07 07:42:19','2017-02-07 07:42:19','',327,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/327-revision-v1/',0,'revision','',0),(440,1,'2017-02-07 07:44:09','2017-02-07 07:44:09','','autumn-trees','','inherit','open','closed','','autumn-trees-2','','','2017-02-07 07:44:09','2017-02-07 07:44:09','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/autumn-trees-1.jpg',0,'attachment','image/jpeg',0),(441,1,'2017-02-07 07:44:39','2017-02-07 07:44:39','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Love being you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEmbrace your “you”ness\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSessions are relaxed. They take place over the phone or using FaceTime or Skype. They are approximately an hour and a half in length. The first thirty minutes is unstructured – we fly around, exploring current events and moods in the life of my client and choosing an area to focus on.\r\n\r\nThe next thirty to forty-five minutes will be spent exploring the issue we’ve chosen.\r\n\r\nThe last fifteen to thirty minutes is for recapping the session and, in some cases, creating some gentle “homework” for the client – exercises designed specifically for the individual to support healing and expansion.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The things you are passionate about</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nare not random, they are your calling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIncreased vitality, greater joy and the awakening of multiple forms of creativity are among the benefits you will experience.\r\n\r\nYou will also experience a new perspective on life and living that will result in new strategies for solving problems, more positive ways of viewing life-events and even “aha” moments – moments of crystal clarity where former mysteries suddenly reveal themselves as part of a pattern and thus make perfect sense.\r\n\r\nMost of all, you will begin to realize how perfect your life really is and has always been.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/autumn-trees-1.jpg\" alt=\"\" width=\"550\" height=\"504\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nJust by being yourself, you put something\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The door is wide open,</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nDon’t go back to sleep. –Rumi\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI am loving, intuitive and spiritually aligned, all of which add up to my being deeply attuned to my client.\r\n\r\nThe benefit for the client is that she feels heard and understood and more than that: because I am an active listener, I am alert for the jewel of information that my client will <em>(always</em>) inadvertently drop in my lap.\r\n\r\nWhen this happens, I polish that jewel and hold it up to my client’s eyes so that she can see and appreciate the beauty and treasures within her own soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/open-door.jpg\" alt=\"\" width=\"550\" height=\"530\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Approach','','inherit','closed','closed','','327-revision-v1','','','2017-02-07 07:44:39','2017-02-07 07:44:39','',327,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/327-revision-v1/',0,'revision','',0),(442,1,'2017-02-07 07:54:11','2017-02-07 07:54:11','','relaxed-sessions','','inherit','open','closed','','relaxed-sessions','','','2017-02-07 07:54:11','2017-02-07 07:54:11','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/relaxed-sessions.jpg',0,'attachment','image/jpeg',0),(443,1,'2017-02-07 07:54:53','2017-02-07 07:54:53','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/relaxed-sessions.jpg\" alt=\"\" width=\"560\" height=\"500\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Love being you</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEmbrace your “you”ness\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSessions are relaxed. They take place over the phone or using FaceTime or Skype. They are approximately an hour and a half in length. The first thirty minutes is unstructured – we fly around, exploring current events and moods in the life of my client and choosing an area to focus on.\r\n\r\nThe next thirty to forty-five minutes will be spent exploring the issue we’ve chosen.\r\n\r\nThe last fifteen to thirty minutes is for recapping the session and, in some cases, creating some gentle “homework” for the client – exercises designed specifically for the individual to support healing and expansion.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The things you are passionate about</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nare not random, they are your calling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIncreased vitality, greater joy and the awakening of multiple forms of creativity are among the benefits you will experience.\r\n\r\nYou will also experience a new perspective on life and living that will result in new strategies for solving problems, more positive ways of viewing life-events and even “aha” moments – moments of crystal clarity where former mysteries suddenly reveal themselves as part of a pattern and thus make perfect sense.\r\n\r\nMost of all, you will begin to realize how perfect your life really is and has always been.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/autumn-trees-1.jpg\" alt=\"\" width=\"550\" height=\"504\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nJust by being yourself, you put something\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>The door is wide open,</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nDon’t go back to sleep. –Rumi\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI am loving, intuitive and spiritually aligned, all of which add up to my being deeply attuned to my client.\r\n\r\nThe benefit for the client is that she feels heard and understood and more than that: because I am an active listener, I am alert for the jewel of information that my client will <em>(always</em>) inadvertently drop in my lap.\r\n\r\nWhen this happens, I polish that jewel and hold it up to my client’s eyes so that she can see and appreciate the beauty and treasures within her own soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/open-door.jpg\" alt=\"\" width=\"550\" height=\"530\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Approach','','inherit','closed','closed','','327-revision-v1','','','2017-02-07 07:54:53','2017-02-07 07:54:53','',327,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/327-revision-v1/',0,'revision','',0),(444,1,'2017-02-07 08:10:44','2017-02-07 08:10:44','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>What my clients are saying:</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nYou’re a woman of many talents and gifts.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#62cbce\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nThank you for the fine work that you do.\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#62cbce\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nYou’re a magician!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nSince working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Testimonials','','publish','closed','closed','','testimonials','','','2017-02-08 07:15:46','2017-02-08 07:15:46','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?page_id=444',0,'page','',0),(445,1,'2017-02-07 08:09:38','2017-02-07 08:09:38','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]','Testimonials','','inherit','closed','closed','','444-revision-v1','','','2017-02-07 08:09:38','2017-02-07 08:09:38','',444,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/444-revision-v1/',0,'revision','',0),(453,1,'2017-02-07 08:38:53','2017-02-07 08:38:53','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>Path of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Finding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>What my clients are saying:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"30px|30px|30px|30px\"]\r\n\r\nYou’re a woman of many talents and gifts.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"34\" custom_css_main_element=\"border-radius:50px;\"]\r\n\r\nThank you for the fine work that you do.\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"34\" custom_css_main_element=\"border-radius:50px;\"]\r\n\r\nYou’re a magician!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"34\" custom_css_main_element=\"border-radius:50px;\"]\r\n\r\nSince working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Testimonials','','inherit','closed','closed','','444-revision-v1','','','2017-02-07 08:38:53','2017-02-07 08:38:53','',444,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/444-revision-v1/',0,'revision','',0),(446,1,'2017-02-07 08:10:44','2017-02-07 08:10:44','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>Path of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Finding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p><img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Namaste</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\n<p>My Soul Honors Your Soul</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>In childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.</p><p>In spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Having discovered the source of my personal power</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>I offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>I am the Spiritual Mother</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>a safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p><img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\n<p>Be Yourself. Accept Yourself.<br /> Value Yourself. Love Yourself.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Because I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.</p><p>Hitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.</p><p> </p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1><p> </p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>See the hope in yourself</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Dr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.</p><p>In our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.</p><p> </p><p> </p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p><em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX</p><p> </p><p> </p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p><img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Testimonials','','inherit','closed','closed','','444-revision-v1','','','2017-02-07 08:10:44','2017-02-07 08:10:44','',444,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/444-revision-v1/',0,'revision','',0),(447,1,'2017-02-07 08:43:59','2017-02-07 08:43:59','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\n\n<p>Path of the True Self</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>Finding wholeness through connecting to one’s essential nature</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\n\n\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n<h1>What my clients are saying:</h1>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\n\nYou’re a woman of many talents and gifts.\n\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\n\nThank you for the fine work that you do.\n\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\n\nYou’re a magician!\n\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"34\" custom_css_main_element=\"border-radius:50px;\"]\n\nSince working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.\n\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Testimonials','','inherit','closed','closed','','444-autosave-v1','','','2017-02-07 08:43:59','2017-02-07 08:43:59','',444,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/444-autosave-v1/',0,'revision','',0),(450,1,'2017-02-07 08:29:05','2017-02-07 08:29:05','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>Path of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Finding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>What my clients are saying:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"20\"]\r\n\r\nYou’re a woman of many talents and gifts.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"20\"]\r\n\r\nThank you for the fine work that you do.\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"20\"]\r\n\r\nYou’re a magician!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"20\"]\r\n\r\nSince working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Testimonials','','inherit','closed','closed','','444-revision-v1','','','2017-02-07 08:29:05','2017-02-07 08:29:05','',444,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/444-revision-v1/',0,'revision','',0),(451,1,'2017-02-07 08:33:59','2017-02-07 08:33:59','h1, h2, h3, h4, h5, h6{letter-spacing:-1px;}\n#et-top-navigation { font-weight: normal;}\nbody.custom-background {background-attachment: fixed; background-repeat: no-repeat;}\n.nav li {line-height: 0;}\n#main-header {border-radius: 0 0 50px 120px; line-height: 5px;}\n.et_header_style_centered header#main-header.et-fixed-header .logo_container {height: 80px;}\n#et-info {text-align: center; float:none;}\n#main-footer {border-radius: 50px 80px 0 0; background-color:rgba(0, 2, 51, 0.82);}\n#footer-bottom {background-color: rgba(0, 0, 0, 0.0);}\n.footer-white{padding-bottom:0px;}\n#top-menu li {padding-right: 16px !important;}\n.et_pb_testimonial_author {display: none;}','Divi','','inherit','closed','closed','','37-revision-v1','','','2017-02-07 08:33:59','2017-02-07 08:33:59','',37,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/37-revision-v1/',0,'revision','',0),(452,1,'2017-02-07 08:35:43','2017-02-07 08:35:43','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>Path of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Finding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>What my clients are saying:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"34\" custom_css_main_element=\"border-radius:50px;\"]\r\n\r\nYou’re a woman of many talents and gifts.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"34\" custom_css_main_element=\"border-radius:50px;\"]\r\n\r\nThank you for the fine work that you do.\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"34\" custom_css_main_element=\"border-radius:50px;\"]\r\n\r\nYou’re a magician!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"34\" custom_css_main_element=\"border-radius:50px;\"]\r\n\r\nSince working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Testimonials','','inherit','closed','closed','','444-revision-v1','','','2017-02-07 08:35:43','2017-02-07 08:35:43','',444,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/444-revision-v1/',0,'revision','',0),(449,1,'2017-02-07 08:26:42','2017-02-07 08:26:42','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>Path of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Finding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>What my clients are saying:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\"]\r\n\r\nYou’re a woman of many talents and gifts.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\"]\r\n\r\nThank you for the fine work that you do.\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\"]\r\n\r\nYou’re a magician!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\"]\r\n\r\nSince working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Testimonials','','inherit','closed','closed','','444-revision-v1','','','2017-02-07 08:26:42','2017-02-07 08:26:42','',444,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/444-revision-v1/',0,'revision','',0),(448,1,'2017-02-07 08:20:47','2017-02-07 08:20:47','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>Path of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Finding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p><img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\n<p>My Soul Honors Your Soul</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>In childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.</p><p>In spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>What my clients are saying:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Dancing Script||||\"]\r\n\r\nYou’re a woman of many talents and gifts.\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\"]\r\n\r\nYou’re a magician!\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Lobster||||\"]\r\n\r\nThank you for the fine work that you do.\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Calligraffitti||||\"]\r\n\r\nSince working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Having discovered the source of my personal power</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>I offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>I am the Spiritual Mother</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>a safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p><img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\n<p>Be Yourself. Accept Yourself.<br /> Value Yourself. Love Yourself.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Because I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.</p><p>Hitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.</p><p> </p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1><p> </p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>See the hope in yourself</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Dr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.</p><p>In our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.</p><p> </p><p> </p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p><em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX</p><p> </p><p> </p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p><img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Testimonials','','inherit','closed','closed','','444-revision-v1','','','2017-02-07 08:20:47','2017-02-07 08:20:47','',444,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/444-revision-v1/',0,'revision','',0),(454,1,'2017-02-07 08:39:46','2017-02-07 08:39:46','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>Path of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Finding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>What my clients are saying:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"50px|50px|30px|50px\"]\r\n\r\nYou’re a woman of many talents and gifts.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"34\" custom_css_main_element=\"border-radius:50px;\"]\r\n\r\nThank you for the fine work that you do.\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"34\" custom_css_main_element=\"border-radius:50px;\"]\r\n\r\nYou’re a magician!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"34\" custom_css_main_element=\"border-radius:50px;\"]\r\n\r\nSince working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Testimonials','','inherit','closed','closed','','444-revision-v1','','','2017-02-07 08:39:46','2017-02-07 08:39:46','',444,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/444-revision-v1/',0,'revision','',0),(455,1,'2017-02-07 08:41:18','2017-02-07 08:41:18','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>Path of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Finding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>What my clients are saying:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|60px|20px|60px\"]\r\n\r\nYou’re a woman of many talents and gifts.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"34\" custom_css_main_element=\"border-radius:50px;\"]\r\n\r\nThank you for the fine work that you do.\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"34\" custom_css_main_element=\"border-radius:50px;\"]\r\n\r\nYou’re a magician!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"34\" custom_css_main_element=\"border-radius:50px;\"]\r\n\r\nSince working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Testimonials','','inherit','closed','closed','','444-revision-v1','','','2017-02-07 08:41:18','2017-02-07 08:41:18','',444,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/444-revision-v1/',0,'revision','',0),(456,1,'2017-02-07 08:41:54','2017-02-07 08:41:54','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>Path of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Finding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>What my clients are saying:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nYou’re a woman of many talents and gifts.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"34\" custom_css_main_element=\"border-radius:50px;\"]\r\n\r\nThank you for the fine work that you do.\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"34\" custom_css_main_element=\"border-radius:50px;\"]\r\n\r\nYou’re a magician!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"34\" custom_css_main_element=\"border-radius:50px;\"]\r\n\r\nSince working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Testimonials','','inherit','closed','closed','','444-revision-v1','','','2017-02-07 08:41:54','2017-02-07 08:41:54','',444,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/444-revision-v1/',0,'revision','',0),(457,1,'2017-02-07 08:44:11','2017-02-07 08:44:11','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>Path of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Finding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>What my clients are saying:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nYou’re a woman of many talents and gifts.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nThank you for the fine work that you do.\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#2499cf\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nYou’re a magician!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nSince working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Testimonials','','inherit','closed','closed','','444-revision-v1','','','2017-02-07 08:44:11','2017-02-07 08:44:11','',444,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/444-revision-v1/',0,'revision','',0),(458,1,'2017-02-07 08:44:52','2017-02-07 08:44:52','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>Path of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Finding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>What my clients are saying:</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nYou’re a woman of many talents and gifts.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#62cbce\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nThank you for the fine work that you do.\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#62cbce\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nYou’re a magician!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nSince working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Testimonials','','inherit','closed','closed','','444-revision-v1','','','2017-02-07 08:44:52','2017-02-07 08:44:52','',444,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/444-revision-v1/',0,'revision','',0),(459,1,'2017-02-07 08:46:55','2017-02-07 08:46:55',' ','','','publish','closed','closed','','459','','','2017-02-07 10:37:55','2017-02-07 10:37:55','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?p=459',6,'nav_menu_item','',0),(464,1,'2017-02-07 09:19:21','2017-02-07 09:19:21','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\n\nPath of the True Self\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nFinding wholeness through connecting to one’s essential nature\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\n\n\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\n\nIndividual &amp; Couples Counseling\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\n\n<h1>Your heart knows things</h1>\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\n\nYour mind can\'t explain\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\n\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\n\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\n\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\n\nRelationship Counseling\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\n\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\n\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\n\nI am available for public speaking engagements. Details available upon request.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\n\n\n\n[/et_pb_button][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-autosave-v1','','','2017-02-07 09:19:21','2017-02-07 09:19:21','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-autosave-v1/',0,'revision','',0),(466,1,'2017-02-07 09:14:00','2017-02-07 09:14:00','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\r\n\r\n<h1>Your heart knows things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am available for public speaking engagements. Details available upon request.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-07 09:14:00','2017-02-07 09:14:00','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-revision-v1/',0,'revision','',0),(473,1,'2017-02-07 09:32:24','2017-02-07 09:32:24','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||10px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"off|tablet\"]\r\n\r\n<h1>Individual &amp; Couples Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\r\n\r\n<h1>Your heart knows things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"27\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_tablet=\"24\" text_font_size_phone=\"20\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am available for public speaking engagements. Details available upon request.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-07 09:32:24','2017-02-07 09:32:24','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-revision-v1/',0,'revision','',0);
INSERT INTO `wp_upmt_posts` VALUES (468,1,'2017-02-07 09:19:43','2017-02-07 09:19:43','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||10px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"off|tablet\"]\r\n\r\n<h1>Individual &amp; Couples Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\r\n\r\n<h1>Your heart knows things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am available for public speaking engagements. Details available upon request.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-07 09:19:43','2017-02-07 09:19:43','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-revision-v1/',0,'revision','',0),(467,1,'2017-02-07 09:17:12','2017-02-07 09:17:12','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nIndividual &amp; Couples Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\r\n\r\n<h1>Your heart knows things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am available for public speaking engagements. Details available upon request.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-07 09:17:12','2017-02-07 09:17:12','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-revision-v1/',0,'revision','',0),(469,1,'2017-02-07 09:25:43','2017-02-07 09:25:43','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||10px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"off|tablet\"]\r\n\r\n<h1>Individual &amp; Couples Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\r\n\r\n<h1>Your heart knows things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am available for public speaking engagements. Details available upon request.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-07 09:25:43','2017-02-07 09:25:43','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-revision-v1/',0,'revision','',0),(470,1,'2017-02-07 09:27:13','2017-02-07 09:27:13','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||10px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"off|tablet\"]\r\n\r\n<h1>Individual &amp; Couples Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\r\n\r\n<h1>Your heart knows things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"0px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am available for public speaking engagements. Details available upon request.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-07 09:27:13','2017-02-07 09:27:13','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-revision-v1/',0,'revision','',0),(471,1,'2017-02-07 09:28:39','2017-02-07 09:28:39','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||10px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"off|tablet\"]\r\n\r\n<h1>Individual &amp; Couples Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\r\n\r\n<h1>Your heart knows things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"0px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"28\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_tablet=\"24\" text_font_size_phone=\"20\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nI am available for public speaking engagements. Details available upon request.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-07 09:28:39','2017-02-07 09:28:39','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-revision-v1/',0,'revision','',0),(472,1,'2017-02-07 09:30:28','2017-02-07 09:30:28','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||10px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"off|tablet\"]\r\n\r\n<h1>Individual &amp; Couples Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\r\n\r\n<h1>Your heart knows things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"0px\" padding_right_1=\"40px\" padding_bottom_1=\"0px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"27\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_tablet=\"24\" text_font_size_phone=\"20\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am available for public speaking engagements. Details available upon request.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-07 09:30:28','2017-02-07 09:30:28','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-revision-v1/',0,'revision','',0),(474,1,'2017-02-07 09:33:10','2017-02-07 09:33:10','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||10px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"off|tablet\"]\r\n\r\n<h1>Individual &amp; Couples Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\r\n\r\n<h1>Your heart knows things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"32\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_tablet=\"24\" text_font_size_phone=\"20\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am available for public speaking engagements. \r\nDetails available upon request.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-07 09:33:10','2017-02-07 09:33:10','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-revision-v1/',0,'revision','',0),(475,1,'2017-02-07 09:50:17','2017-02-07 09:50:17','','mother-daughter','','inherit','open','closed','','mother-daughter','','','2017-02-07 09:50:17','2017-02-07 09:50:17','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/mother-daughter.jpg',0,'attachment','image/jpeg',0),(476,1,'2017-02-07 09:50:54','2017-02-07 09:50:54','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/mother-daughter.jpg\" alt=\"\" width=\"560\" height=\"300\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||10px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"off|tablet\"]\r\n\r\n<h1>Individual &amp; Couples Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\r\n\r\n<h1>Your heart knows things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"32\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_tablet=\"24\" text_font_size_phone=\"20\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am available for public speaking engagements. \r\nDetails available upon request.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-07 09:50:54','2017-02-07 09:50:54','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-revision-v1/',0,'revision','',0),(477,1,'2017-02-07 09:55:16','2017-02-07 09:55:16','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/mother-daughter.jpg\" alt=\"\" width=\"560\" height=\"300\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||10px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"off|tablet\"]\r\n\r\n<h1>Individual &amp; Couples Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\r\n\r\n<h1>Your heart knows things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/counselling.jpg\" alt=\"\" width=\"550\" height=\"670\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"32\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_tablet=\"24\" text_font_size_phone=\"20\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am available for public speaking engagements. \r\nDetails available upon request.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-07 09:55:16','2017-02-07 09:55:16','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-revision-v1/',0,'revision','',0),(478,1,'2017-02-07 09:55:45','2017-02-07 09:55:45','','counselling','','inherit','open','closed','','counselling','','','2017-02-07 09:55:45','2017-02-07 09:55:45','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/counselling.jpg',0,'attachment','image/jpeg',0),(479,1,'2017-02-07 09:57:28','2017-02-07 09:57:28','','counselling','','inherit','open','closed','','counselling-2','','','2017-02-07 09:57:28','2017-02-07 09:57:28','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/counselling-1.jpg',0,'attachment','image/jpeg',0),(480,1,'2017-02-07 09:57:53','2017-02-07 09:57:53','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/mother-daughter.jpg\" alt=\"\" width=\"560\" height=\"300\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||10px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"off|tablet\"]\r\n\r\n<h1>Individual &amp; Couples Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\r\n\r\n<h1>Your heart knows things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/counselling-1.jpg\" alt=\"\" width=\"550\" height=\"690\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"32\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_tablet=\"24\" text_font_size_phone=\"20\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am available for public speaking engagements. \r\nDetails available upon request.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-07 09:57:53','2017-02-07 09:57:53','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-revision-v1/',0,'revision','',0),(481,1,'2017-02-07 09:58:32','2017-02-07 09:58:32','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/mother-daughter.jpg\" alt=\"\" width=\"560\" height=\"300\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||10px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"off|tablet\"]\r\n\r\n<h1>Individual &amp; Couples Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\r\n\r\n<h1>Your heart knows things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/counselling-1.jpg\" alt=\"\" width=\"550\" height=\"680\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"32\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_tablet=\"24\" text_font_size_phone=\"20\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am available for public speaking engagements. \r\nDetails available upon request.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-07 09:58:32','2017-02-07 09:58:32','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-revision-v1/',0,'revision','',0),(482,1,'2017-02-07 09:59:40','2017-02-07 09:59:40','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/mother-daughter.jpg\" alt=\"\" width=\"560\" height=\"300\">\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||10px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"off|tablet\"]\r\n\r\n<h1>Individual &amp; Couples Counseling</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\r\n\r\n<h1>Your heart knows things</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/counselling-1.jpg\" alt=\"\" width=\"550\" height=\"677\">\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"32\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_tablet=\"24\" text_font_size_phone=\"20\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am available for public speaking engagements. \r\nDetails available upon request.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-07 09:59:40','2017-02-07 09:59:40','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/341-revision-v1/',0,'revision','',0),(483,1,'2017-02-07 10:23:50','2017-02-07 10:23:50','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [ninja_form id=2] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_map admin_label=\"Map\" address=\"22 Walton St, Lakeville, CT 06039, USA\" address_lat=\"41.967011710493985\" address_lng=\"-73.43593731698837\" mouse_wheel=\"on\" mobile_dragging=\"on\" use_grayscale_filter=\"off\" grayscale_filter_amount=\"0\" zoom_level=\"15\"] [et_pb_map_pin pin_address=\"22 Walton St, Lakeville, CT 06039, USA\" pin_address_lat=\"41.966976\" pin_address_lng=\"-73.4371309\"][/et_pb_map_pin] [/et_pb_map][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px|||\"]\r\n\r\n22 Walton Street, Lakeville, CT, 06039\r\n\r\n<strong>Phone (U.S.):</strong> (860) 435-2510, (860) 318-5457\r\n<strong>Phone (France):</strong> 07.62.46.20.15\r\n<strong>Skype:</strong> (661) 748-0240\r\n\r\n<strong>Email:</strong> <a href=\"mailto:tielag@hotmail.com\">tielag@hotmail.com</a>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Contact Me','','publish','closed','closed','','contact-me','','','2017-02-08 07:12:23','2017-02-08 07:12:23','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?page_id=483',0,'page','',0),(488,1,'2017-02-07 10:30:34','2017-02-07 10:30:34','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [ninja_form id=2] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_map admin_label=\"Map\" address=\"22 Walton St, Lakeville, CT 06039, USA\" address_lat=\"41.966976\" address_lng=\"-73.4371309\" mouse_wheel=\"on\" mobile_dragging=\"on\" use_grayscale_filter=\"off\" grayscale_filter_amount=\"0\"] [et_pb_map_pin pin_address=\"22 Walton St, Lakeville, CT 06039, USA\" pin_address_lat=\"41.966976\" pin_address_lng=\"-73.4371309\"][/et_pb_map_pin] [/et_pb_map][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n22 Walton Street, Lakeville, CT, 06039\r\n\r\n<strong>Phone (U.S.):</strong> (860) 435-2510, (860) 318-5457\r\n<strong>Phone (France):</strong> 07.62.46.20.15\r\n<strong>Skype:</strong> (661) 748-0240\r\n\r\n<strong>Email:</strong> <a href=\"mailto:tielag@hotmail.com\">tielag@hotmail.com</a>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','483-revision-v1','','','2017-02-07 10:30:34','2017-02-07 10:30:34','',483,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/483-revision-v1/',0,'revision','',0),(487,1,'2017-02-07 10:29:08','2017-02-07 10:29:08','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [ninja_form id=2] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Connect With Me</h1>\r\n[/et_pb_text][et_pb_map admin_label=\"Map\" address=\"22 Walton St, Lakeville, CT 06039, USA\" address_lat=\"41.966976\" address_lng=\"-73.4371309\" mouse_wheel=\"on\" mobile_dragging=\"on\" use_grayscale_filter=\"off\" grayscale_filter_amount=\"0\"] [et_pb_map_pin pin_address=\"22 Walton St, Lakeville, CT 06039, USA\" pin_address_lat=\"41.966976\" pin_address_lng=\"-73.4371309\"][/et_pb_map_pin] [/et_pb_map][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n22 Walton Street, Lakeville, CT, 06039\r\n\r\n<strong>Phone (U.S.):</strong> (860) 435-2510, (860) 318-5457\r\n<strong>Phone (France):</strong> 07.62.46.20.15\r\n<strong>Skype:</strong> (661) 748-0240\r\n\r\n<strong>Email:</strong> <a href=\"mailto:tielag@hotmail.com\">tielag@hotmail.com</a>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','483-revision-v1','','','2017-02-07 10:29:08','2017-02-07 10:29:08','',483,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/483-revision-v1/',0,'revision','',0),(486,1,'2017-02-07 10:28:49','2017-02-07 10:28:49','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [ninja_form id=2] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Connect With Me</h1>\r\n[/et_pb_text][et_pb_map admin_label=\"Map\" address=\"22 Walton St, Lakeville, CT 06039, USA\" address_lat=\"41.966976\" address_lng=\"-73.4371309\" mouse_wheel=\"on\" mobile_dragging=\"on\" use_grayscale_filter=\"off\" grayscale_filter_amount=\"0\"]\r\n\r\n[et_pb_map_pin pin_address=\"22 Walton St, Lakeville, CT 06039, USA\" pin_address_lat=\"41.966976\" pin_address_lng=\"-73.4371309\"]\r\n\r\n[/et_pb_map_pin]\r\n\r\n[/et_pb_map][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n22 Walton Street, Lakeville, CT, 06039\r\n\r\n<strong>Phone (U.S.):</strong> (860) 435-2510, (860) 318-5457\r\n<strong>Phone (France):</strong> 07.62.46.20.15\r\n<strong>Skype:</strong> (661) 748-0240\r\n\r\n<strong>Email:</strong> <a href=\"mailto:tielag@hotmail.com\">tielag@hotmail.com</a>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','483-revision-v1','','','2017-02-07 10:28:49','2017-02-07 10:28:49','',483,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/483-revision-v1/',0,'revision','',0),(484,1,'2017-02-07 10:23:50','2017-02-07 10:23:50','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\n<p>Path of the True Self</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Finding wholeness through connecting to one’s essential nature</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p><img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Namaste</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\n<p>My Soul Honors Your Soul</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>In childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.</p><p>In spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Empowerment</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Having discovered the source of my personal power</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>I offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Maternal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>I am the Spiritual Mother</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>a safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence</p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p><img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\n<p>Be Yourself. Accept Yourself.<br /> Value Yourself. Love Yourself.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Because I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.</p><p>Hitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.</p><p> </p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1>Mentor: Somebody who allows you to</h1><p> </p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>See the hope in yourself</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Dr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.</p><p>In our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.</p><p> </p><p> </p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p><em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX</p><p> </p><p> </p>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p><img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" /></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','483-revision-v1','','','2017-02-07 10:23:50','2017-02-07 10:23:50','',483,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/483-revision-v1/',0,'revision','',0),(485,1,'2017-02-07 10:28:00','2017-02-07 10:28:00','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\n\nPath of the True Self\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nFinding wholeness through connecting to one’s essential nature\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n[ninja_form id=2]\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n<h1>Connect With Me</h1>\n[/et_pb_text][et_pb_map admin_label=\"Map\" address=\"22 Walton St, Lakeville, CT 06039, USA\" address_lat=\"41.966976\" address_lng=\"-73.4371309\" mouse_wheel=\"on\" mobile_dragging=\"on\" use_grayscale_filter=\"off\" grayscale_filter_amount=\"0\"]\n\n[et_pb_map_pin pin_address=\"22 Walton St, Lakeville, CT 06039, USA\" pin_address_lat=\"41.966976\" pin_address_lng=\"-73.4371309\"]\n\n[/et_pb_map_pin]\n\n[/et_pb_map][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\n\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n<h1>Empowerment</h1>\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\n\nHaving discovered the source of my personal power\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\n\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n<h1>Maternal</h1>\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\n\nI am the Spiritual Mother\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" />\n\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\n\nBe Yourself. Accept Yourself.\nValue Yourself. Love Yourself.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nBecause I had a judgmental, punishing mother who betrayed and abandoned me, I learned to judge, punish, betray and abandon myself. I came to believe that I was unloveable and this belief became the root of behavior patterns that threatened to destroy me both mentally and physically.\n\nHitting bottom taught me that self-acceptance is not a luxury but a necessity for survival. Starting from a place of self-acceptance, I rebuilt my life completely from scratch. My personal experiences became the perfect education for creating a thriving life and for teaching my ideal client to do the same.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n<h1>Mentor: Somebody who allows you to</h1>\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\n\nSee the hope in yourself\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\n\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\n\n[/et_pb_text][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','483-autosave-v1','','','2017-02-07 10:28:00','2017-02-07 10:28:00','',483,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/483-autosave-v1/',0,'revision','',0),(489,1,'2017-02-07 10:33:24','2017-02-07 10:33:24','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [ninja_form id=2] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_map admin_label=\"Map\" address=\"22 Walton St, Lakeville, CT 06039, USA\" address_lat=\"41.966976\" address_lng=\"-73.4371309\" mouse_wheel=\"on\" mobile_dragging=\"on\" use_grayscale_filter=\"off\" grayscale_filter_amount=\"0\"] [et_pb_map_pin pin_address=\"22 Walton St, Lakeville, CT 06039, USA\" pin_address_lat=\"41.966976\" pin_address_lng=\"-73.4371309\"][/et_pb_map_pin] [/et_pb_map][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px|||\"]\r\n\r\n22 Walton Street, Lakeville, CT, 06039\r\n\r\n<strong>Phone (U.S.):</strong> (860) 435-2510, (860) 318-5457\r\n<strong>Phone (France):</strong> 07.62.46.20.15\r\n<strong>Skype:</strong> (661) 748-0240\r\n\r\n<strong>Email:</strong> <a href=\"mailto:tielag@hotmail.com\">tielag@hotmail.com</a>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','483-revision-v1','','','2017-02-07 10:33:24','2017-02-07 10:33:24','',483,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/483-revision-v1/',0,'revision','',0),(490,1,'2017-02-07 10:36:49','2017-02-07 10:36:49','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [ninja_form id=2] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_map admin_label=\"Map\" address=\"22 Walton St, Lakeville, CT 06039, USA\" address_lat=\"41.967011710493985\" address_lng=\"-73.43593731698837\" mouse_wheel=\"on\" mobile_dragging=\"on\" use_grayscale_filter=\"off\" grayscale_filter_amount=\"0\" zoom_level=\"15\"] [et_pb_map_pin pin_address=\"22 Walton St, Lakeville, CT 06039, USA\" pin_address_lat=\"41.966976\" pin_address_lng=\"-73.4371309\"][/et_pb_map_pin] [/et_pb_map][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px|||\"]\r\n\r\n22 Walton Street, Lakeville, CT, 06039\r\n\r\n<strong>Phone (U.S.):</strong> (860) 435-2510, (860) 318-5457\r\n<strong>Phone (France):</strong> 07.62.46.20.15\r\n<strong>Skype:</strong> (661) 748-0240\r\n\r\n<strong>Email:</strong> <a href=\"mailto:tielag@hotmail.com\">tielag@hotmail.com</a>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','483-revision-v1','','','2017-02-07 10:36:49','2017-02-07 10:36:49','',483,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/07/483-revision-v1/',0,'revision','',0),(491,1,'2017-02-07 10:37:55','2017-02-07 10:37:55',' ','','','publish','closed','closed','','491','','','2017-02-07 10:37:55','2017-02-07 10:37:55','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?p=491',8,'nav_menu_item','',0),(493,1,'2017-02-08 07:11:53','2017-02-08 07:11:53','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/relaxed-sessions.jpg\" alt=\"\" width=\"560\" height=\"500\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Love being you</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEmbrace your “you”ness\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nSessions are relaxed. They take place over the phone or using FaceTime or Skype. They are approximately an hour and a half in length. The first thirty minutes is unstructured – we fly around, exploring current events and moods in the life of my client and choosing an area to focus on.\r\n\r\nThe next thirty to forty-five minutes will be spent exploring the issue we’ve chosen.\r\n\r\nThe last fifteen to thirty minutes is for recapping the session and, in some cases, creating some gentle “homework” for the client – exercises designed specifically for the individual to support healing and expansion.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The things you are passionate about</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nare not random, they are your calling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIncreased vitality, greater joy and the awakening of multiple forms of creativity are among the benefits you will experience.\r\n\r\nYou will also experience a new perspective on life and living that will result in new strategies for solving problems, more positive ways of viewing life-events and even “aha” moments – moments of crystal clarity where former mysteries suddenly reveal themselves as part of a pattern and thus make perfect sense.\r\n\r\nMost of all, you will begin to realize how perfect your life really is and has always been.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/autumn-trees-1.jpg\" alt=\"\" width=\"550\" height=\"504\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nJust by being yourself, you put something\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nMy ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>The door is wide open,</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nDon’t go back to sleep. –Rumi\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI am loving, intuitive and spiritually aligned, all of which add up to my being deeply attuned to my client.\r\n\r\nThe benefit for the client is that she feels heard and understood and more than that: because I am an active listener, I am alert for the jewel of information that my client will <em>(always</em>) inadvertently drop in my lap.\r\n\r\nWhen this happens, I polish that jewel and hold it up to my client’s eyes so that she can see and appreciate the beauty and treasures within her own soul.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/open-door.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','Approach','','inherit','closed','closed','','327-revision-v1','','','2017-02-08 07:11:53','2017-02-08 07:11:53','',327,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/08/327-revision-v1/',0,'revision','',0),(494,1,'2017-02-08 07:12:23','2017-02-08 07:12:23','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [ninja_form id=2] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_map admin_label=\"Map\" address=\"22 Walton St, Lakeville, CT 06039, USA\" address_lat=\"41.967011710493985\" address_lng=\"-73.43593731698837\" mouse_wheel=\"on\" mobile_dragging=\"on\" use_grayscale_filter=\"off\" grayscale_filter_amount=\"0\" zoom_level=\"15\"] [et_pb_map_pin pin_address=\"22 Walton St, Lakeville, CT 06039, USA\" pin_address_lat=\"41.966976\" pin_address_lng=\"-73.4371309\"][/et_pb_map_pin] [/et_pb_map][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px|||\"]\r\n\r\n22 Walton Street, Lakeville, CT, 06039\r\n\r\n<strong>Phone (U.S.):</strong> (860) 435-2510, (860) 318-5457\r\n<strong>Phone (France):</strong> 07.62.46.20.15\r\n<strong>Skype:</strong> (661) 748-0240\r\n\r\n<strong>Email:</strong> <a href=\"mailto:tielag@hotmail.com\">tielag@hotmail.com</a>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','483-revision-v1','','','2017-02-08 07:12:23','2017-02-08 07:12:23','',483,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/08/483-revision-v1/',0,'revision','',0),(496,1,'2017-02-08 07:13:12','2017-02-08 07:13:12','<p>[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"9em||10em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]</p><p>Path of the True Self</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Finding wholeness through connecting to one’s essential nature</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]</p><p> </p><p>[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/TG-HP-Headshot.jpg\" alt=\"\" width=\"554\" height=\"500\" /></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>The way you feel</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]</p><p>connects you to the truth of who you are</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Twenty years with a narcissistic mother taught me to ignore the intuitions that lay within my own heart and focus instead on serving the neurotic desires of a deeply damaged individual.</p><p>The person I was most reliant on for love sought refuge from her fears and pain by controlling and manipulating my behavior. Not only did this effort fail, it robbed me of the one thing I needed most to navigate in this world: connection with my True Self.</p><p>Years of playing out the consequences of unhealthy patterns of thought, choice and behavior learned in childhood and adolescence caused me to hit bottom. When I did I was forced to look inward, which was the beginning of my healing.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>By being yourself</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>You put something wonderful in the world</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>While this was extremely painful and required great courage, I knew the only hope for my survival was in my connection to Spirit.</p><p>Hitting bottom resulted in years of study, meditation and inner discipline, which reconnected me with my essential nature. Gradually, I began to experience freedom from suffering, mental clarity and the awakening of joy.</p><p>I have learned to walk the path of the True Self and offer my clients the secrets to uncovering their own, true selves and walking this powerful path in their own lives.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-127\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/being-alone.jpg\" alt=\"\" width=\"550\" height=\"450\" /></p><p>[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-125\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/spiritual-mother-1.jpg\" alt=\"\" width=\"500\" height=\"500\" /></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>A Spiritual Mother</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]</p><p>Grounded and present</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>In our work together you’ll be enveloped in a warm, supportive environment where feeling safe and nurtured is a matter of course.</p><p>As your ally in healing, my intention is to hold a space where mystical transformation can occur.</p><p>As I attune myself to my client’s energies, I am able to receive the frequency of her heart.</p><p>As a loving flight instructor I’ll gently and respectfully guide you toward an understanding of the instrument panel of your spiritual “aircraft,” to ensure you stay connected to your True North.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(0,0,0,0.07)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]</p><p>Respond to<br /> every call<br /> That excites<br /> your spirit<br /> <span style=\"font-size: 18px;\">- Rumi</span></p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" background_color=\"rgba(98,203,206,0.8)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:80px 0px 80px 30px;\" header_text_color=\"#003368\" header_font_size=\"38px\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]</p><h1>Meditation &amp; Mindfulness Instruction</h1><p>Guided meditation instruction for directing attention away from past and future and more deeply into the present moment, which is the ultimate solution to any and all problems.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(36,153,207,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:80px 30px 80px 0;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]</p><h1>Relationship Counseling</h1><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Problem-solving for couples when communication has broken down. I meet with each partner separately to identify their needs and to discuss the adjustments needed to heal the rift. Next I meet with the couple as a unit. We discuss each of their personal goals and work out a strategy for implementation.</p><p>I help my clients get under the content to their real feelings, and speak to each other in a respectful and loving manner to generate an “aha” moment of mutual understanding, thereby opening the lines of communication.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(203,254,255,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:0px 80px 30px 80px;\" custom_padding=\"0px|||\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"38px\" custom_margin=\"||10px|\" header_text_color=\"#2499cf\" header_font_size_tablet=\"32px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\"]</p><h1>Individual Counseling</h1><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>One-on-one counseling in a confidential setting, addressing short-term challenges as well as long-term goals.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"42\" text_line_height=\"1em\" text_font_size_tablet=\"35\" text_font_size_phone=\"30\" text_font_size_last_edited=\"on|tablet\"]</p><p>You had the power<br /> all along, my dear<br /> <span style=\"font-size: 18px;\">- Glinda the Good Witch</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>My goal is to help women like myself replace self-sabotaging patterns with a recipe for success.</p><p>My ideal clients are extraordinary, gifted women who are confronting challenges they need assistance with.</p><p>I assist women already on a spiritual path to turbo-charge their lives.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]</p>','HP-8Feb17','','publish','closed','closed','','hp-8feb17','','','2017-02-08 07:13:12','2017-02-08 07:13:12','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/hp-8feb17/',0,'et_pb_layout','',0),(497,1,'2017-02-08 07:13:52','2017-02-08 07:13:52','<p>[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]</p><p>Path of the True Self</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Finding wholeness through connecting to one’s essential nature</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" /></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]</p><p>When you learn how to listen</p><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]</p><p>Everyone is your guru</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>In childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.</p><p>In spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>I am an EMPATH, which means:</p><p>[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Empowerment</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>Having discovered the source of my personal power</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>I offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.</p><p>[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Maternal</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>I am the Spiritual Mother</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>a safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence</p><p>[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Passion</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>As a recovering depressive, I have learned that depression is actually frustrated passion.</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Blockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><strong>AUTHENTICITY<br /> </strong>Because I value my own uniqueness,<br /> I support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.</p><p> </p><p>[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]</p><p>Be Yourself. Accept Yourself.<br /> Value Yourself. Love Yourself.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Negative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.</p><p>Hitting bottom taught me that self-acceptance is not a luxury but a necessity.</p><p>Starting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Mentor: Somebody who allows you to</h1><p> </p><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>See the hope in yourself</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Dr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.</p><p>In our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.</p><p> </p><p> </p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX</p><p> </p><p> </p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" /></p><p>[/et_pb_text][/et_pb_column][/et_pb_section]</p>','HDSCW-8Feb17','','publish','closed','closed','','hdscw-8feb17','','','2017-02-08 07:13:52','2017-02-08 07:13:52','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/hdscw-8feb17/',0,'et_pb_layout','',0),(498,1,'2017-02-08 07:13:53','2017-02-08 07:13:53','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nWhen you learn how to listen\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]\r\n\r\nEveryone is your guru\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIn childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.\r\n\r\nIn spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am an EMPATH, which means:\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Empowerment</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nHaving discovered the source of my personal power\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Maternal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nI am the Spiritual Mother\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\na safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Passion</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nAs a recovering depressive, I have learned that depression is actually frustrated passion.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>AUTHENTICITY\r\n</strong>Because I value my own uniqueness,\r\nI support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nBe Yourself. Accept Yourself.\r\nValue Yourself. Love Yourself.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNegative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.\r\n\r\nHitting bottom taught me that self-acceptance is not a luxury but a necessity.\r\n\r\nStarting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>Mentor: Somebody who allows you to</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]\r\n\r\nSee the hope in yourself\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nDr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.\r\n\r\nIn our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section]','How Does Spiritual Counseling Work','','inherit','closed','closed','','399-revision-v1','','','2017-02-08 07:13:53','2017-02-08 07:13:53','',399,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/08/399-revision-v1/',0,'revision','',0),(499,1,'2017-02-08 07:14:30','2017-02-08 07:14:30','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/mother-daughter.jpg\" alt=\"\" width=\"560\" height=\"300\" />\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||10px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"off|tablet\"]\r\n<h1>Individual &amp; Couples Counseling</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]\r\n<h1>Your heart knows things</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nYour mind can\'t explain\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]\r\n\r\nThe backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]\r\n\r\nRelationship Counseling\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.\r\n\r\nCounseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/counselling-1.jpg\" alt=\"\" width=\"550\" height=\"677\" />\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"32\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_tablet=\"24\" text_font_size_phone=\"20\" text_font_size_last_edited=\"on|desktop\"]\r\n\r\nI am available for public speaking engagements.\r\nDetails available upon request.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Services','','inherit','closed','closed','','341-revision-v1','','','2017-02-08 07:14:30','2017-02-08 07:14:30','',341,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/08/341-revision-v1/',0,'revision','',0),(500,1,'2017-02-08 07:14:48','2017-02-08 07:14:48','<p>[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]</p><p>Path of the True Self</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Finding wholeness through connecting to one’s essential nature</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/mother-daughter.jpg\" alt=\"\" width=\"560\" height=\"300\" /></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||10px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"off|tablet\"]</p><h1>Individual &amp; Couples Counseling</h1><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>I offer counseling sessions for individuals, one on one, as well as couples-counseling for married people, domestic partners or any two, people seeking to improve their relationship (e.g., mother and daughter).</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_last_edited=\"off|desktop\"]</p><h1>Your heart knows things</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]</p><p>Your mind can\'t explain</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||30px|\"]</p><p>The backbone of my practice: Individual, spiritual counseling sessions for women like myself, looking to work through specific issues (e.g., physical or emotional illness, divorce, bereavement, life changes, loss or upheaval).</p><p>Counseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.</p><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"||20px|\"]</p><p>Relationship Counseling</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>This can be for married people, domestic partners or any, two people looking to improve their relationship (e.g., mother and daughter). I work with each person individually as well as the two, together.</p><p>Counseling sessions are 90 minutes in length, $200 per session, payable in advance through PayPal, and will take place on the phone, on FaceTime or via Skype.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/counselling-1.jpg\" alt=\"\" width=\"550\" height=\"677\" /></p><p>[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"32\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||0px|\" text_font_size_tablet=\"24\" text_font_size_phone=\"20\" text_font_size_last_edited=\"on|desktop\"]</p><p>I am available for public speaking engagements.<br /> Details available upon request.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]</p>','Services-8Feb17','','publish','closed','closed','','services-8feb17','','','2017-02-08 07:14:48','2017-02-08 07:14:48','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/services-8feb17/',0,'et_pb_layout','',0),(501,1,'2017-02-08 07:15:46','2017-02-08 07:15:46','[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]\r\n\r\nPath of the True Self\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nFinding wholeness through connecting to one’s essential nature\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n<h1>What my clients are saying:</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nYou’re a woman of many talents and gifts.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#62cbce\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nThank you for the fine work that you do.\r\n\r\n[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#62cbce\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nYou’re a magician!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]\r\n\r\nSince working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Testimonials','','inherit','closed','closed','','444-revision-v1','','','2017-02-08 07:15:46','2017-02-08 07:15:46','',444,'http://www.creativedezinesolutions.com/demo/tiela/dev/2017/02/08/444-revision-v1/',0,'revision','',0),(502,1,'2017-02-08 07:16:04','2017-02-08 07:16:04','<p>[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]</p><p>Path of the True Self</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Finding wholeness through connecting to one’s essential nature</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"rgba(255,255,255,0.5)\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>What my clients are saying:</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]</p><p>You’re a woman of many talents and gifts.</p><p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#62cbce\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]</p><p>Thank you for the fine work that you do.</p><p>[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#62cbce\" background_layout=\"light\" text_orientation=\"center\" quote_icon_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]</p><p>You’re a magician!</p><p>[/et_pb_testimonial][et_pb_testimonial admin_label=\"Testimonial\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#003368\" background_layout=\"dark\" text_orientation=\"center\" quote_icon_color=\"#2499cf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Pacifico||||\" body_font_size=\"26\" custom_css_main_element=\"border-radius:40px;\" custom_padding=\"|70px|20px|70px\"]</p><p>Since working with you, I feel so much lighter – like a huge weight has been taken off my shoulders.</p><p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]</p>','Testimonials-8Feb17','','publish','closed','closed','','testimonials-8feb17','','','2017-02-08 07:16:04','2017-02-08 07:16:04','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/testimonials-8feb17/',0,'et_pb_layout','',0),(504,1,'2017-02-08 07:16:46','2017-02-08 07:16:46','<p>[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]</p><p>Path of the True Self</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Finding wholeness through connecting to one’s essential nature</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]</p><p> </p><p>[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/life-calling-2.jpg\" alt=\"\" width=\"560\" height=\"400\" /></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Do you hear</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]</p><p>Your life calling to you?</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Spiritual Counseling is a holistic approach to life and its challenges that takes into account not just the body and mind of the individual but also the soul.</p><p>It focuses on the relationship of the individual to her/his truest essence and the connection of the individual to the Universal life force, thereby helping the individual to tap into the power of that connection.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Your heart know things</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>That you mind can not explain</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Spiritual Counseling is not a quick fix, although there are times when it appears miraculous. It does not seek short-term solutions in the material world.</p><p>It focuses on wholeness and expansion, healing and personal growth from which material benefits are a natural by-product.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/heart-knows.jpg\" alt=\"\" width=\"550\" height=\"394\" /></p><p>[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]</p><p>She believed she could,<br /> <span style=\"font-size: 24px;\">so she did</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>My ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>The universe has shaken you</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>To awaken you</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>My ideal client will almost certainly contact me during a time of transition and change in her life. This may be because of a divorce or loss of a job. Someone close to her may have died or her house may have gone up in flames.</p><p>She may have just turned fifty and is spiraling into a depression over where she finds herself in life at this landmark time.</p><p>Whatever the specifics of the situation, my client is experiencing pain or fear or uncertainty – perhaps all three. She is looking for someone to help her heal and to guide her in creating a new life. I am that person.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/01/awaken.jpg\" alt=\"\" width=\"550\" height=\"530\" /></p><p>[/et_pb_text][/et_pb_column][/et_pb_section]</p>','What is SC-8Feb17','','publish','closed','closed','','what-is-sc-8feb17','','','2017-02-08 07:16:46','2017-02-08 07:16:46','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/what-is-sc-8feb17/',0,'et_pb_layout','',0),(505,1,'2017-02-08 07:17:09','2017-02-08 07:17:09','<p>[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]</p><p>Path of the True Self</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Finding wholeness through connecting to one’s essential nature</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/fountain.jpg\" alt=\"\" width=\"560\" height=\"480\" /></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"20px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\"]</p><h1>When you learn how to listen</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]</p><p>Everyone is your guru</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>In childhood, I learned to abandon myself in favor of serving my damaged mother’s neurotic fears and desires. Years of playing out learned patterns of toxic thought and behavior caused me to hit bottom, at which point I embarked upon a path of spiritual seeking that eventually led me back to the wisdom of my own heart.</p><p>In spiritual terms, I am the Prodigal Child who left her spiritual home and lost her “inheritance.” With help, I found my way back to the truth of my own soul. My experience has given me a map and tools to help set you on the path back to your True Self and your rightful “inheritance,” which includes clarity, fulfillment, insight and joy.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-radius:300px 150px;\" background_color=\"rgba(0,0,0,0.08)\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_last_edited=\"off|phone\" custom_margin=\"||0px|\" header_text_color=\"#003368\"]</p><h1>I am an <span style=\"color: #b08445;\">E M P A T H</span>, which means:</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\" custom_margin=\"||20px|\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]</p><h1><span style=\"color: #cca56e;\">E</span>mpowerment</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]</p><p>Having discovered the source of my personal power</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>I offer my client liberation from disempowering patterns of thought and behavior and tools for connecting to the unlimited strength within.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]</p><h1><span style=\"color: #cca56e;\">M</span>aternal</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]</p><p>I am the Spiritual Mother</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>a safe, steadfast and nurturing presence who becomes the mirror in which my client can witness the beauty of her unique essence</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]</p><h1><span style=\"color: #cca56e;\">P</span>assion</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]</p><p>As a recovering depressive, I have learned that depression is actually frustrated passion.</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Blockage in the natural flow from Source that is our birthright. My goal is to connect my client to the passion in her/his life for healing, happiness and self-realization.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" background_color=\"rgba(0,51,104,0.8)\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:50px;\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]</p><h1><span style=\"color: #cca56e;\">A</span>uthenticity</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]</p><p>Because I value my own uniqueness,</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>I support and encourage my client in valuing hers/his. And because I am genuine in my relationship with my client, she/he can trust that I will be a reliable source of encouragement and support.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]</p><h1><span style=\"color: #cca56e;\">T</span>ruth</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]</p><p>My intention is to share the Path of the True Self with my client.</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>In our work together, my client will learn to forge a deep connection to the unique Truth of her/his own being, found in direct experience of the Mysterious Unknown, hidden in her/his own heart, in the present moment.</p><p> </p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" header_font_size=\"34px\"]</p><h1><span style=\"color: #cca56e;\">H</span>eart</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"20\" text_line_height=\"1.2em\" custom_margin=\"||10px|\" text_font_size_phone=\"18\" text_font_size_last_edited=\"on|desktop\"]</p><p>The beginning and end of our spiritual journey - one, true sanctuary &amp; home.</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>On the physical level, the heart is the source of all life. In the spiritual realm, it is the doorway to Higher Knowledge, intuition and healing. In our work together, my client will learn to deepen her/his connection to the heart, which is the source of all wisdom, support, abundance and joy.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]</p><p>Be Yourself.<br /> Accept Yourself.<br /> Value Yourself.<br /> Love Yourself.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Negative beliefs about myself, absorbed in childhood, became the root of self-betraying behaviour patterns that threatened to destroy me physically and mentally as an adult.</p><p>Hitting bottom taught me that self-acceptance is not a luxury but a necessity.</p><p>Starting from scratch, I slowly rebuilt my life.  My personal experiences, trials and victories helped me create the template for a thriving life.  I am here to pass along this precious information to my ideal client.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Mentor: Somebody who allows you to</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>See the beauty in yourself</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Dr. Joseph Murphy was my godfather and the spiritual mentor of my childhood. As Jesuit priest, a near-death experience motivated his departure from the Jesuit church and found/join the New Thought Movement Church of Divine Science.</p><p>In our work together over the years, he intuited I would become a writer, counselor, teacher and mystic, and he was right.</p><p><em>Transition sentence.</em> I became a Reiki Master and a Certified, Clinical Hypnotherapist and some benefit applicable to your client. XXX. My decision to become an Interfaith Minister was motivated by/taught me/ XXX</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/dr-joseph-murphy-2.jpg\" alt=\"\" width=\"550\" height=\"530\" /></p><p>[/et_pb_text][/et_pb_column][/et_pb_section]</p>','About-8Feb17','','publish','closed','closed','','about-8feb17','','','2017-02-08 07:17:09','2017-02-08 07:17:09','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/about-8feb17/',0,'et_pb_layout','',0),(506,1,'2017-02-08 07:17:29','2017-02-08 07:17:29','<p>[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]</p><p>Path of the True Self</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Finding wholeness through connecting to one’s essential nature</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]</p><p> </p><p>[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-298\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/relaxed-sessions.jpg\" alt=\"\" width=\"560\" height=\"500\" /></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>Love being you</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|phone\"]</p><p>Embrace your “you”ness</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Sessions are relaxed. They take place over the phone or using FaceTime or Skype. They are approximately an hour and a half in length. The first thirty minutes is unstructured – we fly around, exploring current events and moods in the life of my client and choosing an area to focus on.</p><p>The next thirty to forty-five minutes will be spent exploring the issue we’ve chosen.</p><p>The last fifteen to thirty minutes is for recapping the session and, in some cases, creating some gentle “homework” for the client – exercises designed specifically for the individual to support healing and expansion.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:300px 150px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(0,51,104,0.8)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>The things you are passionate about</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#62cbce\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>are not random, they are your calling</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Increased vitality, greater joy and the awakening of multiple forms of creativity are among the benefits you will experience.</p><p>You will also experience a new perspective on life and living that will result in new strategies for solving problems, more positive ways of viewing life-events and even “aha” moments – moments of crystal clarity where former mysteries suddenly reveal themselves as part of a pattern and thus make perfect sense.</p><p>Most of all, you will begin to realize how perfect your life really is and has always been.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-300\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/autumn-trees-1.jpg\" alt=\"\" width=\"550\" height=\"504\" /></p><p>[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:150px 250px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" background_color=\"rgba(0,51,104,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"40px|40px|40px|40px\" custom_css_main_element=\"border-radius:30px 80px 0px 80px;\" text_font=\"Special Elite|||on|\" text_font_size=\"35\" text_line_height=\"1em\" text_font_size_tablet=\"30\" text_font_size_phone=\"25\" text_font_size_last_edited=\"on|desktop\"]</p><p>Just by being yourself, you put something</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(98,203,206,0.8)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"45px\" padding_bottom_1=\"40px\" padding_left_1=\"45px\" custom_css_main_1=\"border-radius:80px 30px 80px 10px;\" custom_padding=\"||0px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>My ideal client is sensitive, gifted and creative. She/he is a spiritual seeker and someone who is determined to realize her/his potential in terms of success in the external world and, more importantly, in keeping with the agenda of the soul.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"rgba(0,0,0,0.08)\" custom_css_main_element=\"border-radius:150px 300px 80px 50px;\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]</p><h1>The door is wide open,</h1><p>[/et_pb_text][et_pb_text admin_label=\"Sub Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Dosis||||\" text_text_color=\"#003368\" text_font_size=\"30\" text_line_height=\"1.2em\" custom_css_main_element=\"letter-spacing:-1px;\" custom_margin=\"||30px|\" text_font_size_tablet=\"26\" text_font_size_phone=\"22\" text_font_size_last_edited=\"on|tablet\"]</p><p>Don’t go back to sleep. –Rumi</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>I am loving, intuitive and spiritually aligned, all of which add up to my being deeply attuned to my client.</p><p>The benefit for the client is that she feels heard and understood and more than that: because I am an active listener, I am alert for the jewel of information that my client will <em>(always</em>) inadvertently drop in my lap.</p><p>When this happens, I polish that jewel and hold it up to my client’s eyes so that she can see and appreciate the beauty and treasures within her own soul.</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Image\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p><img class=\"alignright size-full wp-image-302\" style=\"border-radius: 50px;\" src=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2017/02/open-door.jpg\" alt=\"\" width=\"550\" height=\"530\" /></p><p>[/et_pb_text][/et_pb_column][/et_pb_section]</p>','Approach-8Feb17','','publish','closed','closed','','approach-8feb17','','','2017-02-08 07:17:29','2017-02-08 07:17:29','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/approach-8feb17/',0,'et_pb_layout','',0),(507,1,'2017-02-08 07:17:49','2017-02-08 07:17:49','<p>[et_pb_section admin_label=\"section\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-content/uploads/2016/12/header-img-3.jpg\" custom_padding=\"5em||5em|\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"rgba(36,153,207,0.6)\" custom_css_main_element=\"border-radius:0px 0px 150px 80px;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||20px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"950px\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Vollkorn|||on|\" text_font_size=\"48\" text_text_color=\"#003368\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"letter-spacing:-1px;\" text_font_size_tablet=\"40\" text_font_size_phone=\"36\" text_font_size_last_edited=\"on|tablet\" text_line_height=\"1em\"]</p><p>Path of the True Self</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Dosis||||\" text_font_size=\"21\" text_text_color=\"#000233\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Finding wholeness through connecting to one’s essential nature</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Button\" button_url=\"http://www.creativedezinesolutions.com/demo/tiela/dev/contact-me/\" url_new_window=\"off\" button_text=\"Connect With Me\" button_alignment=\"left\" background_layout=\"dark\" custom_button=\"on\" button_text_size=\"26\" button_bg_color=\"#000233\" button_border_width=\"0\" button_border_radius=\"16\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_font=\"Dosis|||on|\" button_border_radius_hover=\"16\" button_text_size_tablet=\"22\" button_text_size_phone=\"20\" button_text_size_last_edited=\"on|tablet\"]<br /> [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" gutter_width=\"1\" background_color=\"rgba(255,255,255,0.5)\" custom_css_main_element=\"border-radius:80px 150px 150px 300px;\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [ninja_form id=2] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"rgba(255,255,255,0.1)\" gutter_width=\"1\" padding_top_1=\"40px\" padding_right_1=\"40px\" padding_bottom_1=\"40px\" padding_left_1=\"40px\" custom_css_main_1=\"border-radius:50px;\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_map admin_label=\"Map\" address=\"22 Walton St, Lakeville, CT 06039, USA\" address_lat=\"41.967011710493985\" address_lng=\"-73.43593731698837\" mouse_wheel=\"on\" mobile_dragging=\"on\" use_grayscale_filter=\"off\" grayscale_filter_amount=\"0\" zoom_level=\"15\"] [et_pb_map_pin pin_address=\"22 Walton St, Lakeville, CT 06039, USA\" pin_address_lat=\"41.966976\" pin_address_lng=\"-73.4371309\"][/et_pb_map_pin] [/et_pb_map][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px|||\"]</p><p>22 Walton Street, Lakeville, CT, 06039</p><p><strong>Phone (U.S.):</strong> (860) 435-2510, (860) 318-5457<br /> <strong>Phone (France):</strong> 07.62.46.20.15<br /> <strong>Skype:</strong> (661) 748-0240</p><p><strong>Email:</strong> <a href=\"mailto:tielag@hotmail.com\">tielag@hotmail.com</a></p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]</p>','Contact-8Feb17','','publish','closed','closed','','contact-8feb17','','','2017-02-08 07:17:49','2017-02-08 07:17:49','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/contact-8feb17/',0,'et_pb_layout','',0),(508,1,'2017-02-08 07:18:10','2017-02-08 07:18:10','<p>[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"on\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_comments=\"on\" show_pagination=\"on\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" include_categories=\"1\"] [/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" remove_border=\"off\"] [/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]</p>','Blog-8Feb17','','publish','closed','closed','','blog-8feb17','','','2017-02-08 07:18:10','2017-02-08 07:18:10','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/et_pb_layout/blog-8feb17/',0,'et_pb_layout','',0),(509,1,'2017-02-08 07:24:24','2017-02-08 07:24:24','{\n    \"blogdescription\": {\n        \"value\": \"Path Of The True Self\",\n        \"type\": \"option\",\n        \"user_id\": 1\n    }\n}','','','trash','closed','closed','','53a8cc3d-6453-4ad4-b143-a16c58d3b736','','','2017-02-08 07:24:24','2017-02-08 07:24:24','',0,'http://www.creativedezinesolutions.com/demo/tiela/dev/?p=509',0,'customize_changeset','',0);
/*!40000 ALTER TABLE `wp_upmt_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_upmt_term_relationships`
--

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

--
-- Dumping data for table `wp_upmt_term_relationships`
--

LOCK TABLES `wp_upmt_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_upmt_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_upmt_term_relationships` VALUES (1,1,0),(137,2,0),(496,5,0),(304,3,0),(404,2,0),(496,4,0),(491,2,0),(459,2,0),(496,3,0),(242,3,0),(242,4,0),(242,5,0),(254,3,0),(254,4,0),(254,5,0),(258,3,0),(258,4,0),(258,5,0),(271,3,0),(271,4,0),(271,5,0),(273,3,0),(273,4,0),(273,5,0),(277,3,0),(277,4,0),(277,5,0),(282,2,0),(304,4,0),(304,5,0),(310,3,0),(310,4,0),(310,5,0),(334,2,0),(340,3,0),(340,4,0),(340,5,0),(361,3,0),(361,4,0),(361,5,0),(363,3,0),(363,4,0),(363,5,0),(382,3,0),(382,4,0),(382,5,0),(396,2,0),(395,2,0),(497,3,0),(497,4,0),(497,5,0),(500,3,0),(500,4,0),(500,5,0),(502,3,0),(502,4,0),(502,5,0),(504,3,0),(504,4,0),(504,5,0),(505,3,0),(505,4,0),(505,5,0),(506,3,0),(506,4,0),(506,5,0),(507,3,0),(507,4,0),(507,5,0),(508,3,0),(508,4,0),(508,5,0);
/*!40000 ALTER TABLE `wp_upmt_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_upmt_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_upmt_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_520_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=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_term_taxonomy`
--

LOCK TABLES `wp_upmt_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_upmt_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_upmt_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'nav_menu','',0,8),(3,3,'scope','',0,21),(4,4,'layout_type','',0,21),(5,5,'module_width','',0,21);
/*!40000 ALTER TABLE `wp_upmt_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_upmt_termmeta`
--

DROP TABLE IF EXISTS `wp_upmt_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_termmeta`
--

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

--
-- Table structure for table `wp_upmt_terms`
--

DROP TABLE IF EXISTS `wp_upmt_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_520_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=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_terms`
--

LOCK TABLES `wp_upmt_terms` WRITE;
/*!40000 ALTER TABLE `wp_upmt_terms` DISABLE KEYS */;
INSERT INTO `wp_upmt_terms` VALUES (1,'Blog','blog',0),(2,'top menu','top-menu',0),(3,'not_global','not_global',0),(4,'layout','layout',0),(5,'regular','regular',0);
/*!40000 ALTER TABLE `wp_upmt_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_upmt_usermeta`
--

DROP TABLE IF EXISTS `wp_upmt_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=30 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_usermeta`
--

LOCK TABLES `wp_upmt_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_upmt_usermeta` DISABLE KEYS */;
INSERT INTO `wp_upmt_usermeta` VALUES (1,1,'nickname','admintiela'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'locale',''),(11,1,'wp_upmt_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(12,1,'wp_upmt_user_level','10'),(13,1,'dismissed_wp_pointers','omapi_please_connect_notice'),(14,1,'show_welcome_panel','1'),(16,1,'wp_upmt_user-settings','imgsize=full&libraryContent=browse&editor=tinymce&align=right&urlbutton=none&mfold=o'),(17,1,'wp_upmt_user-settings-time','1486463326'),(18,1,'wp_upmt_dashboard_quick_press_last_post_id','339'),(19,1,'wp_upmt_media_library_mode','list'),(20,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(21,1,'metaboxhidden_nav-menus','a:5:{i:0;s:21:\"add-post-type-project\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:20:\"add-project_category\";i:4;s:15:\"add-project_tag\";}'),(25,1,'session_tokens','a:2:{s:64:\"8ec93b8e65761bde180420d2b96284d569cce92f9e4065f5ae1f13ed8029b215\";a:4:{s:10:\"expiration\";i:1486581735;s:2:\"ip\";s:12:\"108.8.225.40\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0.2 Safari/602.3.12\";s:5:\"login\";i:1486408935;}s:64:\"be8baa703e166698b58ecec0ad75213f81c3c23bf9f43e36111a9bd94856d593\";a:4:{s:10:\"expiration\";i:1486637199;s:2:\"ip\";s:15:\"122.177.137.108\";s:2:\"ua\";s:108:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36\";s:5:\"login\";i:1486464399;}}'),(26,1,'nav_menu_recently_edited','2'),(29,1,'wp_upmt_yoast_notifications','a:2:{i:0;a:2:{s:7:\"message\";s:161:\"Since you are new to Yoast SEO you can configure the <a href=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-admin/?page=wpseo_configurator\">plugin</a>\";s:7:\"options\";a:8:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:31:\"wpseo-dismiss-onboarding-notice\";s:5:\"nonce\";N;s:8:\"priority\";d:0.80000000000000004;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:14:\"manage_options\";s:16:\"capability_check\";s:3:\"all\";}}i:1;a:2:{s:7:\"message\";s:196:\"Don\'t miss your crawl errors: <a href=\"http://www.creativedezinesolutions.com/demo/tiela/dev/wp-admin/admin.php?page=wpseo_search_console&tab=settings\">connect with Google Search Console here</a>.\";s:7:\"options\";a:8:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:17:\"wpseo-dismiss-gsc\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:14:\"manage_options\";s:16:\"capability_check\";s:3:\"all\";}}}');
/*!40000 ALTER TABLE `wp_upmt_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_upmt_users`
--

DROP TABLE IF EXISTS `wp_upmt_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_upmt_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8mb4_unicode_520_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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_upmt_users`
--

LOCK TABLES `wp_upmt_users` WRITE;
/*!40000 ALTER TABLE `wp_upmt_users` DISABLE KEYS */;
INSERT INTO `wp_upmt_users` VALUES (1,'admintiela','$P$BOUkB0ykslVsGD5A.g9qTh/EtxMto2/','admintiela','tielag@hotmail.com','','2016-12-14 09:04:20','',0,'admintiela');
/*!40000 ALTER TABLE `wp_upmt_users` 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 2017-02-08  0:26:38
